@alicloud/cs20151215 4.0.1 → 4.0.2
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.
- package/dist/client.d.ts +4 -0
- package/dist/client.js +8 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +12 -0
package/dist/client.d.ts
CHANGED
|
@@ -4964,6 +4964,8 @@ export declare class CreateClusterNodePoolRequestManagementAutoRepairPolicy exte
|
|
|
4964
4964
|
}
|
|
4965
4965
|
export declare class CreateClusterNodePoolRequestManagementAutoUpgradePolicy extends $tea.Model {
|
|
4966
4966
|
autoUpgradeKubelet?: boolean;
|
|
4967
|
+
autoUpgradeOs?: boolean;
|
|
4968
|
+
autoUpgradeRuntime?: boolean;
|
|
4967
4969
|
static names(): {
|
|
4968
4970
|
[key: string]: string;
|
|
4969
4971
|
};
|
|
@@ -6963,6 +6965,8 @@ export declare class ModifyClusterNodePoolRequestManagementAutoRepairPolicy exte
|
|
|
6963
6965
|
}
|
|
6964
6966
|
export declare class ModifyClusterNodePoolRequestManagementAutoUpgradePolicy extends $tea.Model {
|
|
6965
6967
|
autoUpgradeKubelet?: boolean;
|
|
6968
|
+
autoUpgradeOs?: boolean;
|
|
6969
|
+
autoUpgradeRuntime?: boolean;
|
|
6966
6970
|
static names(): {
|
|
6967
6971
|
[key: string]: string;
|
|
6968
6972
|
};
|
package/dist/client.js
CHANGED
|
@@ -6877,11 +6877,15 @@ class CreateClusterNodePoolRequestManagementAutoUpgradePolicy extends $tea.Model
|
|
|
6877
6877
|
static names() {
|
|
6878
6878
|
return {
|
|
6879
6879
|
autoUpgradeKubelet: 'auto_upgrade_kubelet',
|
|
6880
|
+
autoUpgradeOs: 'auto_upgrade_os',
|
|
6881
|
+
autoUpgradeRuntime: 'auto_upgrade_runtime',
|
|
6880
6882
|
};
|
|
6881
6883
|
}
|
|
6882
6884
|
static types() {
|
|
6883
6885
|
return {
|
|
6884
6886
|
autoUpgradeKubelet: 'boolean',
|
|
6887
|
+
autoUpgradeOs: 'boolean',
|
|
6888
|
+
autoUpgradeRuntime: 'boolean',
|
|
6885
6889
|
};
|
|
6886
6890
|
}
|
|
6887
6891
|
constructor(map) {
|
|
@@ -9907,11 +9911,15 @@ class ModifyClusterNodePoolRequestManagementAutoUpgradePolicy extends $tea.Model
|
|
|
9907
9911
|
static names() {
|
|
9908
9912
|
return {
|
|
9909
9913
|
autoUpgradeKubelet: 'auto_upgrade_kubelet',
|
|
9914
|
+
autoUpgradeOs: 'auto_upgrade_os',
|
|
9915
|
+
autoUpgradeRuntime: 'auto_upgrade_runtime',
|
|
9910
9916
|
};
|
|
9911
9917
|
}
|
|
9912
9918
|
static types() {
|
|
9913
9919
|
return {
|
|
9914
9920
|
autoUpgradeKubelet: 'boolean',
|
|
9921
|
+
autoUpgradeOs: 'boolean',
|
|
9922
|
+
autoUpgradeRuntime: 'boolean',
|
|
9915
9923
|
};
|
|
9916
9924
|
}
|
|
9917
9925
|
constructor(map) {
|