Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions proto/spaceone/api/cost_analysis/v1/cost_report.proto
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ message CostReportQuery {
enum Status {
NONE = 0;
IN_PROGRESS = 1;
SUCCESS = 2;
ADJUSTING = 2;
DONE = 3;
}
// +optional
Expand All @@ -87,7 +87,7 @@ message CostReportInfo {
enum Status {
NONE = 0;
IN_PROGRESS = 1;
SUCCESS = 2;
ADJUSTING = 2;
DONE = 3;
}
string cost_report_id = 1;
Expand Down
16 changes: 8 additions & 8 deletions proto/spaceone/api/cost_analysis/v1/report_adjustment.proto
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ message CreateReportAdjustmentRequest {
int32 order = 7;
// +optional
google.protobuf.Struct adjustment_filter = 8;
string report_adjustment_policy_id = 10;
string report_adjustment_policy_id = 21;
}

message UpdateReportAdjustmentRequest {
Expand Down Expand Up @@ -109,9 +109,9 @@ message ReportAdjustmentQuery {
// +optional
string name = 2;
// +optional
string workspace_id = 4;
string workspace_id = 21;
// +optional
string project_id = 5;
string project_id = 22;
}

message ReportAdjustmentInfo {
Expand All @@ -125,12 +125,12 @@ message ReportAdjustmentInfo {
int32 order = 8;
google.protobuf.Struct adjustment_filter = 9;

string created_at = 11;
string updated_at = 12;

string cost_report_config_id = 19;
string report_adjustment_policy_id = 20;
string domain_id = 21;
string cost_report_config_id = 22;
string report_adjustment_policy_id = 23;

string created_at = 31;
string updated_at = 32;
}

message ReportAdjustmentsInfo {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,14 +118,13 @@ message ReportAdjustmentPolicyInfo {
Scope scope = 5;
int32 order = 6;
google.protobuf.Struct tags = 7;
string cost_report_config_id = 8;
AdjustmentPolicyFilter policy_filter = 8;
string domain_id = 21;
string cost_report_config_id = 22;

string created_at = 11;
string updated_at = 12;
string created_at = 31;
string updated_at = 32;

AdjustmentPolicyFilter policy_filter = 14;

string domain_id = 23;
}

message ReportAdjustmentPolicesInfo {
Expand Down
Loading