Skip to content

Commit dec64bf

Browse files
Merge pull request #608 from jinyoungmoonDEV/master
add: Query 및 Analyze Query에 lookup & add_fields 파라미터 추가 및 Cost Report 생성시 workspace 지정 파라미터 추가
2 parents 2446b92 + 629d775 commit dec64bf

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

proto/spaceone/api/core/v2/query.proto

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ message Query {
4848
repeated string only = 7;
4949
string keyword = 8;
5050
Unwind unwind = 9;
51+
google.protobuf.ListValue lookup = 10;
52+
google.protobuf.Struct add_fields = 11;
5153
}
5254

5355
message AggregateGroupKey {
@@ -186,6 +188,8 @@ message TimeSeriesAnalyzeQuery {
186188
google.protobuf.Struct select = 11;
187189
string keyword = 12;
188190
Unwind unwind = 13;
191+
google.protobuf.ListValue lookup = 14;
192+
google.protobuf.Struct add_fields = 15;
189193
}
190194

191195
message AnalyzeQuery {
@@ -199,6 +203,8 @@ message AnalyzeQuery {
199203
google.protobuf.Struct select = 8;
200204
string keyword = 9;
201205
Unwind unwind = 10;
206+
google.protobuf.ListValue lookup = 11;
207+
google.protobuf.Struct add_fields = 12;
202208
}
203209

204210
message ExportSearchQuery {

proto/spaceone/api/cost_analysis/v1/cost_report_config.proto

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ message AdjustmentOptions {
9797
message GenerateReportCostReportConfigRequest {
9898
string cost_report_config_id = 1;
9999
string report_month = 2;
100+
string workspace_id = 3;
100101
}
101102

102103
message CreateCostReportConfigRequest {
@@ -150,6 +151,7 @@ message CostReportConfigRequest {
150151
// The ID of cost report in the Protocol.
151152
string cost_report_config_id = 1;
152153
string send_report = 2;
154+
string workspace_id = 3;
153155
}
154156

155157
message CostReportConfigQuery {

0 commit comments

Comments
 (0)