From b5663e52ad4310968ce506ab144e05345f3d1bf6 Mon Sep 17 00:00:00 2001 From: jinyoungmoonDEV Date: Mon, 8 Sep 2025 15:11:24 +0900 Subject: [PATCH 1/3] =?UTF-8?q?add:=20analyze=20api=EC=97=90=20lookup=20&?= =?UTF-8?q?=20addFields=20Parameter=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: jinyoungmoonDEV --- proto/spaceone/api/core/v2/query.proto | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/proto/spaceone/api/core/v2/query.proto b/proto/spaceone/api/core/v2/query.proto index eb77cced6..aa4295b0d 100644 --- a/proto/spaceone/api/core/v2/query.proto +++ b/proto/spaceone/api/core/v2/query.proto @@ -186,6 +186,8 @@ message TimeSeriesAnalyzeQuery { google.protobuf.Struct select = 11; string keyword = 12; Unwind unwind = 13; + google.protobuf.ListValue lookup = 14; + google.protobuf.Struct add_fields = 15; } message AnalyzeQuery { @@ -199,6 +201,8 @@ message AnalyzeQuery { google.protobuf.Struct select = 8; string keyword = 9; Unwind unwind = 10; + google.protobuf.ListValue lookup = 11; + google.protobuf.Struct add_fields = 12; } message ExportSearchQuery { From 3f027d6997975b169f7bc422f04b851367d3c53b Mon Sep 17 00:00:00 2001 From: jinyoungmoonDEV Date: Mon, 8 Sep 2025 15:12:19 +0900 Subject: [PATCH 2/3] =?UTF-8?q?add:=20Cost=20Report=20=EC=83=9D=EC=84=B1?= =?UTF-8?q?=EC=8B=9C=EC=97=90=20=ED=8A=B9=EC=A0=95=20workspace=5Fid=20?= =?UTF-8?q?=ED=95=84=ED=84=B0=EB=A7=81=EC=9D=84=20=EC=9C=84=ED=95=9C=20?= =?UTF-8?q?=ED=95=84=EB=93=9C=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: jinyoungmoonDEV --- proto/spaceone/api/cost_analysis/v1/cost_report_config.proto | 2 ++ 1 file changed, 2 insertions(+) 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 564dcf24b..9ec4cc8f6 100644 --- a/proto/spaceone/api/cost_analysis/v1/cost_report_config.proto +++ b/proto/spaceone/api/cost_analysis/v1/cost_report_config.proto @@ -97,6 +97,7 @@ message AdjustmentOptions { message GenerateReportCostReportConfigRequest { string cost_report_config_id = 1; string report_month = 2; + string workspace_id = 3; } message CreateCostReportConfigRequest { @@ -150,6 +151,7 @@ message CostReportConfigRequest { // The ID of cost report in the Protocol. string cost_report_config_id = 1; string send_report = 2; + string workspace_id = 3; } message CostReportConfigQuery { From 629d775139dbc5f8078a51565c4c0c6f527f7461 Mon Sep 17 00:00:00 2001 From: jinyoungmoonDEV Date: Tue, 9 Sep 2025 11:33:08 +0900 Subject: [PATCH 3/3] =?UTF-8?q?add:=20List=20Search=20Query=EC=8B=9C?= =?UTF-8?q?=EC=97=90=20lookup=20&=20addFields=20Parameter=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: jinyoungmoonDEV --- proto/spaceone/api/core/v2/query.proto | 2 ++ 1 file changed, 2 insertions(+) diff --git a/proto/spaceone/api/core/v2/query.proto b/proto/spaceone/api/core/v2/query.proto index aa4295b0d..8cfad8378 100644 --- a/proto/spaceone/api/core/v2/query.proto +++ b/proto/spaceone/api/core/v2/query.proto @@ -48,6 +48,8 @@ message Query { repeated string only = 7; string keyword = 8; Unwind unwind = 9; + google.protobuf.ListValue lookup = 10; + google.protobuf.Struct add_fields = 11; } message AggregateGroupKey {