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
9 changes: 4 additions & 5 deletions proto/spaceone/api/cost_analysis/v1/cost_report_config.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down Expand Up @@ -84,7 +83,7 @@ service CostReportConfig {
}

message AdjustmentOptions {
google.protobuf.BoolValue enabled = 1;
bool enabled = 1;
int32 period = 2;
}

Expand All @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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;
Expand Down
Loading