File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed
packages/clients/src/api/k8s/v1 Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -141,6 +141,7 @@ export const unmarshalCluster = (data: unknown) => {
141141 : undefined ,
142142 clusterUrl : data . cluster_url ,
143143 cni : data . cni ,
144+ commitmentEndsAt : unmarshalDate ( data . commitment_ends_at ) ,
144145 createdAt : unmarshalDate ( data . created_at ) ,
145146 dashboardEnabled : data . dashboard_enabled ,
146147 description : data . description ,
Original file line number Diff line number Diff line change @@ -167,6 +167,8 @@ export interface Cluster {
167167 apiserverCertSans : string [ ]
168168 /** Private network ID for internal cluster communication. */
169169 privateNetworkId ?: string
170+ /** Date on which it will be possible to switch to a smaller offer. */
171+ commitmentEndsAt ?: Date
170172}
171173
172174/** Cluster. auto upgrade. */
You can’t perform that action at this time.
0 commit comments