@alicloud/cs20151215 4.1.0 → 4.1.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alicloud/cs20151215",
3
- "version": "4.1.0",
3
+ "version": "4.1.1",
4
4
  "description": "",
5
5
  "main": "dist/client.js",
6
6
  "scripts": {
package/src/client.ts CHANGED
@@ -6576,10 +6576,12 @@ export class RemoveWorkflowResponse extends $tea.Model {
6576
6576
  export class RepairClusterNodePoolRequest extends $tea.Model {
6577
6577
  autoRestart?: boolean;
6578
6578
  nodes?: string[];
6579
+ operations?: RepairClusterNodePoolRequestOperations[];
6579
6580
  static names(): { [key: string]: string } {
6580
6581
  return {
6581
6582
  autoRestart: 'auto_restart',
6582
6583
  nodes: 'nodes',
6584
+ operations: 'operations',
6583
6585
  };
6584
6586
  }
6585
6587
 
@@ -6587,6 +6589,7 @@ export class RepairClusterNodePoolRequest extends $tea.Model {
6587
6589
  return {
6588
6590
  autoRestart: 'boolean',
6589
6591
  nodes: { 'type': 'array', 'itemType': 'string' },
6592
+ operations: { 'type': 'array', 'itemType': RepairClusterNodePoolRequestOperations },
6590
6593
  };
6591
6594
  }
6592
6595
 
@@ -13212,6 +13215,28 @@ export class ModifyNodePoolNodeConfigRequestRollingPolicy extends $tea.Model {
13212
13215
  }
13213
13216
  }
13214
13217
 
13218
+ export class RepairClusterNodePoolRequestOperations extends $tea.Model {
13219
+ args?: string[];
13220
+ operationId?: string;
13221
+ static names(): { [key: string]: string } {
13222
+ return {
13223
+ args: 'args',
13224
+ operationId: 'operation_id',
13225
+ };
13226
+ }
13227
+
13228
+ static types(): { [key: string]: any } {
13229
+ return {
13230
+ args: { 'type': 'array', 'itemType': 'string' },
13231
+ operationId: 'string',
13232
+ };
13233
+ }
13234
+
13235
+ constructor(map?: { [key: string]: any }) {
13236
+ super(map);
13237
+ }
13238
+ }
13239
+
13215
13240
  export class ScaleClusterRequestTags extends $tea.Model {
13216
13241
  key?: string;
13217
13242
  static names(): { [key: string]: string } {
@@ -18820,6 +18845,10 @@ export default class Client extends OpenApi {
18820
18845
  body["nodes"] = request.nodes;
18821
18846
  }
18822
18847
 
18848
+ if (!Util.isUnset(request.operations)) {
18849
+ body["operations"] = request.operations;
18850
+ }
18851
+
18823
18852
  let req = new $OpenApi.OpenApiRequest({
18824
18853
  headers: headers,
18825
18854
  body: OpenApiUtil.parseToMap(body),