From 558189eabba2f7bc26c8d0d4330a315e4a731e12 Mon Sep 17 00:00:00 2001 From: ImMin5 Date: Tue, 27 May 2025 01:54:57 +0900 Subject: [PATCH] feat: reorder fields in cost_report.proto for improved clarity and consistency Signed-off-by: ImMin5 --- proto/spaceone/api/cost_analysis/v1/cost_report.proto | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/proto/spaceone/api/cost_analysis/v1/cost_report.proto b/proto/spaceone/api/cost_analysis/v1/cost_report.proto index 7eb6477d..7ba93751 100644 --- a/proto/spaceone/api/cost_analysis/v1/cost_report.proto +++ b/proto/spaceone/api/cost_analysis/v1/cost_report.proto @@ -106,11 +106,11 @@ message CostReportInfo { string name = 10; string bank_name = 11; bool is_adjusted = 12; - string cost_report_config_id = 21; - string service_account_id = 22; + string domain_id = 21; + string workspace_id = 22; string project_id = 23; - string workspace_id = 24; - string domain_id = 25; + string service_account_id = 24; + string cost_report_config_id = 25; string created_at = 31; string updated_at = 32; }