Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/clients/src/api/k8s/v1/marshalling.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ const unmarshalClusterType = (data: unknown) => {

return {
availability: data.availability,
commitmentDelay: data.commitment_delay,
maxNodes: data.max_nodes,
name: data.name,
} as ClusterType
Expand Down
2 changes: 2 additions & 0 deletions packages/clients/src/api/k8s/v1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,8 @@ export interface ClusterType {
availability: ClusterTypeAvailability
/** Maximum number of nodes supported by the offer. */
maxNodes: number
/** Time period during which you can no longer switch to a lower offer. */
commitmentDelay?: string
}

/** Create cluster request. auto upgrade. */
Expand Down