@alicloud/cs20151215 4.0.0 → 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 +19 -0
- package/dist/client.js +1400 -1358
- package/dist/client.js.map +1 -1
- package/package.json +4 -4
- package/src/client.ts +38 -0
package/dist/client.d.ts
CHANGED
|
@@ -3447,6 +3447,7 @@ export declare class ModifyClusterTagsResponse extends $tea.Model {
|
|
|
3447
3447
|
}
|
|
3448
3448
|
export declare class ModifyNodePoolNodeConfigRequest extends $tea.Model {
|
|
3449
3449
|
kubeletConfig?: KubeletConfig;
|
|
3450
|
+
osConfig?: ModifyNodePoolNodeConfigRequestOsConfig;
|
|
3450
3451
|
rollingPolicy?: ModifyNodePoolNodeConfigRequestRollingPolicy;
|
|
3451
3452
|
static names(): {
|
|
3452
3453
|
[key: string]: string;
|
|
@@ -4963,6 +4964,8 @@ export declare class CreateClusterNodePoolRequestManagementAutoRepairPolicy exte
|
|
|
4963
4964
|
}
|
|
4964
4965
|
export declare class CreateClusterNodePoolRequestManagementAutoUpgradePolicy extends $tea.Model {
|
|
4965
4966
|
autoUpgradeKubelet?: boolean;
|
|
4967
|
+
autoUpgradeOs?: boolean;
|
|
4968
|
+
autoUpgradeRuntime?: boolean;
|
|
4966
4969
|
static names(): {
|
|
4967
4970
|
[key: string]: string;
|
|
4968
4971
|
};
|
|
@@ -6962,6 +6965,8 @@ export declare class ModifyClusterNodePoolRequestManagementAutoRepairPolicy exte
|
|
|
6962
6965
|
}
|
|
6963
6966
|
export declare class ModifyClusterNodePoolRequestManagementAutoUpgradePolicy extends $tea.Model {
|
|
6964
6967
|
autoUpgradeKubelet?: boolean;
|
|
6968
|
+
autoUpgradeOs?: boolean;
|
|
6969
|
+
autoUpgradeRuntime?: boolean;
|
|
6965
6970
|
static names(): {
|
|
6966
6971
|
[key: string]: string;
|
|
6967
6972
|
};
|
|
@@ -7118,6 +7123,20 @@ export declare class ModifyClusterNodePoolRequestTeeConfig extends $tea.Model {
|
|
|
7118
7123
|
[key: string]: any;
|
|
7119
7124
|
});
|
|
7120
7125
|
}
|
|
7126
|
+
export declare class ModifyNodePoolNodeConfigRequestOsConfig extends $tea.Model {
|
|
7127
|
+
sysctl?: {
|
|
7128
|
+
[key: string]: any;
|
|
7129
|
+
};
|
|
7130
|
+
static names(): {
|
|
7131
|
+
[key: string]: string;
|
|
7132
|
+
};
|
|
7133
|
+
static types(): {
|
|
7134
|
+
[key: string]: any;
|
|
7135
|
+
};
|
|
7136
|
+
constructor(map?: {
|
|
7137
|
+
[key: string]: any;
|
|
7138
|
+
});
|
|
7139
|
+
}
|
|
7121
7140
|
export declare class ModifyNodePoolNodeConfigRequestRollingPolicy extends $tea.Model {
|
|
7122
7141
|
maxParallelism?: number;
|
|
7123
7142
|
static names(): {
|