@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/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -8677,15 +8677,21 @@ export class CreateClusterNodePoolRequestManagementAutoRepairPolicy extends $tea
|
|
|
8677
8677
|
|
|
8678
8678
|
export class CreateClusterNodePoolRequestManagementAutoUpgradePolicy extends $tea.Model {
|
|
8679
8679
|
autoUpgradeKubelet?: boolean;
|
|
8680
|
+
autoUpgradeOs?: boolean;
|
|
8681
|
+
autoUpgradeRuntime?: boolean;
|
|
8680
8682
|
static names(): { [key: string]: string } {
|
|
8681
8683
|
return {
|
|
8682
8684
|
autoUpgradeKubelet: 'auto_upgrade_kubelet',
|
|
8685
|
+
autoUpgradeOs: 'auto_upgrade_os',
|
|
8686
|
+
autoUpgradeRuntime: 'auto_upgrade_runtime',
|
|
8683
8687
|
};
|
|
8684
8688
|
}
|
|
8685
8689
|
|
|
8686
8690
|
static types(): { [key: string]: any } {
|
|
8687
8691
|
return {
|
|
8688
8692
|
autoUpgradeKubelet: 'boolean',
|
|
8693
|
+
autoUpgradeOs: 'boolean',
|
|
8694
|
+
autoUpgradeRuntime: 'boolean',
|
|
8689
8695
|
};
|
|
8690
8696
|
}
|
|
8691
8697
|
|
|
@@ -12627,15 +12633,21 @@ export class ModifyClusterNodePoolRequestManagementAutoRepairPolicy extends $tea
|
|
|
12627
12633
|
|
|
12628
12634
|
export class ModifyClusterNodePoolRequestManagementAutoUpgradePolicy extends $tea.Model {
|
|
12629
12635
|
autoUpgradeKubelet?: boolean;
|
|
12636
|
+
autoUpgradeOs?: boolean;
|
|
12637
|
+
autoUpgradeRuntime?: boolean;
|
|
12630
12638
|
static names(): { [key: string]: string } {
|
|
12631
12639
|
return {
|
|
12632
12640
|
autoUpgradeKubelet: 'auto_upgrade_kubelet',
|
|
12641
|
+
autoUpgradeOs: 'auto_upgrade_os',
|
|
12642
|
+
autoUpgradeRuntime: 'auto_upgrade_runtime',
|
|
12633
12643
|
};
|
|
12634
12644
|
}
|
|
12635
12645
|
|
|
12636
12646
|
static types(): { [key: string]: any } {
|
|
12637
12647
|
return {
|
|
12638
12648
|
autoUpgradeKubelet: 'boolean',
|
|
12649
|
+
autoUpgradeOs: 'boolean',
|
|
12650
|
+
autoUpgradeRuntime: 'boolean',
|
|
12639
12651
|
};
|
|
12640
12652
|
}
|
|
12641
12653
|
|