Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change Cost Analysis Fields #122

Merged
merged 4 commits into from
Sep 3, 2023
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
7 changes: 1 addition & 6 deletions proto/spaceone/api/cost_analysis/v1/budget.proto
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,6 @@ message CreateBudgetRequest {
NONE = 0;
TOTAL = 1;
MONTHLY = 2;
YEARLY = 3;
}

// +optional
Expand Down Expand Up @@ -178,9 +177,7 @@ message UpdateBudgetRequest {
// +optional
repeated PlannedLimit planned_limits = 4;
// +optional
ProviderFilter provider_filter = 5;
// +optional
google.protobuf.Struct tags = 6;
google.protobuf.Struct tags = 5;
string domain_id = 11;
}

Expand Down Expand Up @@ -228,7 +225,6 @@ message BudgetQuery {
NONE = 0;
TOTAL = 1;
MONTHLY = 2;
YEARLY = 3;
}

// +optional
Expand Down Expand Up @@ -318,7 +314,6 @@ message BudgetInfo {
NONE = 0;
TOTAL = 1;
MONTHLY = 2;
YEARLY = 3;
}

string budget_id = 1;
Expand Down
5 changes: 3 additions & 2 deletions proto/spaceone/api/cost_analysis/v1/cost.proto
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,9 @@ message CostQuery {
// +optional
string project_id = 12;
// +optional
string data_source_id = 13;
string domain_id = 14;
string project_group_id = 13;
string data_source_id = 14;
string domain_id = 15;
// +optional
string billed_year = 21;
// +optional
Expand Down