@alicloud/cs20151215 3.3.4 → 3.3.5
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 +1 -0
- package/dist/client.js +5 -0
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +7 -0
package/dist/client.d.ts
CHANGED
|
@@ -4453,6 +4453,7 @@ export declare class UpgradeClusterNodepoolRequest extends $tea.Model {
|
|
|
4453
4453
|
kubernetesVersion?: string;
|
|
4454
4454
|
runtimeType?: string;
|
|
4455
4455
|
runtimeVersion?: string;
|
|
4456
|
+
useReplace?: boolean;
|
|
4456
4457
|
static names(): {
|
|
4457
4458
|
[key: string]: string;
|
|
4458
4459
|
};
|
package/dist/client.js
CHANGED
|
@@ -6101,6 +6101,7 @@ class UpgradeClusterNodepoolRequest extends $tea.Model {
|
|
|
6101
6101
|
kubernetesVersion: 'kubernetes_version',
|
|
6102
6102
|
runtimeType: 'runtime_type',
|
|
6103
6103
|
runtimeVersion: 'runtime_version',
|
|
6104
|
+
useReplace: 'use_replace',
|
|
6104
6105
|
};
|
|
6105
6106
|
}
|
|
6106
6107
|
static types() {
|
|
@@ -6109,6 +6110,7 @@ class UpgradeClusterNodepoolRequest extends $tea.Model {
|
|
|
6109
6110
|
kubernetesVersion: 'string',
|
|
6110
6111
|
runtimeType: 'string',
|
|
6111
6112
|
runtimeVersion: 'string',
|
|
6113
|
+
useReplace: 'boolean',
|
|
6112
6114
|
};
|
|
6113
6115
|
}
|
|
6114
6116
|
}
|
|
@@ -14536,6 +14538,9 @@ class Client extends openapi_client_1.default {
|
|
|
14536
14538
|
if (!tea_util_1.default.isUnset(request.runtimeVersion)) {
|
|
14537
14539
|
body["runtime_version"] = request.runtimeVersion;
|
|
14538
14540
|
}
|
|
14541
|
+
if (!tea_util_1.default.isUnset(request.useReplace)) {
|
|
14542
|
+
body["use_replace"] = request.useReplace;
|
|
14543
|
+
}
|
|
14539
14544
|
let req = new $OpenApi.OpenApiRequest({
|
|
14540
14545
|
headers: headers,
|
|
14541
14546
|
body: openapi_util_1.default.parseToMap(body),
|