Skip to content

Commit e281b9d

Browse files
authored
Merge branch 'main' into fix/add-kafka-readme
2 parents 4780b0d + 039c6a7 commit e281b9d

File tree

7 files changed

+26
-6
lines changed

7 files changed

+26
-6
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1340,7 +1340,7 @@ export interface Log {
13401340
*/
13411341
group?: RpnV2Group
13421342
/**
1343-
* RPN V2 member (if appliable).
1343+
* RPN V2 member (if applicable).
13441344
*/
13451345
member?: RpnV2Member
13461346
/**
@@ -1619,11 +1619,11 @@ export interface BMCAccess {
16191619
*/
16201620
url: string
16211621
/**
1622-
* The login to use for the BMC (Baseboard Management Controller) access authentification.
1622+
* The login to use for the BMC (Baseboard Management Controller) access authentication.
16231623
*/
16241624
login: string
16251625
/**
1626-
* The password to use for the BMC (Baseboard Management Controller) access authentification.
1626+
* The password to use for the BMC (Baseboard Management Controller) access authentication.
16271627
*/
16281628
password: string
16291629
/**
@@ -2718,7 +2718,7 @@ export interface Rescue {
27182718
*/
27192719
password: string
27202720
/**
2721-
* Protocol of the resuce.
2721+
* Protocol of the rescue.
27222722
*/
27232723
protocol: RescueProtocol
27242724
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ export interface Hub {
291291
*/
292292
organizationId: string
293293
/**
294-
* When an unknown device connects to your hub using a valid certificate chain, it will be automatically provisioned inside your Hub. The Hub uses the common name of the device certifcate to find out if a device with the same name already exists. This setting can only be enabled on a hub with a custom certificate authority.
294+
* When an unknown device connects to your hub using a valid certificate chain, it will be automatically provisioned inside your Hub. The Hub uses the common name of the device certificate to find out if a device with the same name already exists. This setting can only be enabled on a hub with a custom certificate authority.
295295
*/
296296
enableDeviceAutoProvisioning: boolean
297297
/**

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/kafka/src/v1alpha1/types.gen.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ export interface NodeTypeVolumeType {
156156
*/
157157
description: string
158158
/**
159-
* Mimimum size required for the volume.
159+
* Minimum size required for the volume.
160160
*/
161161
minSizeBytes: number
162162
/**

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)