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 c452ae4 commit f604015Copy full SHA for f604015
packages_generated/k8s/src/v1/marshalling.gen.ts
@@ -127,6 +127,7 @@ export const unmarshalVersion = (data: unknown): Version => {
127
label: data.label,
128
name: data.name,
129
region: data.region,
130
+ releasedAt: unmarshalDate(data.released_at),
131
} as Version
132
}
133
packages_generated/k8s/src/v1/types.gen.ts
@@ -632,6 +632,10 @@ export interface Version {
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
635
+ /**
636
+ * Date at which this version was made available by Kapsule product.
637
+ */
638
+ releasedAt?: Date
639
640
641
export interface Cluster {
0 commit comments