File tree Expand file tree Collapse file tree 3 files changed +8
-0
lines changed
packages_generated/product_catalog/src/v2alpha1 Expand file tree Collapse file tree 3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ export type {
2020 PublicCatalogProductPropertiesDedibox ,
2121 PublicCatalogProductPropertiesElasticMetal ,
2222 PublicCatalogProductPropertiesGenerativeApis ,
23+ PublicCatalogProductPropertiesGenerativeApisConsumptionMode ,
2324 PublicCatalogProductPropertiesHardware ,
2425 PublicCatalogProductPropertiesHardwareCPU ,
2526 PublicCatalogProductPropertiesHardwareCPUArch ,
Original file line number Diff line number Diff line change @@ -187,6 +187,7 @@ const unmarshalPublicCatalogProductPropertiesGenerativeApis = (data: unknown): P
187187 }
188188
189189 return {
190+ consumptionMode : data . consumption_mode ,
190191 reasoning : data . reasoning ,
191192 supportedApis : data . supported_apis ,
192193 } as PublicCatalogProductPropertiesGenerativeApis
Original file line number Diff line number Diff line change @@ -32,6 +32,11 @@ export type PublicCatalogProductProductBadge =
3232 | 'best_value'
3333 | 'popular'
3434
35+ export type PublicCatalogProductPropertiesGenerativeApisConsumptionMode =
36+ | 'unknown_consumption_mode'
37+ | 'realtime'
38+ | 'batch'
39+
3540export type PublicCatalogProductPropertiesHardwareCPUArch =
3641 | 'unknown_arch'
3742 | 'x64'
@@ -261,6 +266,7 @@ export interface PublicCatalogProductPropertiesElasticMetal {
261266export interface PublicCatalogProductPropertiesGenerativeApis {
262267 reasoning : boolean
263268 supportedApis : string [ ]
269+ consumptionMode : PublicCatalogProductPropertiesGenerativeApisConsumptionMode
264270}
265271
266272
You can’t perform that action at this time.
0 commit comments