@alicloud/cs20151215 3.0.23 → 3.0.24

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": "3.0.23",
3
+ "version": "3.0.24",
4
4
  "description": "",
5
5
  "main": "dist/client.js",
6
6
  "scripts": {
package/src/client.ts CHANGED
@@ -3491,15 +3491,18 @@ export class DescribeEventsResponse extends $tea.Model {
3491
3491
  }
3492
3492
 
3493
3493
  export class DescribeExternalAgentRequest extends $tea.Model {
3494
+ agentMode?: string;
3494
3495
  privateIpAddress?: string;
3495
3496
  static names(): { [key: string]: string } {
3496
3497
  return {
3498
+ agentMode: 'AgentMode',
3497
3499
  privateIpAddress: 'PrivateIpAddress',
3498
3500
  };
3499
3501
  }
3500
3502
 
3501
3503
  static types(): { [key: string]: any } {
3502
3504
  return {
3505
+ agentMode: 'string',
3503
3506
  privateIpAddress: 'string',
3504
3507
  };
3505
3508
  }
@@ -13394,6 +13397,10 @@ export default class Client extends OpenApi {
13394
13397
  async describeExternalAgentWithOptions(ClusterId: string, request: DescribeExternalAgentRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeExternalAgentResponse> {
13395
13398
  Util.validateModel(request);
13396
13399
  let query : {[key: string ]: any} = { };
13400
+ if (!Util.isUnset(request.agentMode)) {
13401
+ query["AgentMode"] = request.agentMode;
13402
+ }
13403
+
13397
13404
  if (!Util.isUnset(request.privateIpAddress)) {
13398
13405
  query["PrivateIpAddress"] = request.privateIpAddress;
13399
13406
  }