From 30e830fa46c15afabab4a22255454a407f621310 Mon Sep 17 00:00:00 2001 From: tituscarl Date: Wed, 25 Mar 2026 15:54:32 +0800 Subject: [PATCH 1/3] billing: add billingGroupId field in ListInvoiceRequest --- billing/v1/billing.proto | 3 +++ openapiv2/apidocs.swagger.json | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/billing/v1/billing.proto b/billing/v1/billing.proto index f40d05b8..d9d0809b 100644 --- a/billing/v1/billing.proto +++ b/billing/v1/billing.proto @@ -2098,6 +2098,9 @@ message ListInvoiceRequest { // OPTIONAL: vendor (aws, azure, gcp) string vendor = 2; + + // Optional. If set, return only invoices for this billing group's child. + string billingGroupId = 3; } // Response message for the ListInvoice rpc. diff --git a/openapiv2/apidocs.swagger.json b/openapiv2/apidocs.swagger.json index 344ca27c..9a6e0f7f 100644 --- a/openapiv2/apidocs.swagger.json +++ b/openapiv2/apidocs.swagger.json @@ -44019,6 +44019,10 @@ "vendor": { "type": "string", "title": "OPTIONAL: vendor (aws, azure, gcp)" + }, + "billingGroupId": { + "type": "string", + "description": "Optional. If set, return only invoices for this billing group's child." } }, "description": "Request message for the ListInvoice rpc." From 67ae076d14fc4f964c93c1d43ff378b1a9cdced4 Mon Sep 17 00:00:00 2001 From: tituscarl Date: Wed, 25 Mar 2026 15:55:05 +0800 Subject: [PATCH 2/3] Revert "billing: add billingGroupId field in ListInvoiceRequest" This reverts commit 4319dbabeed18f69c6329570a6d4f3157654c753. --- billing/v1/billing.proto | 3 --- openapiv2/apidocs.swagger.json | 4 ---- 2 files changed, 7 deletions(-) diff --git a/billing/v1/billing.proto b/billing/v1/billing.proto index d9d0809b..f40d05b8 100644 --- a/billing/v1/billing.proto +++ b/billing/v1/billing.proto @@ -2098,9 +2098,6 @@ message ListInvoiceRequest { // OPTIONAL: vendor (aws, azure, gcp) string vendor = 2; - - // Optional. If set, return only invoices for this billing group's child. - string billingGroupId = 3; } // Response message for the ListInvoice rpc. diff --git a/openapiv2/apidocs.swagger.json b/openapiv2/apidocs.swagger.json index 9a6e0f7f..344ca27c 100644 --- a/openapiv2/apidocs.swagger.json +++ b/openapiv2/apidocs.swagger.json @@ -44019,10 +44019,6 @@ "vendor": { "type": "string", "title": "OPTIONAL: vendor (aws, azure, gcp)" - }, - "billingGroupId": { - "type": "string", - "description": "Optional. If set, return only invoices for this billing group's child." } }, "description": "Request message for the ListInvoice rpc." From 951d38d9ac2534f6d45948067fecd58799c3d337 Mon Sep 17 00:00:00 2001 From: tituscarl Date: Wed, 25 Mar 2026 15:57:25 +0800 Subject: [PATCH 3/3] billing: add billingGroupId field in ListInvoiceRequest --- billing/v1/billing.proto | 3 +++ openapiv2/apidocs.swagger.json | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/billing/v1/billing.proto b/billing/v1/billing.proto index f40d05b8..c18875bf 100644 --- a/billing/v1/billing.proto +++ b/billing/v1/billing.proto @@ -2098,6 +2098,9 @@ message ListInvoiceRequest { // OPTIONAL: vendor (aws, azure, gcp) string vendor = 2; + + // Optional. If set, return only child invoices for this billing group. + string billingInternalId = 3; } // Response message for the ListInvoice rpc. diff --git a/openapiv2/apidocs.swagger.json b/openapiv2/apidocs.swagger.json index 344ca27c..6d7c2634 100644 --- a/openapiv2/apidocs.swagger.json +++ b/openapiv2/apidocs.swagger.json @@ -44019,6 +44019,10 @@ "vendor": { "type": "string", "title": "OPTIONAL: vendor (aws, azure, gcp)" + }, + "billingInternalId": { + "type": "string", + "description": "Optional. If set, return only child invoices for this billing group." } }, "description": "Request message for the ListInvoice rpc."