File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed
packages_generated/k8s/src/v1 Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -122,6 +122,8 @@ export const unmarshalVersion = (data: unknown): Version => {
122
122
availableContainerRuntimes : data . available_container_runtimes ,
123
123
availableFeatureGates : data . available_feature_gates ,
124
124
availableKubeletArgs : data . available_kubelet_args ,
125
+ deprecatedAt : unmarshalDate ( data . deprecated_at ) ,
126
+ endOfLifeAt : unmarshalDate ( data . end_of_life_at ) ,
125
127
label : data . label ,
126
128
name : data . name ,
127
129
region : data . region ,
Original file line number Diff line number Diff line change @@ -624,6 +624,14 @@ export interface Version {
624
624
* Supported kubelet arguments for this version.
625
625
*/
626
626
availableKubeletArgs : Record < string , string >
627
+ /**
628
+ * Date from which this version will no longer be available for provisioning.
629
+ */
630
+ deprecatedAt ?: Date
631
+ /**
632
+ * Date from which any remaining clusters on this version will begin to be forcibly upgraded to the next minor version.
633
+ */
634
+ endOfLifeAt ?: Date
627
635
}
628
636
629
637
export interface Cluster {
You can’t perform that action at this time.
0 commit comments