Skip to content

Commit ba44733

Browse files
authored
Merge branch 'main' into feat/add-test-release
2 parents 610b249 + 47f4e16 commit ba44733

File tree

6 files changed

+17
-1
lines changed

6 files changed

+17
-1
lines changed

packages_generated/baremetal/src/v1/marshalling.gen.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -382,6 +382,7 @@ export const unmarshalOS = (data: unknown): OS => {
382382
ssh: data.ssh ? unmarshalOSOSField(data.ssh) : undefined,
383383
user: data.user ? unmarshalOSOSField(data.user) : undefined,
384384
version: data.version,
385+
zone: data.zone,
385386
} as OS
386387
}
387388

@@ -543,6 +544,7 @@ export const unmarshalOffer = (data: unknown): Offer => {
543544
stock: data.stock,
544545
subscriptionPeriod: data.subscription_period,
545546
tags: data.tags,
547+
zone: data.zone,
546548
} as Offer
547549
}
548550

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -663,6 +663,10 @@ export interface OS {
663663
* Defines if custom partitioning is supported by this OS.
664664
*/
665665
customPartitioningSupported: boolean
666+
/**
667+
* Zone in which is the OS is available.
668+
*/
669+
zone: ScwZone
666670
}
667671

668672
export interface Offer {
@@ -766,6 +770,10 @@ export interface Offer {
766770
* Exist only for hourly offers, to migrate to the monthly offer.
767771
*/
768772
monthlyOfferId?: string
773+
/**
774+
* Zone in which is the offer is available.
775+
*/
776+
zone: ScwZone
769777
}
770778

771779
export interface Option {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ export type SamlStatus =
114114

115115
export type UserStatus = 'unknown_status' | 'invitation_pending' | 'activated'
116116

117-
export type UserType = 'unknown_type' | 'guest' | 'owner' | 'member'
117+
export type UserType = 'unknown_type' | 'owner' | 'member'
118118

119119
export interface ConnectionConnectedOrganization {
120120
id: string

packages_generated/k8s/src/v1/marshalling.gen.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@ export const unmarshalVersion = (data: unknown): Version => {
127127
label: data.label,
128128
name: data.name,
129129
region: data.region,
130+
releasedAt: unmarshalDate(data.released_at),
130131
} as Version
131132
}
132133

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -632,6 +632,10 @@ export interface Version {
632632
* Date from which any remaining clusters on this version will begin to be forcibly upgraded to the next minor version.
633633
*/
634634
endOfLifeAt?: Date
635+
/**
636+
* Date at which this version was made available by Kapsule product.
637+
*/
638+
releasedAt?: Date
635639
}
636640

637641
export interface Cluster {

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ export type PublicCatalogProductUnitOfMeasureCountableUnit =
6161
| 'second'
6262
| 'sample_day'
6363
| 'gigabyte_day'
64+
| 'mvcpu'
6465

6566
export interface PublicCatalogProductPropertiesHardwareCPUPhysical {
6667
/**

0 commit comments

Comments
 (0)