Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 7 additions & 12 deletions proto/spaceone/api/cost_analysis/v1/cost_report.proto
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,13 @@ service CostReport {
}
}

enum Status {
NONE = 0;
IN_PROGRESS = 1;
ADJUSTING = 2;
DONE = 3;
EXPIRED = 4;
}

message CostReportRequest {
// The ID of cost report in the Protocol.
Expand All @@ -60,12 +67,6 @@ message GetUrlCostReportRequest {
}

message CostReportQuery {
enum Status {
NONE = 0;
IN_PROGRESS = 1;
ADJUSTING = 2;
DONE = 3;
}
// +optional
spaceone.api.core.v2.Query query = 1;
// +optional
Expand All @@ -84,12 +85,6 @@ message CostReportQuery {


message CostReportInfo {
enum Status {
NONE = 0;
IN_PROGRESS = 1;
ADJUSTING = 2;
DONE = 3;
}
string cost_report_id = 1;
google.protobuf.Struct cost = 2;
Status status = 3;
Expand Down
Loading