From ce9407f4bcf0a6e1788bb6ed8b3df82caf9e7dc9 Mon Sep 17 00:00:00 2001 From: jinyoungmoonDEV Date: Fri, 13 Jun 2025 10:56:30 +0900 Subject: [PATCH] fix: add CostReport Status EXPIRED Signed-off-by: jinyoungmoonDEV --- .../api/cost_analysis/v1/cost_report.proto | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/proto/spaceone/api/cost_analysis/v1/cost_report.proto b/proto/spaceone/api/cost_analysis/v1/cost_report.proto index 7ba937517..535ae59d8 100644 --- a/proto/spaceone/api/cost_analysis/v1/cost_report.proto +++ b/proto/spaceone/api/cost_analysis/v1/cost_report.proto @@ -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. @@ -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 @@ -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;