Skip to content

Commit 41af0f6

Browse files
authored
Merge branch 'main' into v1.7252.0
2 parents 99db8ee + 039c6a7 commit 41af0f6

File tree

5 files changed

+22
-0
lines changed

5 files changed

+22
-0
lines changed

packages_generated/audit_trail/src/v1alpha1/types.gen.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ export type ResourceType =
6060
| 'iam_rule'
6161
| 'iam_saml'
6262
| 'iam_saml_certificate'
63+
| 'iam_scim'
64+
| 'iam_scim_token'
6365
| 'secret_manager_secret'
6466
| 'secret_manager_version'
6567
| 'key_manager_key'

packages_generated/ipam/src/v1/types.gen.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ export type ResourceType =
4141
| 'kafka_cluster'
4242
| 'bgp_endpoint'
4343
| 'scbl_sedb_cluster'
44+
| 'dtwh_deployment'
4445

4546
export interface Resource {
4647
/**

packages_generated/product_catalog/src/v2alpha1/api.gen.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ export class PublicCatalogAPI extends ParentAPI {
3131
request.pageSize ?? this.client.settings.defaultPageSize,
3232
],
3333
['product_types', request.productTypes],
34+
['status', request.status],
3435
...Object.entries(
3536
resolveOneOf<boolean | ScwRegion | ScwZone | string>([
3637
{ param: 'global', value: request.global },

packages_generated/product_catalog/src/v2alpha1/index.gen.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ export { PublicCatalogAPI } from './api.gen.js'
44
export * from './marshalling.gen.js'
55
export type {
66
ListPublicCatalogProductsRequestProductType,
7+
ListPublicCatalogProductsRequestStatus,
78
ListPublicCatalogProductsResponse,
89
PublicCatalogApiListPublicCatalogProductsRequest,
910
PublicCatalogProduct,

packages_generated/product_catalog/src/v2alpha1/types.gen.ts

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,17 @@ export type ListPublicCatalogProductsRequestProductType =
1515
| 'block_storage'
1616
| 'object_storage'
1717

18+
export type ListPublicCatalogProductsRequestStatus =
19+
| 'unknown_status'
20+
| 'public_beta'
21+
| 'preview'
22+
| 'general_availability'
23+
| 'end_of_deployment'
24+
| 'end_of_support'
25+
| 'end_of_sale'
26+
| 'end_of_life'
27+
| 'retired'
28+
1829
export type PublicCatalogProductPropertiesHardwareCPUArch =
1930
| 'unknown_arch'
2031
| 'x64'
@@ -30,6 +41,8 @@ export type PublicCatalogProductStatus =
3041
| 'end_of_deployment'
3142
| 'end_of_support'
3243
| 'end_of_sale'
44+
| 'end_of_life'
45+
| 'retired'
3346

3447
export type PublicCatalogProductUnitOfMeasureCountableUnit =
3548
| 'unknown_countable_unit'
@@ -458,4 +471,8 @@ export type PublicCatalogApiListPublicCatalogProductsRequest = {
458471
* One-of ('locality'): at most one of 'global', 'region', 'zone', 'datacenter' could be set.
459472
*/
460473
datacenter?: string
474+
/**
475+
* The lists of filtered product status, if empty only products with status public_beta, general_availability, preview, end_of_deployment, end_of_support, end_of_sale, end_of_life or retired will be returned.
476+
*/
477+
status?: ListPublicCatalogProductsRequestStatus[]
461478
}

0 commit comments

Comments
 (0)