@alicloud/ess20220222 1.8.3 → 1.8.4

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/ess20220222",
3
- "version": "1.8.3",
3
+ "version": "1.8.4",
4
4
  "description": "",
5
5
  "main": "dist/client.js",
6
6
  "scripts": {
package/src/client.ts CHANGED
@@ -17787,6 +17787,7 @@ export class StartInstanceRefreshRequest extends $tea.Model {
17787
17787
  * asg-bp18p2yfxow2dloq****
17788
17788
  */
17789
17789
  scalingGroupId?: string;
17790
+ skipMatching?: boolean;
17790
17791
  static names(): { [key: string]: string } {
17791
17792
  return {
17792
17793
  clientToken: 'ClientToken',
@@ -17797,6 +17798,7 @@ export class StartInstanceRefreshRequest extends $tea.Model {
17797
17798
  regionId: 'RegionId',
17798
17799
  resourceOwnerAccount: 'ResourceOwnerAccount',
17799
17800
  scalingGroupId: 'ScalingGroupId',
17801
+ skipMatching: 'SkipMatching',
17800
17802
  };
17801
17803
  }
17802
17804
 
@@ -17810,6 +17812,7 @@ export class StartInstanceRefreshRequest extends $tea.Model {
17810
17812
  regionId: 'string',
17811
17813
  resourceOwnerAccount: 'string',
17812
17814
  scalingGroupId: 'string',
17815
+ skipMatching: 'boolean',
17813
17816
  };
17814
17817
  }
17815
17818
 
@@ -27958,6 +27961,7 @@ export class DescribeInstanceRefreshesResponseBodyInstanceRefreshTasks extends $
27958
27961
  * asg-bp16pbfcr8j9*****
27959
27962
  */
27960
27963
  scalingGroupId?: string;
27964
+ skipMatching?: boolean;
27961
27965
  /**
27962
27966
  * @remarks
27963
27967
  * The start time of the instance refresh task.
@@ -28004,6 +28008,7 @@ export class DescribeInstanceRefreshesResponseBodyInstanceRefreshTasks extends $
28004
28008
  minHealthyPercentage: 'MinHealthyPercentage',
28005
28009
  regionId: 'RegionId',
28006
28010
  scalingGroupId: 'ScalingGroupId',
28011
+ skipMatching: 'SkipMatching',
28007
28012
  startTime: 'StartTime',
28008
28013
  status: 'Status',
28009
28014
  totalNeedUpdateCapacity: 'TotalNeedUpdateCapacity',
@@ -28021,6 +28026,7 @@ export class DescribeInstanceRefreshesResponseBodyInstanceRefreshTasks extends $
28021
28026
  minHealthyPercentage: 'number',
28022
28027
  regionId: 'string',
28023
28028
  scalingGroupId: 'string',
28029
+ skipMatching: 'boolean',
28024
28030
  startTime: 'string',
28025
28031
  status: 'string',
28026
28032
  totalNeedUpdateCapacity: 'number',
@@ -45722,6 +45728,10 @@ export default class Client extends OpenApi {
45722
45728
  query["ScalingGroupId"] = request.scalingGroupId;
45723
45729
  }
45724
45730
 
45731
+ if (!Util.isUnset(request.skipMatching)) {
45732
+ query["SkipMatching"] = request.skipMatching;
45733
+ }
45734
+
45725
45735
  let req = new $OpenApi.OpenApiRequest({
45726
45736
  query: OpenApiUtil.query(query),
45727
45737
  });