@pulumi/linode 5.1.0-alpha.1752772340 → 5.1.0-alpha.1752810302

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -63,7 +63,7 @@ export interface GetLkeClusterResult {
63
63
  */
64
64
  readonly id: number;
65
65
  /**
66
- * The Kubernetes version for this Kubernetes cluster in the format of `major.minor` (e.g. `1.17`).
66
+ * The k8s version of the nodes in this Node Pool. For LKE enterprise only and may not currently available to all users even under v4beta.
67
67
  */
68
68
  readonly k8sVersion: string;
69
69
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/linode",
3
- "version": "5.1.0-alpha.1752772340",
3
+ "version": "5.1.0-alpha.1752810302",
4
4
  "description": "A Pulumi package for creating and managing linode cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -23,6 +23,6 @@
23
23
  "pulumi": {
24
24
  "resource": true,
25
25
  "name": "linode",
26
- "version": "5.1.0-alpha.1752772340"
26
+ "version": "5.1.0-alpha.1752810302"
27
27
  }
28
28
  }
package/types/input.d.ts CHANGED
@@ -1915,6 +1915,10 @@ export interface GetLkeClusterPool {
1915
1915
  * The LKE Cluster's ID.
1916
1916
  */
1917
1917
  id?: number;
1918
+ /**
1919
+ * The k8s version of the nodes in this Node Pool. For LKE enterprise only and may not currently available to all users even under v4beta.
1920
+ */
1921
+ k8sVersion?: string;
1918
1922
  /**
1919
1923
  * Key-value pairs added as labels to nodes in the node pool. Labels help classify your nodes and to easily select subsets of objects.
1920
1924
  */
@@ -1937,6 +1941,10 @@ export interface GetLkeClusterPool {
1937
1941
  * The linode type for all of the nodes in the Node Pool. See all node types [here](https://api.linode.com/v4/linode/types).
1938
1942
  */
1939
1943
  type?: string;
1944
+ /**
1945
+ * The strategy for updating the Node Pool k8s version. For LKE enterprise only and may not currently available to all users even under v4beta.
1946
+ */
1947
+ updateStrategy?: string;
1940
1948
  }
1941
1949
  export interface GetLkeClusterPoolArgs {
1942
1950
  /**
@@ -1959,6 +1967,10 @@ export interface GetLkeClusterPoolArgs {
1959
1967
  * The LKE Cluster's ID.
1960
1968
  */
1961
1969
  id?: pulumi.Input<number>;
1970
+ /**
1971
+ * The k8s version of the nodes in this Node Pool. For LKE enterprise only and may not currently available to all users even under v4beta.
1972
+ */
1973
+ k8sVersion?: pulumi.Input<string>;
1962
1974
  /**
1963
1975
  * Key-value pairs added as labels to nodes in the node pool. Labels help classify your nodes and to easily select subsets of objects.
1964
1976
  */
@@ -1981,6 +1993,10 @@ export interface GetLkeClusterPoolArgs {
1981
1993
  * The linode type for all of the nodes in the Node Pool. See all node types [here](https://api.linode.com/v4/linode/types).
1982
1994
  */
1983
1995
  type?: pulumi.Input<string>;
1996
+ /**
1997
+ * The strategy for updating the Node Pool k8s version. For LKE enterprise only and may not currently available to all users even under v4beta.
1998
+ */
1999
+ updateStrategy?: pulumi.Input<string>;
1984
2000
  }
1985
2001
  export interface GetLkeClusterPoolAutoscaler {
1986
2002
  /**
@@ -6139,6 +6155,10 @@ export interface LkeClusterPool {
6139
6155
  * The ID of the node.
6140
6156
  */
6141
6157
  id?: pulumi.Input<number>;
6158
+ /**
6159
+ * The k8s version of the nodes in this Node Pool. For LKE enterprise only and may not currently available to all users even under v4beta.
6160
+ */
6161
+ k8sVersion?: pulumi.Input<string>;
6142
6162
  /**
6143
6163
  * A map of key/value pairs to apply to all nodes in the pool. Labels are used to identify and organize Kubernetes resources within your cluster.
6144
6164
  */
@@ -6161,6 +6181,10 @@ export interface LkeClusterPool {
6161
6181
  * A Linode Type for all of the nodes in the Node Pool. See all node types [here](https://api.linode.com/v4/linode/types).
6162
6182
  */
6163
6183
  type: pulumi.Input<string>;
6184
+ /**
6185
+ * The strategy for updating the Node Pool k8s version. For LKE enterprise only and may not currently available to all users even under v4beta.
6186
+ */
6187
+ updateStrategy?: pulumi.Input<string>;
6164
6188
  }
6165
6189
  export interface LkeClusterPoolAutoscaler {
6166
6190
  /**
package/types/output.d.ts CHANGED
@@ -2549,6 +2549,10 @@ export interface GetLkeClusterPool {
2549
2549
  * The LKE Cluster's ID.
2550
2550
  */
2551
2551
  id: number;
2552
+ /**
2553
+ * The k8s version of the nodes in this Node Pool. For LKE enterprise only and may not currently available to all users even under v4beta.
2554
+ */
2555
+ k8sVersion: string;
2552
2556
  /**
2553
2557
  * Key-value pairs added as labels to nodes in the node pool. Labels help classify your nodes and to easily select subsets of objects.
2554
2558
  */
@@ -2571,6 +2575,10 @@ export interface GetLkeClusterPool {
2571
2575
  * The linode type for all of the nodes in the Node Pool. See all node types [here](https://api.linode.com/v4/linode/types).
2572
2576
  */
2573
2577
  type: string;
2578
+ /**
2579
+ * The strategy for updating the Node Pool k8s version. For LKE enterprise only and may not currently available to all users even under v4beta.
2580
+ */
2581
+ updateStrategy: string;
2574
2582
  }
2575
2583
  export interface GetLkeClusterPoolAutoscaler {
2576
2584
  /**
@@ -5111,6 +5119,10 @@ export interface LkeClusterPool {
5111
5119
  * The ID of the node.
5112
5120
  */
5113
5121
  id: number;
5122
+ /**
5123
+ * The k8s version of the nodes in this Node Pool. For LKE enterprise only and may not currently available to all users even under v4beta.
5124
+ */
5125
+ k8sVersion: string;
5114
5126
  /**
5115
5127
  * A map of key/value pairs to apply to all nodes in the pool. Labels are used to identify and organize Kubernetes resources within your cluster.
5116
5128
  */
@@ -5133,6 +5145,10 @@ export interface LkeClusterPool {
5133
5145
  * A Linode Type for all of the nodes in the Node Pool. See all node types [here](https://api.linode.com/v4/linode/types).
5134
5146
  */
5135
5147
  type: string;
5148
+ /**
5149
+ * The strategy for updating the Node Pool k8s version. For LKE enterprise only and may not currently available to all users even under v4beta.
5150
+ */
5151
+ updateStrategy: string;
5136
5152
  }
5137
5153
  export interface LkeClusterPoolAutoscaler {
5138
5154
  /**