We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b67d4d9 commit 089e1c8Copy full SHA for 089e1c8
packages/clients/src/api/k8s/v1/marshalling.gen.ts
@@ -174,6 +174,7 @@ const unmarshalClusterType = (data: unknown) => {
174
175
return {
176
availability: data.availability,
177
+ commitmentDelay: data.commitment_delay,
178
maxNodes: data.max_nodes,
179
name: data.name,
180
} as ClusterType
packages/clients/src/api/k8s/v1/types.gen.ts
@@ -266,6 +266,8 @@ export interface ClusterType {
266
availability: ClusterTypeAvailability
267
/** Maximum number of nodes supported by the offer. */
268
maxNodes: number
269
+ /** Time period during which you can no longer switch to a lower offer. */
270
+ commitmentDelay?: string
271
}
272
273
/** Create cluster request. auto upgrade. */
0 commit comments