Skip to content

Commit 089e1c8

Browse files
authored
feat(k8s): add commitment to offer list (#746)
1 parent b67d4d9 commit 089e1c8

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

packages/clients/src/api/k8s/v1/marshalling.gen.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,7 @@ const unmarshalClusterType = (data: unknown) => {
174174

175175
return {
176176
availability: data.availability,
177+
commitmentDelay: data.commitment_delay,
177178
maxNodes: data.max_nodes,
178179
name: data.name,
179180
} as ClusterType

packages/clients/src/api/k8s/v1/types.gen.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,8 @@ export interface ClusterType {
266266
availability: ClusterTypeAvailability
267267
/** Maximum number of nodes supported by the offer. */
268268
maxNodes: number
269+
/** Time period during which you can no longer switch to a lower offer. */
270+
commitmentDelay?: string
269271
}
270272

271273
/** Create cluster request. auto upgrade. */

0 commit comments

Comments
 (0)