@alicloud/cs20151215 3.3.3 → 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.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
  }
@@ -11152,7 +11154,7 @@ class Client extends openapi_client_1.default {
11152
11154
  action: "DeleteTrigger",
11153
11155
  version: "2015-12-15",
11154
11156
  protocol: "HTTPS",
11155
- pathname: `/clusters/%5Bcluster_id%5D/triggers/%5BId%5D`,
11157
+ pathname: `/clusters/${openapi_util_1.default.getEncodeParam(clusterId)}/triggers/${openapi_util_1.default.getEncodeParam(Id)}`,
11156
11158
  method: "DELETE",
11157
11159
  authType: "AK",
11158
11160
  style: "ROA",
@@ -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),