@alicloud/ess20220222 1.8.3 → 1.8.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 +2 -0
- package/dist/client.js +7 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +10 -0
package/dist/client.d.ts
CHANGED
|
@@ -13478,6 +13478,7 @@ export declare class StartInstanceRefreshRequest extends $tea.Model {
|
|
|
13478
13478
|
* asg-bp18p2yfxow2dloq****
|
|
13479
13479
|
*/
|
|
13480
13480
|
scalingGroupId?: string;
|
|
13481
|
+
skipMatching?: boolean;
|
|
13481
13482
|
static names(): {
|
|
13482
13483
|
[key: string]: string;
|
|
13483
13484
|
};
|
|
@@ -21335,6 +21336,7 @@ export declare class DescribeInstanceRefreshesResponseBodyInstanceRefreshTasks e
|
|
|
21335
21336
|
* asg-bp16pbfcr8j9*****
|
|
21336
21337
|
*/
|
|
21337
21338
|
scalingGroupId?: string;
|
|
21339
|
+
skipMatching?: boolean;
|
|
21338
21340
|
/**
|
|
21339
21341
|
* @remarks
|
|
21340
21342
|
* The start time of the instance refresh task.
|
package/dist/client.js
CHANGED
|
@@ -6954,6 +6954,7 @@ class StartInstanceRefreshRequest extends $tea.Model {
|
|
|
6954
6954
|
regionId: 'RegionId',
|
|
6955
6955
|
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
6956
6956
|
scalingGroupId: 'ScalingGroupId',
|
|
6957
|
+
skipMatching: 'SkipMatching',
|
|
6957
6958
|
};
|
|
6958
6959
|
}
|
|
6959
6960
|
static types() {
|
|
@@ -6966,6 +6967,7 @@ class StartInstanceRefreshRequest extends $tea.Model {
|
|
|
6966
6967
|
regionId: 'string',
|
|
6967
6968
|
resourceOwnerAccount: 'string',
|
|
6968
6969
|
scalingGroupId: 'string',
|
|
6970
|
+
skipMatching: 'boolean',
|
|
6969
6971
|
};
|
|
6970
6972
|
}
|
|
6971
6973
|
constructor(map) {
|
|
@@ -10543,6 +10545,7 @@ class DescribeInstanceRefreshesResponseBodyInstanceRefreshTasks extends $tea.Mod
|
|
|
10543
10545
|
minHealthyPercentage: 'MinHealthyPercentage',
|
|
10544
10546
|
regionId: 'RegionId',
|
|
10545
10547
|
scalingGroupId: 'ScalingGroupId',
|
|
10548
|
+
skipMatching: 'SkipMatching',
|
|
10546
10549
|
startTime: 'StartTime',
|
|
10547
10550
|
status: 'Status',
|
|
10548
10551
|
totalNeedUpdateCapacity: 'TotalNeedUpdateCapacity',
|
|
@@ -10559,6 +10562,7 @@ class DescribeInstanceRefreshesResponseBodyInstanceRefreshTasks extends $tea.Mod
|
|
|
10559
10562
|
minHealthyPercentage: 'number',
|
|
10560
10563
|
regionId: 'string',
|
|
10561
10564
|
scalingGroupId: 'string',
|
|
10565
|
+
skipMatching: 'boolean',
|
|
10562
10566
|
startTime: 'string',
|
|
10563
10567
|
status: 'string',
|
|
10564
10568
|
totalNeedUpdateCapacity: 'number',
|
|
@@ -20641,6 +20645,9 @@ class Client extends openapi_client_1.default {
|
|
|
20641
20645
|
if (!tea_util_1.default.isUnset(request.scalingGroupId)) {
|
|
20642
20646
|
query["ScalingGroupId"] = request.scalingGroupId;
|
|
20643
20647
|
}
|
|
20648
|
+
if (!tea_util_1.default.isUnset(request.skipMatching)) {
|
|
20649
|
+
query["SkipMatching"] = request.skipMatching;
|
|
20650
|
+
}
|
|
20644
20651
|
let req = new $OpenApi.OpenApiRequest({
|
|
20645
20652
|
query: openapi_util_1.default.query(query),
|
|
20646
20653
|
});
|