From cb5ba706953cb002a75af88f221fb6face5bb0c1 Mon Sep 17 00:00:00 2001 From: jinyoungmoonDEV Date: Mon, 2 Jun 2025 17:35:49 +0900 Subject: [PATCH] fix: fix CostReportConfig BoolValue to bool type Signed-off-by: jinyoungmoonDEV --- .../api/cost_analysis/v1/cost_report_config.proto | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/proto/spaceone/api/cost_analysis/v1/cost_report_config.proto b/proto/spaceone/api/cost_analysis/v1/cost_report_config.proto index 0ae117d6..2b83b005 100644 --- a/proto/spaceone/api/cost_analysis/v1/cost_report_config.proto +++ b/proto/spaceone/api/cost_analysis/v1/cost_report_config.proto @@ -5,7 +5,6 @@ package spaceone.api.cost_analysis.v1; option go_package = "github.com/cloudforet-io/api/dist/go/spaceone/api/cost_analysis/v1"; import "google/api/annotations.proto"; -import "google/protobuf/wrappers.proto"; import "google/protobuf/empty.proto"; import "google/protobuf/struct.proto"; import "spaceone/api/core/v2/query.proto"; @@ -84,7 +83,7 @@ service CostReportConfig { } message AdjustmentOptions { - google.protobuf.BoolValue enabled = 1; + bool enabled = 1; int32 period = 2; } @@ -99,7 +98,7 @@ message CreateCostReportConfigRequest { // +optional int32 issue_day = 2; // +optional - google.protobuf.BoolValue is_last_day = 3; + bool is_last_day = 3; // +optional AdjustmentOptions adjustment_options = 4; // +optional @@ -118,7 +117,7 @@ message UpdateCostReportConfigRequest { // +optional int32 issue_day = 2; // +optional - google.protobuf.BoolValue is_last_day = 3; + bool is_last_day = 3; // +optional AdjustmentOptions adjustment_options = 4; // +optional @@ -184,7 +183,7 @@ message CostReportConfigInfo { State state = 2; Scope scope = 3; int32 issue_day = 4; - google.protobuf.BoolValue is_last_day = 5; + bool is_last_day = 5; AdjustmentOptions adjustment_options = 6; string currency = 8; google.protobuf.Struct recipients = 9;