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
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 @@ -78,7 +78,7 @@ message CostReportQuery {
// +optional
string issue_date = 5;
// +optional
string workspace_name = 6;
string name = 6;
Copy link

Copilot AI May 23, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Renaming this field is a breaking change for existing clients. Consider marking the old workspace_name tag as deprecated = true and providing migration guidance or reserving the old field number.

Suggested change
string name = 6;
// Deprecated: Use an alternative field if applicable.
string name = 6 [deprecated = true];

Copilot uses AI. Check for mistakes.

}

Expand All @@ -103,7 +103,7 @@ message CostReportInfo {
string report_year = 8;
// YYYY-mm 2023-12
string report_month = 9;
string workspace_name = 10;
string name = 10;
string bank_name = 11;
bool is_adjusted = 12;
string cost_report_config_id = 21;
Expand Down
Loading