@alicloud/ess20220222 1.8.6 → 1.8.8
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 +156 -4
- package/dist/client.js +131 -577
- package/dist/client.js.map +1 -1
- package/package.json +1 -2
- package/src/client.ts +276 -578
package/src/client.ts
CHANGED
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
/**
|
|
3
3
|
*/
|
|
4
4
|
import Util, * as $Util from '@alicloud/tea-util';
|
|
5
|
-
import GatewayClient from '@alicloud/gateway-pop';
|
|
6
5
|
import OpenApi, * as $OpenApi from '@alicloud/openapi-client';
|
|
7
6
|
import OpenApiUtil from '@alicloud/openapi-util';
|
|
8
7
|
import EndpointUtil from '@alicloud/endpoint-util';
|
|
@@ -631,6 +630,7 @@ export class AttachInstancesRequest extends $tea.Model {
|
|
|
631
630
|
* false
|
|
632
631
|
*/
|
|
633
632
|
entrusted?: boolean;
|
|
633
|
+
ignoreInvalidInstance?: boolean;
|
|
634
634
|
/**
|
|
635
635
|
* @remarks
|
|
636
636
|
* The IDs of the ECS instances, elastic container instances, non-Alibaba Cloud instances, or instances in Economical Mode.
|
|
@@ -682,6 +682,7 @@ export class AttachInstancesRequest extends $tea.Model {
|
|
|
682
682
|
return {
|
|
683
683
|
clientToken: 'ClientToken',
|
|
684
684
|
entrusted: 'Entrusted',
|
|
685
|
+
ignoreInvalidInstance: 'IgnoreInvalidInstance',
|
|
685
686
|
instanceIds: 'InstanceIds',
|
|
686
687
|
lifecycleHook: 'LifecycleHook',
|
|
687
688
|
loadBalancerWeights: 'LoadBalancerWeights',
|
|
@@ -698,6 +699,7 @@ export class AttachInstancesRequest extends $tea.Model {
|
|
|
698
699
|
return {
|
|
699
700
|
clientToken: 'string',
|
|
700
701
|
entrusted: 'boolean',
|
|
702
|
+
ignoreInvalidInstance: 'boolean',
|
|
701
703
|
instanceIds: { 'type': 'array', 'itemType': 'string' },
|
|
702
704
|
lifecycleHook: 'boolean',
|
|
703
705
|
loadBalancerWeights: { 'type': 'array', 'itemType': 'number' },
|
|
@@ -7288,18 +7290,41 @@ export class DescribeEciScalingConfigurationsResponse extends $tea.Model {
|
|
|
7288
7290
|
}
|
|
7289
7291
|
|
|
7290
7292
|
export class DescribeElasticStrengthRequest extends $tea.Model {
|
|
7293
|
+
/**
|
|
7294
|
+
* @remarks
|
|
7295
|
+
* The disk categories of the data disks. The disk categories that do not match the specified criteria are returned after you call this operation.
|
|
7296
|
+
*
|
|
7297
|
+
* > If you do not specify the scaling group ID, you must specify this parameter.
|
|
7298
|
+
*/
|
|
7291
7299
|
dataDiskCategories?: string[];
|
|
7292
7300
|
/**
|
|
7301
|
+
* @remarks
|
|
7302
|
+
* The name of the image family. You can specify the ImageFamily request parameter to obtain the most recent available images in the current image family for instance creation. If you specify ImageId, you cannot specify ImageFamily.
|
|
7303
|
+
*
|
|
7304
|
+
* > If you do not specify the scaling group ID, you must specify at least one of ImageId, ImageName, and ImageFamily.
|
|
7305
|
+
*
|
|
7293
7306
|
* @example
|
|
7294
7307
|
* CentOS7
|
|
7295
7308
|
*/
|
|
7296
7309
|
imageFamily?: string;
|
|
7297
7310
|
/**
|
|
7311
|
+
* @remarks
|
|
7312
|
+
* The ID of the image file that provides the image resource for Auto Scaling to create instances.
|
|
7313
|
+
*
|
|
7314
|
+
* > If you do not specify the scaling group ID, you must specify at least one of ImageId, ImageName, and ImageFamily.
|
|
7315
|
+
*
|
|
7298
7316
|
* @example
|
|
7299
7317
|
* centos6u5_64_20G_aliaegis****.vhd
|
|
7300
7318
|
*/
|
|
7301
7319
|
imageId?: string;
|
|
7302
7320
|
/**
|
|
7321
|
+
* @remarks
|
|
7322
|
+
* The name of the image. Each image name must be unique in a region. If you specify ImageId, ImageName is ignored.
|
|
7323
|
+
*
|
|
7324
|
+
* You cannot use ImageName to specify an Alibaba Cloud Marketplace image.
|
|
7325
|
+
*
|
|
7326
|
+
* > If you do not specify the scaling group ID, you must specify at least one of ImageId, ImageName, and ImageFamily.
|
|
7327
|
+
*
|
|
7303
7328
|
* @example
|
|
7304
7329
|
* ubuntu_18_04_x64_20G_alibase_20231225.vhd
|
|
7305
7330
|
*/
|
|
@@ -7310,16 +7335,25 @@ export class DescribeElasticStrengthRequest extends $tea.Model {
|
|
|
7310
7335
|
*/
|
|
7311
7336
|
instanceTypes?: string[];
|
|
7312
7337
|
/**
|
|
7338
|
+
* @remarks
|
|
7339
|
+
* The number of IPv6 addresses. If the instance type that you specified does meet the requirement for the number of IPv6 addresses, the scaling strength is weak.
|
|
7340
|
+
*
|
|
7341
|
+
* > If you do not specify the scaling group ID, you must specify this parameter.
|
|
7342
|
+
*
|
|
7313
7343
|
* @example
|
|
7314
7344
|
* 1
|
|
7315
7345
|
*/
|
|
7316
7346
|
ipv6AddressCount?: number;
|
|
7317
7347
|
/**
|
|
7318
7348
|
* @remarks
|
|
7349
|
+
* **
|
|
7350
|
+
*
|
|
7351
|
+
* **Warning** This parameter is deprecated. We recommend that you use SpotStrategy.
|
|
7352
|
+
*
|
|
7319
7353
|
* The preemption policy that you want to apply to pay-as-you-go instances. The preemption policy specified by this parameter overwrites the preemption policy specified in the scaling configuration. Valid values:
|
|
7320
7354
|
*
|
|
7321
7355
|
* * NoSpot: The instances are created as regular pay-as-you-go instances.
|
|
7322
|
-
* * SpotWithPriceLimit: The instances are created as preemptible instances
|
|
7356
|
+
* * SpotWithPriceLimit: The instances are created as preemptible instances with a user-defined maximum hourly price.
|
|
7323
7357
|
* * SpotAsPriceGo: The instances are created as preemptible instances for which the market price at the time of purchase is automatically used as the bidding price.
|
|
7324
7358
|
*
|
|
7325
7359
|
* Default value: NoSpot.
|
|
@@ -7352,6 +7386,15 @@ export class DescribeElasticStrengthRequest extends $tea.Model {
|
|
|
7352
7386
|
*/
|
|
7353
7387
|
scalingGroupIds?: string[];
|
|
7354
7388
|
/**
|
|
7389
|
+
* @remarks
|
|
7390
|
+
* The instance bidding policy. Valid values:
|
|
7391
|
+
*
|
|
7392
|
+
* * NoSpot: The instances are created as pay-as-you-go instances.
|
|
7393
|
+
* * SpotWithPriceLimit: The instances are created as preemptible instances with a user-defined maximum hourly price.
|
|
7394
|
+
* * SpotAsPriceGo: The instances are created as preemptible instances for which the market price at the time of purchase is used as the bid price.
|
|
7395
|
+
*
|
|
7396
|
+
* Default value: NoSpot.
|
|
7397
|
+
*
|
|
7355
7398
|
* @example
|
|
7356
7399
|
* NoSpot
|
|
7357
7400
|
*/
|
|
@@ -7364,8 +7407,16 @@ export class DescribeElasticStrengthRequest extends $tea.Model {
|
|
|
7364
7407
|
* * cloud_efficiency: ultra disk.
|
|
7365
7408
|
* * cloud_ssd: standard SSD.
|
|
7366
7409
|
* * cloud_essd: Enterprise SSD (ESSD).
|
|
7410
|
+
*
|
|
7411
|
+
* > If you do not specify the scaling group ID, you must specify this parameter.
|
|
7367
7412
|
*/
|
|
7368
7413
|
systemDiskCategories?: string[];
|
|
7414
|
+
/**
|
|
7415
|
+
* @remarks
|
|
7416
|
+
* The vSwitch IDs.
|
|
7417
|
+
*
|
|
7418
|
+
* > If you do not specify the scaling group ID, you must specify this parameter.
|
|
7419
|
+
*/
|
|
7369
7420
|
vSwitchIds?: string[];
|
|
7370
7421
|
static names(): { [key: string]: string } {
|
|
7371
7422
|
return {
|
|
@@ -7411,7 +7462,7 @@ export class DescribeElasticStrengthRequest extends $tea.Model {
|
|
|
7411
7462
|
export class DescribeElasticStrengthResponseBody extends $tea.Model {
|
|
7412
7463
|
/**
|
|
7413
7464
|
* @remarks
|
|
7414
|
-
* The scaling
|
|
7465
|
+
* The scaling strength models.
|
|
7415
7466
|
*/
|
|
7416
7467
|
elasticStrengthModels?: DescribeElasticStrengthResponseBodyElasticStrengthModels[];
|
|
7417
7468
|
/**
|
|
@@ -7429,7 +7480,11 @@ export class DescribeElasticStrengthResponseBody extends $tea.Model {
|
|
|
7429
7480
|
resourcePools?: DescribeElasticStrengthResponseBodyResourcePools[];
|
|
7430
7481
|
/**
|
|
7431
7482
|
* @remarks
|
|
7432
|
-
* The scaling strength of the scaling group. Each combination of instance type + zone is scored from 0 to 1 based on its availability, with 0 being the weakest scaling strength and 1 being the strongest. The scaling strength of the scaling group is measured by the combined scores of all the combinations of instance type + zone.
|
|
7483
|
+
* The scaling strength score of the scaling group. Each combination of instance type + zone is scored from 0 to 1 based on its availability, with 0 being the weakest scaling strength and 1 being the strongest. The scaling strength score of the scaling group is measured by the combined scores of all the combinations of instance type + zone.
|
|
7484
|
+
*
|
|
7485
|
+
* **
|
|
7486
|
+
*
|
|
7487
|
+
* **Warning** This parameter is deprecated.
|
|
7433
7488
|
*
|
|
7434
7489
|
* @example
|
|
7435
7490
|
* 1.5
|
|
@@ -16395,6 +16450,13 @@ export class ModifyScheduledTaskRequest extends $tea.Model {
|
|
|
16395
16450
|
* 2
|
|
16396
16451
|
*/
|
|
16397
16452
|
recurrenceValue?: string;
|
|
16453
|
+
/**
|
|
16454
|
+
* @remarks
|
|
16455
|
+
* The region ID.
|
|
16456
|
+
*
|
|
16457
|
+
* @example
|
|
16458
|
+
* cn-hangzhou
|
|
16459
|
+
*/
|
|
16398
16460
|
regionId?: string;
|
|
16399
16461
|
resourceOwnerAccount?: string;
|
|
16400
16462
|
resourceOwnerId?: number;
|
|
@@ -28035,6 +28097,74 @@ export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurations e
|
|
|
28035
28097
|
}
|
|
28036
28098
|
}
|
|
28037
28099
|
|
|
28100
|
+
export class DescribeElasticStrengthResponseBodyElasticStrengthModelsResourcePoolsInventoryHealth extends $tea.Model {
|
|
28101
|
+
/**
|
|
28102
|
+
* @remarks
|
|
28103
|
+
* The adequacy score.
|
|
28104
|
+
*
|
|
28105
|
+
* Valid values: 0 to 3.
|
|
28106
|
+
*
|
|
28107
|
+
* @example
|
|
28108
|
+
* 3
|
|
28109
|
+
*/
|
|
28110
|
+
adequacyScore?: number;
|
|
28111
|
+
/**
|
|
28112
|
+
* @remarks
|
|
28113
|
+
* The score of the inventory health.
|
|
28114
|
+
*
|
|
28115
|
+
* * A score between 5 and 6 indicates a sufficient inventory.
|
|
28116
|
+
* * A score between 1 and 4 indicates that there is no guarantee of a sufficient inventory. Select a reservation as necessary.
|
|
28117
|
+
* * A score between -3 and 0 indicates that the inventory is sufficient, and an alert is triggered. Select another instance type.
|
|
28118
|
+
*
|
|
28119
|
+
* Calculation formula: `HealthScore` = `AdequacyScore` + `SupplyScore` - `HotScore`.
|
|
28120
|
+
*
|
|
28121
|
+
* @example
|
|
28122
|
+
* 3
|
|
28123
|
+
*/
|
|
28124
|
+
healthScore?: number;
|
|
28125
|
+
/**
|
|
28126
|
+
* @remarks
|
|
28127
|
+
* The popularity score.
|
|
28128
|
+
*
|
|
28129
|
+
* Valid values: 0 to 3.
|
|
28130
|
+
*
|
|
28131
|
+
* @example
|
|
28132
|
+
* 0
|
|
28133
|
+
*/
|
|
28134
|
+
hotScore?: number;
|
|
28135
|
+
/**
|
|
28136
|
+
* @remarks
|
|
28137
|
+
* The score of the replenishment capability.
|
|
28138
|
+
*
|
|
28139
|
+
* Valid values: 0 to 3.
|
|
28140
|
+
*
|
|
28141
|
+
* @example
|
|
28142
|
+
* 2
|
|
28143
|
+
*/
|
|
28144
|
+
supplyScore?: number;
|
|
28145
|
+
static names(): { [key: string]: string } {
|
|
28146
|
+
return {
|
|
28147
|
+
adequacyScore: 'AdequacyScore',
|
|
28148
|
+
healthScore: 'HealthScore',
|
|
28149
|
+
hotScore: 'HotScore',
|
|
28150
|
+
supplyScore: 'SupplyScore',
|
|
28151
|
+
};
|
|
28152
|
+
}
|
|
28153
|
+
|
|
28154
|
+
static types(): { [key: string]: any } {
|
|
28155
|
+
return {
|
|
28156
|
+
adequacyScore: 'number',
|
|
28157
|
+
healthScore: 'number',
|
|
28158
|
+
hotScore: 'number',
|
|
28159
|
+
supplyScore: 'number',
|
|
28160
|
+
};
|
|
28161
|
+
}
|
|
28162
|
+
|
|
28163
|
+
constructor(map?: { [key: string]: any }) {
|
|
28164
|
+
super(map);
|
|
28165
|
+
}
|
|
28166
|
+
}
|
|
28167
|
+
|
|
28038
28168
|
export class DescribeElasticStrengthResponseBodyElasticStrengthModelsResourcePools extends $tea.Model {
|
|
28039
28169
|
/**
|
|
28040
28170
|
* @remarks
|
|
@@ -28052,6 +28182,11 @@ export class DescribeElasticStrengthResponseBodyElasticStrengthModelsResourcePoo
|
|
|
28052
28182
|
* ecs.r7.large
|
|
28053
28183
|
*/
|
|
28054
28184
|
instanceType?: string;
|
|
28185
|
+
/**
|
|
28186
|
+
* @remarks
|
|
28187
|
+
* The inventory health.
|
|
28188
|
+
*/
|
|
28189
|
+
inventoryHealth?: DescribeElasticStrengthResponseBodyElasticStrengthModelsResourcePoolsInventoryHealth;
|
|
28055
28190
|
/**
|
|
28056
28191
|
* @remarks
|
|
28057
28192
|
* The error message returned when the scaling strength is the weakest.
|
|
@@ -28060,10 +28195,25 @@ export class DescribeElasticStrengthResponseBodyElasticStrengthModelsResourcePoo
|
|
|
28060
28195
|
* The instanceTypes or diskTypes are not supported.
|
|
28061
28196
|
*/
|
|
28062
28197
|
msg?: string;
|
|
28198
|
+
/**
|
|
28199
|
+
* @remarks
|
|
28200
|
+
* Indicates whether the resource pool is available. Valid values:
|
|
28201
|
+
*
|
|
28202
|
+
* * Available
|
|
28203
|
+
* * Unavailable (If a constraint is not provided, the instance type is not deployed, or the instance type is out of stock, the resource pool becomes unavailable.)
|
|
28204
|
+
*
|
|
28205
|
+
* @example
|
|
28206
|
+
* Available
|
|
28207
|
+
*/
|
|
28208
|
+
status?: string;
|
|
28063
28209
|
/**
|
|
28064
28210
|
* @remarks
|
|
28065
28211
|
* The scaling strength of the resource pool.
|
|
28066
28212
|
*
|
|
28213
|
+
* **
|
|
28214
|
+
*
|
|
28215
|
+
* **Warning** This parameter is deprecated.
|
|
28216
|
+
*
|
|
28067
28217
|
* @example
|
|
28068
28218
|
* 0.6
|
|
28069
28219
|
*/
|
|
@@ -28085,7 +28235,9 @@ export class DescribeElasticStrengthResponseBodyElasticStrengthModelsResourcePoo
|
|
|
28085
28235
|
return {
|
|
28086
28236
|
code: 'Code',
|
|
28087
28237
|
instanceType: 'InstanceType',
|
|
28238
|
+
inventoryHealth: 'InventoryHealth',
|
|
28088
28239
|
msg: 'Msg',
|
|
28240
|
+
status: 'Status',
|
|
28089
28241
|
strength: 'Strength',
|
|
28090
28242
|
vSwitchIds: 'VSwitchIds',
|
|
28091
28243
|
zoneId: 'ZoneId',
|
|
@@ -28096,7 +28248,9 @@ export class DescribeElasticStrengthResponseBodyElasticStrengthModelsResourcePoo
|
|
|
28096
28248
|
return {
|
|
28097
28249
|
code: 'string',
|
|
28098
28250
|
instanceType: 'string',
|
|
28251
|
+
inventoryHealth: DescribeElasticStrengthResponseBodyElasticStrengthModelsResourcePoolsInventoryHealth,
|
|
28099
28252
|
msg: 'string',
|
|
28253
|
+
status: 'string',
|
|
28100
28254
|
strength: 'number',
|
|
28101
28255
|
vSwitchIds: { 'type': 'array', 'itemType': 'string' },
|
|
28102
28256
|
zoneId: 'string',
|
|
@@ -28109,6 +28263,18 @@ export class DescribeElasticStrengthResponseBodyElasticStrengthModelsResourcePoo
|
|
|
28109
28263
|
}
|
|
28110
28264
|
|
|
28111
28265
|
export class DescribeElasticStrengthResponseBodyElasticStrengthModels extends $tea.Model {
|
|
28266
|
+
/**
|
|
28267
|
+
* @remarks
|
|
28268
|
+
* The scaling strength level of the scaling group. Valid values:
|
|
28269
|
+
*
|
|
28270
|
+
* * Strong
|
|
28271
|
+
* * Medium
|
|
28272
|
+
* * Weak
|
|
28273
|
+
*
|
|
28274
|
+
* @example
|
|
28275
|
+
* Strong
|
|
28276
|
+
*/
|
|
28277
|
+
elasticStrength?: string;
|
|
28112
28278
|
/**
|
|
28113
28279
|
* @remarks
|
|
28114
28280
|
* The resource pools.
|
|
@@ -28124,7 +28290,11 @@ export class DescribeElasticStrengthResponseBodyElasticStrengthModels extends $t
|
|
|
28124
28290
|
scalingGroupId?: string;
|
|
28125
28291
|
/**
|
|
28126
28292
|
* @remarks
|
|
28127
|
-
* The scaling strength of the scaling group. Each combination of instance type + zone is scored from 0 to 1 based on its availability, with 0 being the weakest scaling strength and 1 being the strongest. The scaling strength of the scaling group is measured by the combined scores of all the combinations of instance type + zone.
|
|
28293
|
+
* The scaling strength score of the scaling group. Each combination of instance type + zone is scored from 0 to 1 based on its availability, with 0 being the weakest scaling strength and 1 being the strongest. The scaling strength score of the scaling group is measured by the combined scores of all the combinations of instance type + zone.
|
|
28294
|
+
*
|
|
28295
|
+
* **
|
|
28296
|
+
*
|
|
28297
|
+
* **Warning** This parameter is deprecated.
|
|
28128
28298
|
*
|
|
28129
28299
|
* @example
|
|
28130
28300
|
* 1.5
|
|
@@ -28132,6 +28302,7 @@ export class DescribeElasticStrengthResponseBodyElasticStrengthModels extends $t
|
|
|
28132
28302
|
totalStrength?: number;
|
|
28133
28303
|
static names(): { [key: string]: string } {
|
|
28134
28304
|
return {
|
|
28305
|
+
elasticStrength: 'ElasticStrength',
|
|
28135
28306
|
resourcePools: 'ResourcePools',
|
|
28136
28307
|
scalingGroupId: 'ScalingGroupId',
|
|
28137
28308
|
totalStrength: 'TotalStrength',
|
|
@@ -28140,6 +28311,7 @@ export class DescribeElasticStrengthResponseBodyElasticStrengthModels extends $t
|
|
|
28140
28311
|
|
|
28141
28312
|
static types(): { [key: string]: any } {
|
|
28142
28313
|
return {
|
|
28314
|
+
elasticStrength: 'string',
|
|
28143
28315
|
resourcePools: { 'type': 'array', 'itemType': DescribeElasticStrengthResponseBodyElasticStrengthModelsResourcePools },
|
|
28144
28316
|
scalingGroupId: 'string',
|
|
28145
28317
|
totalStrength: 'number',
|
|
@@ -38216,9 +38388,6 @@ export default class Client extends OpenApi {
|
|
|
38216
38388
|
|
|
38217
38389
|
constructor(config: $OpenApi.Config) {
|
|
38218
38390
|
super(config);
|
|
38219
|
-
this._productId = "Ess";
|
|
38220
|
-
let gatewayClient = new GatewayClient();
|
|
38221
|
-
this._spi = gatewayClient;
|
|
38222
38391
|
this._endpointRule = "regional";
|
|
38223
38392
|
this._endpointMap = {
|
|
38224
38393
|
'cn-qingdao': "ess.aliyuncs.com",
|
|
@@ -38332,12 +38501,7 @@ export default class Client extends OpenApi {
|
|
|
38332
38501
|
reqBodyType: "formData",
|
|
38333
38502
|
bodyType: "json",
|
|
38334
38503
|
});
|
|
38335
|
-
|
|
38336
|
-
return $tea.cast<ApplyEciScalingConfigurationResponse>(await this.callApi(params, req, runtime), new ApplyEciScalingConfigurationResponse({}));
|
|
38337
|
-
} else {
|
|
38338
|
-
return $tea.cast<ApplyEciScalingConfigurationResponse>(await this.execute(params, req, runtime), new ApplyEciScalingConfigurationResponse({}));
|
|
38339
|
-
}
|
|
38340
|
-
|
|
38504
|
+
return $tea.cast<ApplyEciScalingConfigurationResponse>(await this.callApi(params, req, runtime), new ApplyEciScalingConfigurationResponse({}));
|
|
38341
38505
|
}
|
|
38342
38506
|
|
|
38343
38507
|
/**
|
|
@@ -38426,12 +38590,7 @@ export default class Client extends OpenApi {
|
|
|
38426
38590
|
reqBodyType: "formData",
|
|
38427
38591
|
bodyType: "json",
|
|
38428
38592
|
});
|
|
38429
|
-
|
|
38430
|
-
return $tea.cast<ApplyScalingGroupResponse>(await this.callApi(params, req, runtime), new ApplyScalingGroupResponse({}));
|
|
38431
|
-
} else {
|
|
38432
|
-
return $tea.cast<ApplyScalingGroupResponse>(await this.execute(params, req, runtime), new ApplyScalingGroupResponse({}));
|
|
38433
|
-
}
|
|
38434
|
-
|
|
38593
|
+
return $tea.cast<ApplyScalingGroupResponse>(await this.callApi(params, req, runtime), new ApplyScalingGroupResponse({}));
|
|
38435
38594
|
}
|
|
38436
38595
|
|
|
38437
38596
|
/**
|
|
@@ -38536,12 +38695,7 @@ export default class Client extends OpenApi {
|
|
|
38536
38695
|
reqBodyType: "formData",
|
|
38537
38696
|
bodyType: "json",
|
|
38538
38697
|
});
|
|
38539
|
-
|
|
38540
|
-
return $tea.cast<AttachAlbServerGroupsResponse>(await this.callApi(params, req, runtime), new AttachAlbServerGroupsResponse({}));
|
|
38541
|
-
} else {
|
|
38542
|
-
return $tea.cast<AttachAlbServerGroupsResponse>(await this.execute(params, req, runtime), new AttachAlbServerGroupsResponse({}));
|
|
38543
|
-
}
|
|
38544
|
-
|
|
38698
|
+
return $tea.cast<AttachAlbServerGroupsResponse>(await this.callApi(params, req, runtime), new AttachAlbServerGroupsResponse({}));
|
|
38545
38699
|
}
|
|
38546
38700
|
|
|
38547
38701
|
/**
|
|
@@ -38629,12 +38783,7 @@ export default class Client extends OpenApi {
|
|
|
38629
38783
|
reqBodyType: "formData",
|
|
38630
38784
|
bodyType: "json",
|
|
38631
38785
|
});
|
|
38632
|
-
|
|
38633
|
-
return $tea.cast<AttachDBInstancesResponse>(await this.callApi(params, req, runtime), new AttachDBInstancesResponse({}));
|
|
38634
|
-
} else {
|
|
38635
|
-
return $tea.cast<AttachDBInstancesResponse>(await this.execute(params, req, runtime), new AttachDBInstancesResponse({}));
|
|
38636
|
-
}
|
|
38637
|
-
|
|
38786
|
+
return $tea.cast<AttachDBInstancesResponse>(await this.callApi(params, req, runtime), new AttachDBInstancesResponse({}));
|
|
38638
38787
|
}
|
|
38639
38788
|
|
|
38640
38789
|
/**
|
|
@@ -38691,6 +38840,10 @@ export default class Client extends OpenApi {
|
|
|
38691
38840
|
query["Entrusted"] = request.entrusted;
|
|
38692
38841
|
}
|
|
38693
38842
|
|
|
38843
|
+
if (!Util.isUnset(request.ignoreInvalidInstance)) {
|
|
38844
|
+
query["IgnoreInvalidInstance"] = request.ignoreInvalidInstance;
|
|
38845
|
+
}
|
|
38846
|
+
|
|
38694
38847
|
if (!Util.isUnset(request.instanceIds)) {
|
|
38695
38848
|
query["InstanceIds"] = request.instanceIds;
|
|
38696
38849
|
}
|
|
@@ -38741,12 +38894,7 @@ export default class Client extends OpenApi {
|
|
|
38741
38894
|
reqBodyType: "formData",
|
|
38742
38895
|
bodyType: "json",
|
|
38743
38896
|
});
|
|
38744
|
-
|
|
38745
|
-
return $tea.cast<AttachInstancesResponse>(await this.callApi(params, req, runtime), new AttachInstancesResponse({}));
|
|
38746
|
-
} else {
|
|
38747
|
-
return $tea.cast<AttachInstancesResponse>(await this.execute(params, req, runtime), new AttachInstancesResponse({}));
|
|
38748
|
-
}
|
|
38749
|
-
|
|
38897
|
+
return $tea.cast<AttachInstancesResponse>(await this.callApi(params, req, runtime), new AttachInstancesResponse({}));
|
|
38750
38898
|
}
|
|
38751
38899
|
|
|
38752
38900
|
/**
|
|
@@ -38841,12 +38989,7 @@ export default class Client extends OpenApi {
|
|
|
38841
38989
|
reqBodyType: "formData",
|
|
38842
38990
|
bodyType: "json",
|
|
38843
38991
|
});
|
|
38844
|
-
|
|
38845
|
-
return $tea.cast<AttachLoadBalancersResponse>(await this.callApi(params, req, runtime), new AttachLoadBalancersResponse({}));
|
|
38846
|
-
} else {
|
|
38847
|
-
return $tea.cast<AttachLoadBalancersResponse>(await this.execute(params, req, runtime), new AttachLoadBalancersResponse({}));
|
|
38848
|
-
}
|
|
38849
|
-
|
|
38992
|
+
return $tea.cast<AttachLoadBalancersResponse>(await this.callApi(params, req, runtime), new AttachLoadBalancersResponse({}));
|
|
38850
38993
|
}
|
|
38851
38994
|
|
|
38852
38995
|
/**
|
|
@@ -38921,12 +39064,7 @@ export default class Client extends OpenApi {
|
|
|
38921
39064
|
reqBodyType: "formData",
|
|
38922
39065
|
bodyType: "json",
|
|
38923
39066
|
});
|
|
38924
|
-
|
|
38925
|
-
return $tea.cast<AttachServerGroupsResponse>(await this.callApi(params, req, runtime), new AttachServerGroupsResponse({}));
|
|
38926
|
-
} else {
|
|
38927
|
-
return $tea.cast<AttachServerGroupsResponse>(await this.execute(params, req, runtime), new AttachServerGroupsResponse({}));
|
|
38928
|
-
}
|
|
38929
|
-
|
|
39067
|
+
return $tea.cast<AttachServerGroupsResponse>(await this.callApi(params, req, runtime), new AttachServerGroupsResponse({}));
|
|
38930
39068
|
}
|
|
38931
39069
|
|
|
38932
39070
|
/**
|
|
@@ -39009,12 +39147,7 @@ export default class Client extends OpenApi {
|
|
|
39009
39147
|
reqBodyType: "formData",
|
|
39010
39148
|
bodyType: "json",
|
|
39011
39149
|
});
|
|
39012
|
-
|
|
39013
|
-
return $tea.cast<AttachVServerGroupsResponse>(await this.callApi(params, req, runtime), new AttachVServerGroupsResponse({}));
|
|
39014
|
-
} else {
|
|
39015
|
-
return $tea.cast<AttachVServerGroupsResponse>(await this.execute(params, req, runtime), new AttachVServerGroupsResponse({}));
|
|
39016
|
-
}
|
|
39017
|
-
|
|
39150
|
+
return $tea.cast<AttachVServerGroupsResponse>(await this.callApi(params, req, runtime), new AttachVServerGroupsResponse({}));
|
|
39018
39151
|
}
|
|
39019
39152
|
|
|
39020
39153
|
/**
|
|
@@ -39092,12 +39225,7 @@ export default class Client extends OpenApi {
|
|
|
39092
39225
|
reqBodyType: "formData",
|
|
39093
39226
|
bodyType: "json",
|
|
39094
39227
|
});
|
|
39095
|
-
|
|
39096
|
-
return $tea.cast<CancelInstanceRefreshResponse>(await this.callApi(params, req, runtime), new CancelInstanceRefreshResponse({}));
|
|
39097
|
-
} else {
|
|
39098
|
-
return $tea.cast<CancelInstanceRefreshResponse>(await this.execute(params, req, runtime), new CancelInstanceRefreshResponse({}));
|
|
39099
|
-
}
|
|
39100
|
-
|
|
39228
|
+
return $tea.cast<CancelInstanceRefreshResponse>(await this.callApi(params, req, runtime), new CancelInstanceRefreshResponse({}));
|
|
39101
39229
|
}
|
|
39102
39230
|
|
|
39103
39231
|
/**
|
|
@@ -39166,12 +39294,7 @@ export default class Client extends OpenApi {
|
|
|
39166
39294
|
reqBodyType: "formData",
|
|
39167
39295
|
bodyType: "json",
|
|
39168
39296
|
});
|
|
39169
|
-
|
|
39170
|
-
return $tea.cast<ChangeResourceGroupResponse>(await this.callApi(params, req, runtime), new ChangeResourceGroupResponse({}));
|
|
39171
|
-
} else {
|
|
39172
|
-
return $tea.cast<ChangeResourceGroupResponse>(await this.execute(params, req, runtime), new ChangeResourceGroupResponse({}));
|
|
39173
|
-
}
|
|
39174
|
-
|
|
39297
|
+
return $tea.cast<ChangeResourceGroupResponse>(await this.callApi(params, req, runtime), new ChangeResourceGroupResponse({}));
|
|
39175
39298
|
}
|
|
39176
39299
|
|
|
39177
39300
|
/**
|
|
@@ -39248,12 +39371,7 @@ export default class Client extends OpenApi {
|
|
|
39248
39371
|
reqBodyType: "formData",
|
|
39249
39372
|
bodyType: "json",
|
|
39250
39373
|
});
|
|
39251
|
-
|
|
39252
|
-
return $tea.cast<CompleteLifecycleActionResponse>(await this.callApi(params, req, runtime), new CompleteLifecycleActionResponse({}));
|
|
39253
|
-
} else {
|
|
39254
|
-
return $tea.cast<CompleteLifecycleActionResponse>(await this.execute(params, req, runtime), new CompleteLifecycleActionResponse({}));
|
|
39255
|
-
}
|
|
39256
|
-
|
|
39374
|
+
return $tea.cast<CompleteLifecycleActionResponse>(await this.callApi(params, req, runtime), new CompleteLifecycleActionResponse({}));
|
|
39257
39375
|
}
|
|
39258
39376
|
|
|
39259
39377
|
/**
|
|
@@ -39377,12 +39495,7 @@ export default class Client extends OpenApi {
|
|
|
39377
39495
|
reqBodyType: "formData",
|
|
39378
39496
|
bodyType: "json",
|
|
39379
39497
|
});
|
|
39380
|
-
|
|
39381
|
-
return $tea.cast<CreateAlarmResponse>(await this.callApi(params, req, runtime), new CreateAlarmResponse({}));
|
|
39382
|
-
} else {
|
|
39383
|
-
return $tea.cast<CreateAlarmResponse>(await this.execute(params, req, runtime), new CreateAlarmResponse({}));
|
|
39384
|
-
}
|
|
39385
|
-
|
|
39498
|
+
return $tea.cast<CreateAlarmResponse>(await this.callApi(params, req, runtime), new CreateAlarmResponse({}));
|
|
39386
39499
|
}
|
|
39387
39500
|
|
|
39388
39501
|
/**
|
|
@@ -39427,12 +39540,7 @@ export default class Client extends OpenApi {
|
|
|
39427
39540
|
reqBodyType: "formData",
|
|
39428
39541
|
bodyType: "json",
|
|
39429
39542
|
});
|
|
39430
|
-
|
|
39431
|
-
return $tea.cast<CreateDiagnoseReportResponse>(await this.callApi(params, req, runtime), new CreateDiagnoseReportResponse({}));
|
|
39432
|
-
} else {
|
|
39433
|
-
return $tea.cast<CreateDiagnoseReportResponse>(await this.execute(params, req, runtime), new CreateDiagnoseReportResponse({}));
|
|
39434
|
-
}
|
|
39435
|
-
|
|
39543
|
+
return $tea.cast<CreateDiagnoseReportResponse>(await this.callApi(params, req, runtime), new CreateDiagnoseReportResponse({}));
|
|
39436
39544
|
}
|
|
39437
39545
|
|
|
39438
39546
|
/**
|
|
@@ -39674,12 +39782,7 @@ export default class Client extends OpenApi {
|
|
|
39674
39782
|
reqBodyType: "formData",
|
|
39675
39783
|
bodyType: "json",
|
|
39676
39784
|
});
|
|
39677
|
-
|
|
39678
|
-
return $tea.cast<CreateEciScalingConfigurationResponse>(await this.callApi(params, req, runtime), new CreateEciScalingConfigurationResponse({}));
|
|
39679
|
-
} else {
|
|
39680
|
-
return $tea.cast<CreateEciScalingConfigurationResponse>(await this.execute(params, req, runtime), new CreateEciScalingConfigurationResponse({}));
|
|
39681
|
-
}
|
|
39682
|
-
|
|
39785
|
+
return $tea.cast<CreateEciScalingConfigurationResponse>(await this.callApi(params, req, runtime), new CreateEciScalingConfigurationResponse({}));
|
|
39683
39786
|
}
|
|
39684
39787
|
|
|
39685
39788
|
/**
|
|
@@ -39767,12 +39870,7 @@ export default class Client extends OpenApi {
|
|
|
39767
39870
|
reqBodyType: "formData",
|
|
39768
39871
|
bodyType: "json",
|
|
39769
39872
|
});
|
|
39770
|
-
|
|
39771
|
-
return $tea.cast<CreateLifecycleHookResponse>(await this.callApi(params, req, runtime), new CreateLifecycleHookResponse({}));
|
|
39772
|
-
} else {
|
|
39773
|
-
return $tea.cast<CreateLifecycleHookResponse>(await this.execute(params, req, runtime), new CreateLifecycleHookResponse({}));
|
|
39774
|
-
}
|
|
39775
|
-
|
|
39873
|
+
return $tea.cast<CreateLifecycleHookResponse>(await this.callApi(params, req, runtime), new CreateLifecycleHookResponse({}));
|
|
39776
39874
|
}
|
|
39777
39875
|
|
|
39778
39876
|
/**
|
|
@@ -39849,12 +39947,7 @@ export default class Client extends OpenApi {
|
|
|
39849
39947
|
reqBodyType: "formData",
|
|
39850
39948
|
bodyType: "json",
|
|
39851
39949
|
});
|
|
39852
|
-
|
|
39853
|
-
return $tea.cast<CreateNotificationConfigurationResponse>(await this.callApi(params, req, runtime), new CreateNotificationConfigurationResponse({}));
|
|
39854
|
-
} else {
|
|
39855
|
-
return $tea.cast<CreateNotificationConfigurationResponse>(await this.execute(params, req, runtime), new CreateNotificationConfigurationResponse({}));
|
|
39856
|
-
}
|
|
39857
|
-
|
|
39950
|
+
return $tea.cast<CreateNotificationConfigurationResponse>(await this.callApi(params, req, runtime), new CreateNotificationConfigurationResponse({}));
|
|
39858
39951
|
}
|
|
39859
39952
|
|
|
39860
39953
|
/**
|
|
@@ -40152,12 +40245,7 @@ export default class Client extends OpenApi {
|
|
|
40152
40245
|
reqBodyType: "formData",
|
|
40153
40246
|
bodyType: "json",
|
|
40154
40247
|
});
|
|
40155
|
-
|
|
40156
|
-
return $tea.cast<CreateScalingConfigurationResponse>(await this.callApi(params, req, runtime), new CreateScalingConfigurationResponse({}));
|
|
40157
|
-
} else {
|
|
40158
|
-
return $tea.cast<CreateScalingConfigurationResponse>(await this.execute(params, req, runtime), new CreateScalingConfigurationResponse({}));
|
|
40159
|
-
}
|
|
40160
|
-
|
|
40248
|
+
return $tea.cast<CreateScalingConfigurationResponse>(await this.callApi(params, req, runtime), new CreateScalingConfigurationResponse({}));
|
|
40161
40249
|
}
|
|
40162
40250
|
|
|
40163
40251
|
/**
|
|
@@ -40416,12 +40504,7 @@ export default class Client extends OpenApi {
|
|
|
40416
40504
|
reqBodyType: "formData",
|
|
40417
40505
|
bodyType: "json",
|
|
40418
40506
|
});
|
|
40419
|
-
|
|
40420
|
-
return $tea.cast<CreateScalingGroupResponse>(await this.callApi(params, req, runtime), new CreateScalingGroupResponse({}));
|
|
40421
|
-
} else {
|
|
40422
|
-
return $tea.cast<CreateScalingGroupResponse>(await this.execute(params, req, runtime), new CreateScalingGroupResponse({}));
|
|
40423
|
-
}
|
|
40424
|
-
|
|
40507
|
+
return $tea.cast<CreateScalingGroupResponse>(await this.callApi(params, req, runtime), new CreateScalingGroupResponse({}));
|
|
40425
40508
|
}
|
|
40426
40509
|
|
|
40427
40510
|
/**
|
|
@@ -40605,12 +40688,7 @@ export default class Client extends OpenApi {
|
|
|
40605
40688
|
reqBodyType: "formData",
|
|
40606
40689
|
bodyType: "json",
|
|
40607
40690
|
});
|
|
40608
|
-
|
|
40609
|
-
return $tea.cast<CreateScalingRuleResponse>(await this.callApi(params, req, runtime), new CreateScalingRuleResponse({}));
|
|
40610
|
-
} else {
|
|
40611
|
-
return $tea.cast<CreateScalingRuleResponse>(await this.execute(params, req, runtime), new CreateScalingRuleResponse({}));
|
|
40612
|
-
}
|
|
40613
|
-
|
|
40691
|
+
return $tea.cast<CreateScalingRuleResponse>(await this.callApi(params, req, runtime), new CreateScalingRuleResponse({}));
|
|
40614
40692
|
}
|
|
40615
40693
|
|
|
40616
40694
|
/**
|
|
@@ -40741,12 +40819,7 @@ export default class Client extends OpenApi {
|
|
|
40741
40819
|
reqBodyType: "formData",
|
|
40742
40820
|
bodyType: "json",
|
|
40743
40821
|
});
|
|
40744
|
-
|
|
40745
|
-
return $tea.cast<CreateScheduledTaskResponse>(await this.callApi(params, req, runtime), new CreateScheduledTaskResponse({}));
|
|
40746
|
-
} else {
|
|
40747
|
-
return $tea.cast<CreateScheduledTaskResponse>(await this.execute(params, req, runtime), new CreateScheduledTaskResponse({}));
|
|
40748
|
-
}
|
|
40749
|
-
|
|
40822
|
+
return $tea.cast<CreateScheduledTaskResponse>(await this.callApi(params, req, runtime), new CreateScheduledTaskResponse({}));
|
|
40750
40823
|
}
|
|
40751
40824
|
|
|
40752
40825
|
/**
|
|
@@ -40814,12 +40887,7 @@ export default class Client extends OpenApi {
|
|
|
40814
40887
|
reqBodyType: "formData",
|
|
40815
40888
|
bodyType: "json",
|
|
40816
40889
|
});
|
|
40817
|
-
|
|
40818
|
-
return $tea.cast<DeactivateScalingConfigurationResponse>(await this.callApi(params, req, runtime), new DeactivateScalingConfigurationResponse({}));
|
|
40819
|
-
} else {
|
|
40820
|
-
return $tea.cast<DeactivateScalingConfigurationResponse>(await this.execute(params, req, runtime), new DeactivateScalingConfigurationResponse({}));
|
|
40821
|
-
}
|
|
40822
|
-
|
|
40890
|
+
return $tea.cast<DeactivateScalingConfigurationResponse>(await this.callApi(params, req, runtime), new DeactivateScalingConfigurationResponse({}));
|
|
40823
40891
|
}
|
|
40824
40892
|
|
|
40825
40893
|
/**
|
|
@@ -40876,12 +40944,7 @@ export default class Client extends OpenApi {
|
|
|
40876
40944
|
reqBodyType: "formData",
|
|
40877
40945
|
bodyType: "json",
|
|
40878
40946
|
});
|
|
40879
|
-
|
|
40880
|
-
return $tea.cast<DeleteAlarmResponse>(await this.callApi(params, req, runtime), new DeleteAlarmResponse({}));
|
|
40881
|
-
} else {
|
|
40882
|
-
return $tea.cast<DeleteAlarmResponse>(await this.execute(params, req, runtime), new DeleteAlarmResponse({}));
|
|
40883
|
-
}
|
|
40884
|
-
|
|
40947
|
+
return $tea.cast<DeleteAlarmResponse>(await this.callApi(params, req, runtime), new DeleteAlarmResponse({}));
|
|
40885
40948
|
}
|
|
40886
40949
|
|
|
40887
40950
|
/**
|
|
@@ -40944,12 +41007,7 @@ export default class Client extends OpenApi {
|
|
|
40944
41007
|
reqBodyType: "formData",
|
|
40945
41008
|
bodyType: "json",
|
|
40946
41009
|
});
|
|
40947
|
-
|
|
40948
|
-
return $tea.cast<DeleteEciScalingConfigurationResponse>(await this.callApi(params, req, runtime), new DeleteEciScalingConfigurationResponse({}));
|
|
40949
|
-
} else {
|
|
40950
|
-
return $tea.cast<DeleteEciScalingConfigurationResponse>(await this.execute(params, req, runtime), new DeleteEciScalingConfigurationResponse({}));
|
|
40951
|
-
}
|
|
40952
|
-
|
|
41010
|
+
return $tea.cast<DeleteEciScalingConfigurationResponse>(await this.callApi(params, req, runtime), new DeleteEciScalingConfigurationResponse({}));
|
|
40953
41011
|
}
|
|
40954
41012
|
|
|
40955
41013
|
/**
|
|
@@ -41025,12 +41083,7 @@ export default class Client extends OpenApi {
|
|
|
41025
41083
|
reqBodyType: "formData",
|
|
41026
41084
|
bodyType: "json",
|
|
41027
41085
|
});
|
|
41028
|
-
|
|
41029
|
-
return $tea.cast<DeleteLifecycleHookResponse>(await this.callApi(params, req, runtime), new DeleteLifecycleHookResponse({}));
|
|
41030
|
-
} else {
|
|
41031
|
-
return $tea.cast<DeleteLifecycleHookResponse>(await this.execute(params, req, runtime), new DeleteLifecycleHookResponse({}));
|
|
41032
|
-
}
|
|
41033
|
-
|
|
41086
|
+
return $tea.cast<DeleteLifecycleHookResponse>(await this.callApi(params, req, runtime), new DeleteLifecycleHookResponse({}));
|
|
41034
41087
|
}
|
|
41035
41088
|
|
|
41036
41089
|
/**
|
|
@@ -41093,12 +41146,7 @@ export default class Client extends OpenApi {
|
|
|
41093
41146
|
reqBodyType: "formData",
|
|
41094
41147
|
bodyType: "json",
|
|
41095
41148
|
});
|
|
41096
|
-
|
|
41097
|
-
return $tea.cast<DeleteNotificationConfigurationResponse>(await this.callApi(params, req, runtime), new DeleteNotificationConfigurationResponse({}));
|
|
41098
|
-
} else {
|
|
41099
|
-
return $tea.cast<DeleteNotificationConfigurationResponse>(await this.execute(params, req, runtime), new DeleteNotificationConfigurationResponse({}));
|
|
41100
|
-
}
|
|
41101
|
-
|
|
41149
|
+
return $tea.cast<DeleteNotificationConfigurationResponse>(await this.callApi(params, req, runtime), new DeleteNotificationConfigurationResponse({}));
|
|
41102
41150
|
}
|
|
41103
41151
|
|
|
41104
41152
|
/**
|
|
@@ -41157,12 +41205,7 @@ export default class Client extends OpenApi {
|
|
|
41157
41205
|
reqBodyType: "formData",
|
|
41158
41206
|
bodyType: "json",
|
|
41159
41207
|
});
|
|
41160
|
-
|
|
41161
|
-
return $tea.cast<DeleteScalingConfigurationResponse>(await this.callApi(params, req, runtime), new DeleteScalingConfigurationResponse({}));
|
|
41162
|
-
} else {
|
|
41163
|
-
return $tea.cast<DeleteScalingConfigurationResponse>(await this.execute(params, req, runtime), new DeleteScalingConfigurationResponse({}));
|
|
41164
|
-
}
|
|
41165
|
-
|
|
41208
|
+
return $tea.cast<DeleteScalingConfigurationResponse>(await this.callApi(params, req, runtime), new DeleteScalingConfigurationResponse({}));
|
|
41166
41209
|
}
|
|
41167
41210
|
|
|
41168
41211
|
/**
|
|
@@ -41241,12 +41284,7 @@ export default class Client extends OpenApi {
|
|
|
41241
41284
|
reqBodyType: "formData",
|
|
41242
41285
|
bodyType: "json",
|
|
41243
41286
|
});
|
|
41244
|
-
|
|
41245
|
-
return $tea.cast<DeleteScalingGroupResponse>(await this.callApi(params, req, runtime), new DeleteScalingGroupResponse({}));
|
|
41246
|
-
} else {
|
|
41247
|
-
return $tea.cast<DeleteScalingGroupResponse>(await this.execute(params, req, runtime), new DeleteScalingGroupResponse({}));
|
|
41248
|
-
}
|
|
41249
|
-
|
|
41287
|
+
return $tea.cast<DeleteScalingGroupResponse>(await this.callApi(params, req, runtime), new DeleteScalingGroupResponse({}));
|
|
41250
41288
|
}
|
|
41251
41289
|
|
|
41252
41290
|
/**
|
|
@@ -41316,12 +41354,7 @@ export default class Client extends OpenApi {
|
|
|
41316
41354
|
reqBodyType: "formData",
|
|
41317
41355
|
bodyType: "json",
|
|
41318
41356
|
});
|
|
41319
|
-
|
|
41320
|
-
return $tea.cast<DeleteScalingRuleResponse>(await this.callApi(params, req, runtime), new DeleteScalingRuleResponse({}));
|
|
41321
|
-
} else {
|
|
41322
|
-
return $tea.cast<DeleteScalingRuleResponse>(await this.execute(params, req, runtime), new DeleteScalingRuleResponse({}));
|
|
41323
|
-
}
|
|
41324
|
-
|
|
41357
|
+
return $tea.cast<DeleteScalingRuleResponse>(await this.callApi(params, req, runtime), new DeleteScalingRuleResponse({}));
|
|
41325
41358
|
}
|
|
41326
41359
|
|
|
41327
41360
|
/**
|
|
@@ -41379,12 +41412,7 @@ export default class Client extends OpenApi {
|
|
|
41379
41412
|
reqBodyType: "formData",
|
|
41380
41413
|
bodyType: "json",
|
|
41381
41414
|
});
|
|
41382
|
-
|
|
41383
|
-
return $tea.cast<DeleteScheduledTaskResponse>(await this.callApi(params, req, runtime), new DeleteScheduledTaskResponse({}));
|
|
41384
|
-
} else {
|
|
41385
|
-
return $tea.cast<DeleteScheduledTaskResponse>(await this.execute(params, req, runtime), new DeleteScheduledTaskResponse({}));
|
|
41386
|
-
}
|
|
41387
|
-
|
|
41415
|
+
return $tea.cast<DeleteScheduledTaskResponse>(await this.callApi(params, req, runtime), new DeleteScheduledTaskResponse({}));
|
|
41388
41416
|
}
|
|
41389
41417
|
|
|
41390
41418
|
/**
|
|
@@ -41466,12 +41494,7 @@ export default class Client extends OpenApi {
|
|
|
41466
41494
|
reqBodyType: "formData",
|
|
41467
41495
|
bodyType: "json",
|
|
41468
41496
|
});
|
|
41469
|
-
|
|
41470
|
-
return $tea.cast<DescribeAlarmsResponse>(await this.callApi(params, req, runtime), new DescribeAlarmsResponse({}));
|
|
41471
|
-
} else {
|
|
41472
|
-
return $tea.cast<DescribeAlarmsResponse>(await this.execute(params, req, runtime), new DescribeAlarmsResponse({}));
|
|
41473
|
-
}
|
|
41474
|
-
|
|
41497
|
+
return $tea.cast<DescribeAlarmsResponse>(await this.callApi(params, req, runtime), new DescribeAlarmsResponse({}));
|
|
41475
41498
|
}
|
|
41476
41499
|
|
|
41477
41500
|
/**
|
|
@@ -41525,12 +41548,7 @@ export default class Client extends OpenApi {
|
|
|
41525
41548
|
reqBodyType: "formData",
|
|
41526
41549
|
bodyType: "json",
|
|
41527
41550
|
});
|
|
41528
|
-
|
|
41529
|
-
return $tea.cast<DescribeAlertConfigurationResponse>(await this.callApi(params, req, runtime), new DescribeAlertConfigurationResponse({}));
|
|
41530
|
-
} else {
|
|
41531
|
-
return $tea.cast<DescribeAlertConfigurationResponse>(await this.execute(params, req, runtime), new DescribeAlertConfigurationResponse({}));
|
|
41532
|
-
}
|
|
41533
|
-
|
|
41551
|
+
return $tea.cast<DescribeAlertConfigurationResponse>(await this.callApi(params, req, runtime), new DescribeAlertConfigurationResponse({}));
|
|
41534
41552
|
}
|
|
41535
41553
|
|
|
41536
41554
|
/**
|
|
@@ -41568,12 +41586,7 @@ export default class Client extends OpenApi {
|
|
|
41568
41586
|
reqBodyType: "formData",
|
|
41569
41587
|
bodyType: "json",
|
|
41570
41588
|
});
|
|
41571
|
-
|
|
41572
|
-
return $tea.cast<DescribeDiagnoseReportsResponse>(await this.callApi(params, req, runtime), new DescribeDiagnoseReportsResponse({}));
|
|
41573
|
-
} else {
|
|
41574
|
-
return $tea.cast<DescribeDiagnoseReportsResponse>(await this.execute(params, req, runtime), new DescribeDiagnoseReportsResponse({}));
|
|
41575
|
-
}
|
|
41576
|
-
|
|
41589
|
+
return $tea.cast<DescribeDiagnoseReportsResponse>(await this.callApi(params, req, runtime), new DescribeDiagnoseReportsResponse({}));
|
|
41577
41590
|
}
|
|
41578
41591
|
|
|
41579
41592
|
/**
|
|
@@ -41627,12 +41640,7 @@ export default class Client extends OpenApi {
|
|
|
41627
41640
|
reqBodyType: "formData",
|
|
41628
41641
|
bodyType: "json",
|
|
41629
41642
|
});
|
|
41630
|
-
|
|
41631
|
-
return $tea.cast<DescribeEciScalingConfigurationDetailResponse>(await this.callApi(params, req, runtime), new DescribeEciScalingConfigurationDetailResponse({}));
|
|
41632
|
-
} else {
|
|
41633
|
-
return $tea.cast<DescribeEciScalingConfigurationDetailResponse>(await this.execute(params, req, runtime), new DescribeEciScalingConfigurationDetailResponse({}));
|
|
41634
|
-
}
|
|
41635
|
-
|
|
41643
|
+
return $tea.cast<DescribeEciScalingConfigurationDetailResponse>(await this.callApi(params, req, runtime), new DescribeEciScalingConfigurationDetailResponse({}));
|
|
41636
41644
|
}
|
|
41637
41645
|
|
|
41638
41646
|
/**
|
|
@@ -41710,12 +41718,7 @@ export default class Client extends OpenApi {
|
|
|
41710
41718
|
reqBodyType: "formData",
|
|
41711
41719
|
bodyType: "json",
|
|
41712
41720
|
});
|
|
41713
|
-
|
|
41714
|
-
return $tea.cast<DescribeEciScalingConfigurationsResponse>(await this.callApi(params, req, runtime), new DescribeEciScalingConfigurationsResponse({}));
|
|
41715
|
-
} else {
|
|
41716
|
-
return $tea.cast<DescribeEciScalingConfigurationsResponse>(await this.execute(params, req, runtime), new DescribeEciScalingConfigurationsResponse({}));
|
|
41717
|
-
}
|
|
41718
|
-
|
|
41721
|
+
return $tea.cast<DescribeEciScalingConfigurationsResponse>(await this.callApi(params, req, runtime), new DescribeEciScalingConfigurationsResponse({}));
|
|
41719
41722
|
}
|
|
41720
41723
|
|
|
41721
41724
|
/**
|
|
@@ -41753,12 +41756,7 @@ export default class Client extends OpenApi {
|
|
|
41753
41756
|
reqBodyType: "formData",
|
|
41754
41757
|
bodyType: "json",
|
|
41755
41758
|
});
|
|
41756
|
-
|
|
41757
|
-
return $tea.cast<DescribeElasticStrengthResponse>(await this.callApi(params, req, runtime), new DescribeElasticStrengthResponse({}));
|
|
41758
|
-
} else {
|
|
41759
|
-
return $tea.cast<DescribeElasticStrengthResponse>(await this.execute(params, req, runtime), new DescribeElasticStrengthResponse({}));
|
|
41760
|
-
}
|
|
41761
|
-
|
|
41759
|
+
return $tea.cast<DescribeElasticStrengthResponse>(await this.callApi(params, req, runtime), new DescribeElasticStrengthResponse({}));
|
|
41762
41760
|
}
|
|
41763
41761
|
|
|
41764
41762
|
/**
|
|
@@ -41832,12 +41830,7 @@ export default class Client extends OpenApi {
|
|
|
41832
41830
|
reqBodyType: "formData",
|
|
41833
41831
|
bodyType: "json",
|
|
41834
41832
|
});
|
|
41835
|
-
|
|
41836
|
-
return $tea.cast<DescribeInstanceRefreshesResponse>(await this.callApi(params, req, runtime), new DescribeInstanceRefreshesResponse({}));
|
|
41837
|
-
} else {
|
|
41838
|
-
return $tea.cast<DescribeInstanceRefreshesResponse>(await this.execute(params, req, runtime), new DescribeInstanceRefreshesResponse({}));
|
|
41839
|
-
}
|
|
41840
|
-
|
|
41833
|
+
return $tea.cast<DescribeInstanceRefreshesResponse>(await this.callApi(params, req, runtime), new DescribeInstanceRefreshesResponse({}));
|
|
41841
41834
|
}
|
|
41842
41835
|
|
|
41843
41836
|
/**
|
|
@@ -41910,12 +41903,7 @@ export default class Client extends OpenApi {
|
|
|
41910
41903
|
reqBodyType: "formData",
|
|
41911
41904
|
bodyType: "json",
|
|
41912
41905
|
});
|
|
41913
|
-
|
|
41914
|
-
return $tea.cast<DescribeLifecycleActionsResponse>(await this.callApi(params, req, runtime), new DescribeLifecycleActionsResponse({}));
|
|
41915
|
-
} else {
|
|
41916
|
-
return $tea.cast<DescribeLifecycleActionsResponse>(await this.execute(params, req, runtime), new DescribeLifecycleActionsResponse({}));
|
|
41917
|
-
}
|
|
41918
|
-
|
|
41906
|
+
return $tea.cast<DescribeLifecycleActionsResponse>(await this.callApi(params, req, runtime), new DescribeLifecycleActionsResponse({}));
|
|
41919
41907
|
}
|
|
41920
41908
|
|
|
41921
41909
|
/**
|
|
@@ -42002,12 +41990,7 @@ export default class Client extends OpenApi {
|
|
|
42002
41990
|
reqBodyType: "formData",
|
|
42003
41991
|
bodyType: "json",
|
|
42004
41992
|
});
|
|
42005
|
-
|
|
42006
|
-
return $tea.cast<DescribeLifecycleHooksResponse>(await this.callApi(params, req, runtime), new DescribeLifecycleHooksResponse({}));
|
|
42007
|
-
} else {
|
|
42008
|
-
return $tea.cast<DescribeLifecycleHooksResponse>(await this.execute(params, req, runtime), new DescribeLifecycleHooksResponse({}));
|
|
42009
|
-
}
|
|
42010
|
-
|
|
41993
|
+
return $tea.cast<DescribeLifecycleHooksResponse>(await this.callApi(params, req, runtime), new DescribeLifecycleHooksResponse({}));
|
|
42011
41994
|
}
|
|
42012
41995
|
|
|
42013
41996
|
/**
|
|
@@ -42059,12 +42042,7 @@ export default class Client extends OpenApi {
|
|
|
42059
42042
|
reqBodyType: "formData",
|
|
42060
42043
|
bodyType: "json",
|
|
42061
42044
|
});
|
|
42062
|
-
|
|
42063
|
-
return $tea.cast<DescribeLimitationResponse>(await this.callApi(params, req, runtime), new DescribeLimitationResponse({}));
|
|
42064
|
-
} else {
|
|
42065
|
-
return $tea.cast<DescribeLimitationResponse>(await this.execute(params, req, runtime), new DescribeLimitationResponse({}));
|
|
42066
|
-
}
|
|
42067
|
-
|
|
42045
|
+
return $tea.cast<DescribeLimitationResponse>(await this.callApi(params, req, runtime), new DescribeLimitationResponse({}));
|
|
42068
42046
|
}
|
|
42069
42047
|
|
|
42070
42048
|
/**
|
|
@@ -42118,12 +42096,7 @@ export default class Client extends OpenApi {
|
|
|
42118
42096
|
reqBodyType: "formData",
|
|
42119
42097
|
bodyType: "json",
|
|
42120
42098
|
});
|
|
42121
|
-
|
|
42122
|
-
return $tea.cast<DescribeNotificationConfigurationsResponse>(await this.callApi(params, req, runtime), new DescribeNotificationConfigurationsResponse({}));
|
|
42123
|
-
} else {
|
|
42124
|
-
return $tea.cast<DescribeNotificationConfigurationsResponse>(await this.execute(params, req, runtime), new DescribeNotificationConfigurationsResponse({}));
|
|
42125
|
-
}
|
|
42126
|
-
|
|
42099
|
+
return $tea.cast<DescribeNotificationConfigurationsResponse>(await this.callApi(params, req, runtime), new DescribeNotificationConfigurationsResponse({}));
|
|
42127
42100
|
}
|
|
42128
42101
|
|
|
42129
42102
|
/**
|
|
@@ -42169,12 +42142,7 @@ export default class Client extends OpenApi {
|
|
|
42169
42142
|
reqBodyType: "formData",
|
|
42170
42143
|
bodyType: "json",
|
|
42171
42144
|
});
|
|
42172
|
-
|
|
42173
|
-
return $tea.cast<DescribeNotificationTypesResponse>(await this.callApi(params, req, runtime), new DescribeNotificationTypesResponse({}));
|
|
42174
|
-
} else {
|
|
42175
|
-
return $tea.cast<DescribeNotificationTypesResponse>(await this.execute(params, req, runtime), new DescribeNotificationTypesResponse({}));
|
|
42176
|
-
}
|
|
42177
|
-
|
|
42145
|
+
return $tea.cast<DescribeNotificationTypesResponse>(await this.callApi(params, req, runtime), new DescribeNotificationTypesResponse({}));
|
|
42178
42146
|
}
|
|
42179
42147
|
|
|
42180
42148
|
/**
|
|
@@ -42212,12 +42180,7 @@ export default class Client extends OpenApi {
|
|
|
42212
42180
|
reqBodyType: "formData",
|
|
42213
42181
|
bodyType: "json",
|
|
42214
42182
|
});
|
|
42215
|
-
|
|
42216
|
-
return $tea.cast<DescribePatternTypesResponse>(await this.callApi(params, req, runtime), new DescribePatternTypesResponse({}));
|
|
42217
|
-
} else {
|
|
42218
|
-
return $tea.cast<DescribePatternTypesResponse>(await this.execute(params, req, runtime), new DescribePatternTypesResponse({}));
|
|
42219
|
-
}
|
|
42220
|
-
|
|
42183
|
+
return $tea.cast<DescribePatternTypesResponse>(await this.callApi(params, req, runtime), new DescribePatternTypesResponse({}));
|
|
42221
42184
|
}
|
|
42222
42185
|
|
|
42223
42186
|
/**
|
|
@@ -42271,12 +42234,7 @@ export default class Client extends OpenApi {
|
|
|
42271
42234
|
reqBodyType: "formData",
|
|
42272
42235
|
bodyType: "json",
|
|
42273
42236
|
});
|
|
42274
|
-
|
|
42275
|
-
return $tea.cast<DescribeRegionsResponse>(await this.callApi(params, req, runtime), new DescribeRegionsResponse({}));
|
|
42276
|
-
} else {
|
|
42277
|
-
return $tea.cast<DescribeRegionsResponse>(await this.execute(params, req, runtime), new DescribeRegionsResponse({}));
|
|
42278
|
-
}
|
|
42279
|
-
|
|
42237
|
+
return $tea.cast<DescribeRegionsResponse>(await this.callApi(params, req, runtime), new DescribeRegionsResponse({}));
|
|
42280
42238
|
}
|
|
42281
42239
|
|
|
42282
42240
|
/**
|
|
@@ -42363,12 +42321,7 @@ export default class Client extends OpenApi {
|
|
|
42363
42321
|
reqBodyType: "formData",
|
|
42364
42322
|
bodyType: "json",
|
|
42365
42323
|
});
|
|
42366
|
-
|
|
42367
|
-
return $tea.cast<DescribeScalingActivitiesResponse>(await this.callApi(params, req, runtime), new DescribeScalingActivitiesResponse({}));
|
|
42368
|
-
} else {
|
|
42369
|
-
return $tea.cast<DescribeScalingActivitiesResponse>(await this.execute(params, req, runtime), new DescribeScalingActivitiesResponse({}));
|
|
42370
|
-
}
|
|
42371
|
-
|
|
42324
|
+
return $tea.cast<DescribeScalingActivitiesResponse>(await this.callApi(params, req, runtime), new DescribeScalingActivitiesResponse({}));
|
|
42372
42325
|
}
|
|
42373
42326
|
|
|
42374
42327
|
/**
|
|
@@ -42427,12 +42380,7 @@ export default class Client extends OpenApi {
|
|
|
42427
42380
|
reqBodyType: "formData",
|
|
42428
42381
|
bodyType: "json",
|
|
42429
42382
|
});
|
|
42430
|
-
|
|
42431
|
-
return $tea.cast<DescribeScalingActivityDetailResponse>(await this.callApi(params, req, runtime), new DescribeScalingActivityDetailResponse({}));
|
|
42432
|
-
} else {
|
|
42433
|
-
return $tea.cast<DescribeScalingActivityDetailResponse>(await this.execute(params, req, runtime), new DescribeScalingActivityDetailResponse({}));
|
|
42434
|
-
}
|
|
42435
|
-
|
|
42383
|
+
return $tea.cast<DescribeScalingActivityDetailResponse>(await this.callApi(params, req, runtime), new DescribeScalingActivityDetailResponse({}));
|
|
42436
42384
|
}
|
|
42437
42385
|
|
|
42438
42386
|
/**
|
|
@@ -42510,12 +42458,7 @@ export default class Client extends OpenApi {
|
|
|
42510
42458
|
reqBodyType: "formData",
|
|
42511
42459
|
bodyType: "json",
|
|
42512
42460
|
});
|
|
42513
|
-
|
|
42514
|
-
return $tea.cast<DescribeScalingConfigurationsResponse>(await this.callApi(params, req, runtime), new DescribeScalingConfigurationsResponse({}));
|
|
42515
|
-
} else {
|
|
42516
|
-
return $tea.cast<DescribeScalingConfigurationsResponse>(await this.execute(params, req, runtime), new DescribeScalingConfigurationsResponse({}));
|
|
42517
|
-
}
|
|
42518
|
-
|
|
42461
|
+
return $tea.cast<DescribeScalingConfigurationsResponse>(await this.callApi(params, req, runtime), new DescribeScalingConfigurationsResponse({}));
|
|
42519
42462
|
}
|
|
42520
42463
|
|
|
42521
42464
|
/**
|
|
@@ -42569,12 +42512,7 @@ export default class Client extends OpenApi {
|
|
|
42569
42512
|
reqBodyType: "formData",
|
|
42570
42513
|
bodyType: "json",
|
|
42571
42514
|
});
|
|
42572
|
-
|
|
42573
|
-
return $tea.cast<DescribeScalingGroupDetailResponse>(await this.callApi(params, req, runtime), new DescribeScalingGroupDetailResponse({}));
|
|
42574
|
-
} else {
|
|
42575
|
-
return $tea.cast<DescribeScalingGroupDetailResponse>(await this.execute(params, req, runtime), new DescribeScalingGroupDetailResponse({}));
|
|
42576
|
-
}
|
|
42577
|
-
|
|
42515
|
+
return $tea.cast<DescribeScalingGroupDetailResponse>(await this.callApi(params, req, runtime), new DescribeScalingGroupDetailResponse({}));
|
|
42578
42516
|
}
|
|
42579
42517
|
|
|
42580
42518
|
/**
|
|
@@ -42612,12 +42550,7 @@ export default class Client extends OpenApi {
|
|
|
42612
42550
|
reqBodyType: "formData",
|
|
42613
42551
|
bodyType: "json",
|
|
42614
42552
|
});
|
|
42615
|
-
|
|
42616
|
-
return $tea.cast<DescribeScalingGroupDiagnoseDetailsResponse>(await this.callApi(params, req, runtime), new DescribeScalingGroupDiagnoseDetailsResponse({}));
|
|
42617
|
-
} else {
|
|
42618
|
-
return $tea.cast<DescribeScalingGroupDiagnoseDetailsResponse>(await this.execute(params, req, runtime), new DescribeScalingGroupDiagnoseDetailsResponse({}));
|
|
42619
|
-
}
|
|
42620
|
-
|
|
42553
|
+
return $tea.cast<DescribeScalingGroupDiagnoseDetailsResponse>(await this.callApi(params, req, runtime), new DescribeScalingGroupDiagnoseDetailsResponse({}));
|
|
42621
42554
|
}
|
|
42622
42555
|
|
|
42623
42556
|
/**
|
|
@@ -42707,12 +42640,7 @@ export default class Client extends OpenApi {
|
|
|
42707
42640
|
reqBodyType: "formData",
|
|
42708
42641
|
bodyType: "json",
|
|
42709
42642
|
});
|
|
42710
|
-
|
|
42711
|
-
return $tea.cast<DescribeScalingGroupsResponse>(await this.callApi(params, req, runtime), new DescribeScalingGroupsResponse({}));
|
|
42712
|
-
} else {
|
|
42713
|
-
return $tea.cast<DescribeScalingGroupsResponse>(await this.execute(params, req, runtime), new DescribeScalingGroupsResponse({}));
|
|
42714
|
-
}
|
|
42715
|
-
|
|
42643
|
+
return $tea.cast<DescribeScalingGroupsResponse>(await this.callApi(params, req, runtime), new DescribeScalingGroupsResponse({}));
|
|
42716
42644
|
}
|
|
42717
42645
|
|
|
42718
42646
|
/**
|
|
@@ -42814,12 +42742,7 @@ export default class Client extends OpenApi {
|
|
|
42814
42742
|
reqBodyType: "formData",
|
|
42815
42743
|
bodyType: "json",
|
|
42816
42744
|
});
|
|
42817
|
-
|
|
42818
|
-
return $tea.cast<DescribeScalingInstancesResponse>(await this.callApi(params, req, runtime), new DescribeScalingInstancesResponse({}));
|
|
42819
|
-
} else {
|
|
42820
|
-
return $tea.cast<DescribeScalingInstancesResponse>(await this.execute(params, req, runtime), new DescribeScalingInstancesResponse({}));
|
|
42821
|
-
}
|
|
42822
|
-
|
|
42745
|
+
return $tea.cast<DescribeScalingInstancesResponse>(await this.callApi(params, req, runtime), new DescribeScalingInstancesResponse({}));
|
|
42823
42746
|
}
|
|
42824
42747
|
|
|
42825
42748
|
/**
|
|
@@ -42912,12 +42835,7 @@ export default class Client extends OpenApi {
|
|
|
42912
42835
|
reqBodyType: "formData",
|
|
42913
42836
|
bodyType: "json",
|
|
42914
42837
|
});
|
|
42915
|
-
|
|
42916
|
-
return $tea.cast<DescribeScalingRulesResponse>(await this.callApi(params, req, runtime), new DescribeScalingRulesResponse({}));
|
|
42917
|
-
} else {
|
|
42918
|
-
return $tea.cast<DescribeScalingRulesResponse>(await this.execute(params, req, runtime), new DescribeScalingRulesResponse({}));
|
|
42919
|
-
}
|
|
42920
|
-
|
|
42838
|
+
return $tea.cast<DescribeScalingRulesResponse>(await this.callApi(params, req, runtime), new DescribeScalingRulesResponse({}));
|
|
42921
42839
|
}
|
|
42922
42840
|
|
|
42923
42841
|
/**
|
|
@@ -43021,12 +42939,7 @@ export default class Client extends OpenApi {
|
|
|
43021
42939
|
reqBodyType: "formData",
|
|
43022
42940
|
bodyType: "json",
|
|
43023
42941
|
});
|
|
43024
|
-
|
|
43025
|
-
return $tea.cast<DescribeScheduledTasksResponse>(await this.callApi(params, req, runtime), new DescribeScheduledTasksResponse({}));
|
|
43026
|
-
} else {
|
|
43027
|
-
return $tea.cast<DescribeScheduledTasksResponse>(await this.execute(params, req, runtime), new DescribeScheduledTasksResponse({}));
|
|
43028
|
-
}
|
|
43029
|
-
|
|
42942
|
+
return $tea.cast<DescribeScheduledTasksResponse>(await this.callApi(params, req, runtime), new DescribeScheduledTasksResponse({}));
|
|
43030
42943
|
}
|
|
43031
42944
|
|
|
43032
42945
|
/**
|
|
@@ -43095,12 +43008,7 @@ export default class Client extends OpenApi {
|
|
|
43095
43008
|
reqBodyType: "formData",
|
|
43096
43009
|
bodyType: "json",
|
|
43097
43010
|
});
|
|
43098
|
-
|
|
43099
|
-
return $tea.cast<DetachAlbServerGroupsResponse>(await this.callApi(params, req, runtime), new DetachAlbServerGroupsResponse({}));
|
|
43100
|
-
} else {
|
|
43101
|
-
return $tea.cast<DetachAlbServerGroupsResponse>(await this.execute(params, req, runtime), new DetachAlbServerGroupsResponse({}));
|
|
43102
|
-
}
|
|
43103
|
-
|
|
43011
|
+
return $tea.cast<DetachAlbServerGroupsResponse>(await this.callApi(params, req, runtime), new DetachAlbServerGroupsResponse({}));
|
|
43104
43012
|
}
|
|
43105
43013
|
|
|
43106
43014
|
/**
|
|
@@ -43170,12 +43078,7 @@ export default class Client extends OpenApi {
|
|
|
43170
43078
|
reqBodyType: "formData",
|
|
43171
43079
|
bodyType: "json",
|
|
43172
43080
|
});
|
|
43173
|
-
|
|
43174
|
-
return $tea.cast<DetachDBInstancesResponse>(await this.callApi(params, req, runtime), new DetachDBInstancesResponse({}));
|
|
43175
|
-
} else {
|
|
43176
|
-
return $tea.cast<DetachDBInstancesResponse>(await this.execute(params, req, runtime), new DetachDBInstancesResponse({}));
|
|
43177
|
-
}
|
|
43178
|
-
|
|
43081
|
+
return $tea.cast<DetachDBInstancesResponse>(await this.callApi(params, req, runtime), new DetachDBInstancesResponse({}));
|
|
43179
43082
|
}
|
|
43180
43083
|
|
|
43181
43084
|
/**
|
|
@@ -43269,12 +43172,7 @@ export default class Client extends OpenApi {
|
|
|
43269
43172
|
reqBodyType: "formData",
|
|
43270
43173
|
bodyType: "json",
|
|
43271
43174
|
});
|
|
43272
|
-
|
|
43273
|
-
return $tea.cast<DetachInstancesResponse>(await this.callApi(params, req, runtime), new DetachInstancesResponse({}));
|
|
43274
|
-
} else {
|
|
43275
|
-
return $tea.cast<DetachInstancesResponse>(await this.execute(params, req, runtime), new DetachInstancesResponse({}));
|
|
43276
|
-
}
|
|
43277
|
-
|
|
43175
|
+
return $tea.cast<DetachInstancesResponse>(await this.callApi(params, req, runtime), new DetachInstancesResponse({}));
|
|
43278
43176
|
}
|
|
43279
43177
|
|
|
43280
43178
|
/**
|
|
@@ -43356,12 +43254,7 @@ export default class Client extends OpenApi {
|
|
|
43356
43254
|
reqBodyType: "formData",
|
|
43357
43255
|
bodyType: "json",
|
|
43358
43256
|
});
|
|
43359
|
-
|
|
43360
|
-
return $tea.cast<DetachLoadBalancersResponse>(await this.callApi(params, req, runtime), new DetachLoadBalancersResponse({}));
|
|
43361
|
-
} else {
|
|
43362
|
-
return $tea.cast<DetachLoadBalancersResponse>(await this.execute(params, req, runtime), new DetachLoadBalancersResponse({}));
|
|
43363
|
-
}
|
|
43364
|
-
|
|
43257
|
+
return $tea.cast<DetachLoadBalancersResponse>(await this.callApi(params, req, runtime), new DetachLoadBalancersResponse({}));
|
|
43365
43258
|
}
|
|
43366
43259
|
|
|
43367
43260
|
/**
|
|
@@ -43427,12 +43320,7 @@ export default class Client extends OpenApi {
|
|
|
43427
43320
|
reqBodyType: "formData",
|
|
43428
43321
|
bodyType: "json",
|
|
43429
43322
|
});
|
|
43430
|
-
|
|
43431
|
-
return $tea.cast<DetachServerGroupsResponse>(await this.callApi(params, req, runtime), new DetachServerGroupsResponse({}));
|
|
43432
|
-
} else {
|
|
43433
|
-
return $tea.cast<DetachServerGroupsResponse>(await this.execute(params, req, runtime), new DetachServerGroupsResponse({}));
|
|
43434
|
-
}
|
|
43435
|
-
|
|
43323
|
+
return $tea.cast<DetachServerGroupsResponse>(await this.callApi(params, req, runtime), new DetachServerGroupsResponse({}));
|
|
43436
43324
|
}
|
|
43437
43325
|
|
|
43438
43326
|
/**
|
|
@@ -43506,12 +43394,7 @@ export default class Client extends OpenApi {
|
|
|
43506
43394
|
reqBodyType: "formData",
|
|
43507
43395
|
bodyType: "json",
|
|
43508
43396
|
});
|
|
43509
|
-
|
|
43510
|
-
return $tea.cast<DetachVServerGroupsResponse>(await this.callApi(params, req, runtime), new DetachVServerGroupsResponse({}));
|
|
43511
|
-
} else {
|
|
43512
|
-
return $tea.cast<DetachVServerGroupsResponse>(await this.execute(params, req, runtime), new DetachVServerGroupsResponse({}));
|
|
43513
|
-
}
|
|
43514
|
-
|
|
43397
|
+
return $tea.cast<DetachVServerGroupsResponse>(await this.callApi(params, req, runtime), new DetachVServerGroupsResponse({}));
|
|
43515
43398
|
}
|
|
43516
43399
|
|
|
43517
43400
|
/**
|
|
@@ -43576,12 +43459,7 @@ export default class Client extends OpenApi {
|
|
|
43576
43459
|
reqBodyType: "formData",
|
|
43577
43460
|
bodyType: "json",
|
|
43578
43461
|
});
|
|
43579
|
-
|
|
43580
|
-
return $tea.cast<DisableAlarmResponse>(await this.callApi(params, req, runtime), new DisableAlarmResponse({}));
|
|
43581
|
-
} else {
|
|
43582
|
-
return $tea.cast<DisableAlarmResponse>(await this.execute(params, req, runtime), new DisableAlarmResponse({}));
|
|
43583
|
-
}
|
|
43584
|
-
|
|
43462
|
+
return $tea.cast<DisableAlarmResponse>(await this.callApi(params, req, runtime), new DisableAlarmResponse({}));
|
|
43585
43463
|
}
|
|
43586
43464
|
|
|
43587
43465
|
/**
|
|
@@ -43647,12 +43525,7 @@ export default class Client extends OpenApi {
|
|
|
43647
43525
|
reqBodyType: "formData",
|
|
43648
43526
|
bodyType: "json",
|
|
43649
43527
|
});
|
|
43650
|
-
|
|
43651
|
-
return $tea.cast<DisableScalingGroupResponse>(await this.callApi(params, req, runtime), new DisableScalingGroupResponse({}));
|
|
43652
|
-
} else {
|
|
43653
|
-
return $tea.cast<DisableScalingGroupResponse>(await this.execute(params, req, runtime), new DisableScalingGroupResponse({}));
|
|
43654
|
-
}
|
|
43655
|
-
|
|
43528
|
+
return $tea.cast<DisableScalingGroupResponse>(await this.callApi(params, req, runtime), new DisableScalingGroupResponse({}));
|
|
43656
43529
|
}
|
|
43657
43530
|
|
|
43658
43531
|
/**
|
|
@@ -43711,12 +43584,7 @@ export default class Client extends OpenApi {
|
|
|
43711
43584
|
reqBodyType: "formData",
|
|
43712
43585
|
bodyType: "json",
|
|
43713
43586
|
});
|
|
43714
|
-
|
|
43715
|
-
return $tea.cast<EnableAlarmResponse>(await this.callApi(params, req, runtime), new EnableAlarmResponse({}));
|
|
43716
|
-
} else {
|
|
43717
|
-
return $tea.cast<EnableAlarmResponse>(await this.execute(params, req, runtime), new EnableAlarmResponse({}));
|
|
43718
|
-
}
|
|
43719
|
-
|
|
43587
|
+
return $tea.cast<EnableAlarmResponse>(await this.callApi(params, req, runtime), new EnableAlarmResponse({}));
|
|
43720
43588
|
}
|
|
43721
43589
|
|
|
43722
43590
|
/**
|
|
@@ -43810,12 +43678,7 @@ export default class Client extends OpenApi {
|
|
|
43810
43678
|
reqBodyType: "formData",
|
|
43811
43679
|
bodyType: "json",
|
|
43812
43680
|
});
|
|
43813
|
-
|
|
43814
|
-
return $tea.cast<EnableScalingGroupResponse>(await this.callApi(params, req, runtime), new EnableScalingGroupResponse({}));
|
|
43815
|
-
} else {
|
|
43816
|
-
return $tea.cast<EnableScalingGroupResponse>(await this.execute(params, req, runtime), new EnableScalingGroupResponse({}));
|
|
43817
|
-
}
|
|
43818
|
-
|
|
43681
|
+
return $tea.cast<EnableScalingGroupResponse>(await this.callApi(params, req, runtime), new EnableScalingGroupResponse({}));
|
|
43819
43682
|
}
|
|
43820
43683
|
|
|
43821
43684
|
/**
|
|
@@ -43892,12 +43755,7 @@ export default class Client extends OpenApi {
|
|
|
43892
43755
|
reqBodyType: "formData",
|
|
43893
43756
|
bodyType: "json",
|
|
43894
43757
|
});
|
|
43895
|
-
|
|
43896
|
-
return $tea.cast<EnterStandbyResponse>(await this.callApi(params, req, runtime), new EnterStandbyResponse({}));
|
|
43897
|
-
} else {
|
|
43898
|
-
return $tea.cast<EnterStandbyResponse>(await this.execute(params, req, runtime), new EnterStandbyResponse({}));
|
|
43899
|
-
}
|
|
43900
|
-
|
|
43758
|
+
return $tea.cast<EnterStandbyResponse>(await this.callApi(params, req, runtime), new EnterStandbyResponse({}));
|
|
43901
43759
|
}
|
|
43902
43760
|
|
|
43903
43761
|
/**
|
|
@@ -43988,12 +43846,7 @@ export default class Client extends OpenApi {
|
|
|
43988
43846
|
reqBodyType: "formData",
|
|
43989
43847
|
bodyType: "json",
|
|
43990
43848
|
});
|
|
43991
|
-
|
|
43992
|
-
return $tea.cast<ExecuteScalingRuleResponse>(await this.callApi(params, req, runtime), new ExecuteScalingRuleResponse({}));
|
|
43993
|
-
} else {
|
|
43994
|
-
return $tea.cast<ExecuteScalingRuleResponse>(await this.execute(params, req, runtime), new ExecuteScalingRuleResponse({}));
|
|
43995
|
-
}
|
|
43996
|
-
|
|
43849
|
+
return $tea.cast<ExecuteScalingRuleResponse>(await this.callApi(params, req, runtime), new ExecuteScalingRuleResponse({}));
|
|
43997
43850
|
}
|
|
43998
43851
|
|
|
43999
43852
|
/**
|
|
@@ -44076,12 +43929,7 @@ export default class Client extends OpenApi {
|
|
|
44076
43929
|
reqBodyType: "formData",
|
|
44077
43930
|
bodyType: "json",
|
|
44078
43931
|
});
|
|
44079
|
-
|
|
44080
|
-
return $tea.cast<ExitStandbyResponse>(await this.callApi(params, req, runtime), new ExitStandbyResponse({}));
|
|
44081
|
-
} else {
|
|
44082
|
-
return $tea.cast<ExitStandbyResponse>(await this.execute(params, req, runtime), new ExitStandbyResponse({}));
|
|
44083
|
-
}
|
|
44084
|
-
|
|
43932
|
+
return $tea.cast<ExitStandbyResponse>(await this.callApi(params, req, runtime), new ExitStandbyResponse({}));
|
|
44085
43933
|
}
|
|
44086
43934
|
|
|
44087
43935
|
/**
|
|
@@ -44150,12 +43998,7 @@ export default class Client extends OpenApi {
|
|
|
44150
43998
|
reqBodyType: "formData",
|
|
44151
43999
|
bodyType: "json",
|
|
44152
44000
|
});
|
|
44153
|
-
|
|
44154
|
-
return $tea.cast<ListTagKeysResponse>(await this.callApi(params, req, runtime), new ListTagKeysResponse({}));
|
|
44155
|
-
} else {
|
|
44156
|
-
return $tea.cast<ListTagKeysResponse>(await this.execute(params, req, runtime), new ListTagKeysResponse({}));
|
|
44157
|
-
}
|
|
44158
|
-
|
|
44001
|
+
return $tea.cast<ListTagKeysResponse>(await this.callApi(params, req, runtime), new ListTagKeysResponse({}));
|
|
44159
44002
|
}
|
|
44160
44003
|
|
|
44161
44004
|
/**
|
|
@@ -44225,12 +44068,7 @@ export default class Client extends OpenApi {
|
|
|
44225
44068
|
reqBodyType: "formData",
|
|
44226
44069
|
bodyType: "json",
|
|
44227
44070
|
});
|
|
44228
|
-
|
|
44229
|
-
return $tea.cast<ListTagResourcesResponse>(await this.callApi(params, req, runtime), new ListTagResourcesResponse({}));
|
|
44230
|
-
} else {
|
|
44231
|
-
return $tea.cast<ListTagResourcesResponse>(await this.execute(params, req, runtime), new ListTagResourcesResponse({}));
|
|
44232
|
-
}
|
|
44233
|
-
|
|
44071
|
+
return $tea.cast<ListTagResourcesResponse>(await this.callApi(params, req, runtime), new ListTagResourcesResponse({}));
|
|
44234
44072
|
}
|
|
44235
44073
|
|
|
44236
44074
|
/**
|
|
@@ -44300,12 +44138,7 @@ export default class Client extends OpenApi {
|
|
|
44300
44138
|
reqBodyType: "formData",
|
|
44301
44139
|
bodyType: "json",
|
|
44302
44140
|
});
|
|
44303
|
-
|
|
44304
|
-
return $tea.cast<ListTagValuesResponse>(await this.callApi(params, req, runtime), new ListTagValuesResponse({}));
|
|
44305
|
-
} else {
|
|
44306
|
-
return $tea.cast<ListTagValuesResponse>(await this.execute(params, req, runtime), new ListTagValuesResponse({}));
|
|
44307
|
-
}
|
|
44308
|
-
|
|
44141
|
+
return $tea.cast<ListTagValuesResponse>(await this.callApi(params, req, runtime), new ListTagValuesResponse({}));
|
|
44309
44142
|
}
|
|
44310
44143
|
|
|
44311
44144
|
/**
|
|
@@ -44426,12 +44259,7 @@ export default class Client extends OpenApi {
|
|
|
44426
44259
|
reqBodyType: "formData",
|
|
44427
44260
|
bodyType: "json",
|
|
44428
44261
|
});
|
|
44429
|
-
|
|
44430
|
-
return $tea.cast<ModifyAlarmResponse>(await this.callApi(params, req, runtime), new ModifyAlarmResponse({}));
|
|
44431
|
-
} else {
|
|
44432
|
-
return $tea.cast<ModifyAlarmResponse>(await this.execute(params, req, runtime), new ModifyAlarmResponse({}));
|
|
44433
|
-
}
|
|
44434
|
-
|
|
44262
|
+
return $tea.cast<ModifyAlarmResponse>(await this.callApi(params, req, runtime), new ModifyAlarmResponse({}));
|
|
44435
44263
|
}
|
|
44436
44264
|
|
|
44437
44265
|
/**
|
|
@@ -44496,12 +44324,7 @@ export default class Client extends OpenApi {
|
|
|
44496
44324
|
reqBodyType: "formData",
|
|
44497
44325
|
bodyType: "json",
|
|
44498
44326
|
});
|
|
44499
|
-
|
|
44500
|
-
return $tea.cast<ModifyAlertConfigurationResponse>(await this.callApi(params, req, runtime), new ModifyAlertConfigurationResponse({}));
|
|
44501
|
-
} else {
|
|
44502
|
-
return $tea.cast<ModifyAlertConfigurationResponse>(await this.execute(params, req, runtime), new ModifyAlertConfigurationResponse({}));
|
|
44503
|
-
}
|
|
44504
|
-
|
|
44327
|
+
return $tea.cast<ModifyAlertConfigurationResponse>(await this.callApi(params, req, runtime), new ModifyAlertConfigurationResponse({}));
|
|
44505
44328
|
}
|
|
44506
44329
|
|
|
44507
44330
|
/**
|
|
@@ -44747,12 +44570,7 @@ export default class Client extends OpenApi {
|
|
|
44747
44570
|
reqBodyType: "formData",
|
|
44748
44571
|
bodyType: "json",
|
|
44749
44572
|
});
|
|
44750
|
-
|
|
44751
|
-
return $tea.cast<ModifyEciScalingConfigurationResponse>(await this.callApi(params, req, runtime), new ModifyEciScalingConfigurationResponse({}));
|
|
44752
|
-
} else {
|
|
44753
|
-
return $tea.cast<ModifyEciScalingConfigurationResponse>(await this.execute(params, req, runtime), new ModifyEciScalingConfigurationResponse({}));
|
|
44754
|
-
}
|
|
44755
|
-
|
|
44573
|
+
return $tea.cast<ModifyEciScalingConfigurationResponse>(await this.callApi(params, req, runtime), new ModifyEciScalingConfigurationResponse({}));
|
|
44756
44574
|
}
|
|
44757
44575
|
|
|
44758
44576
|
/**
|
|
@@ -44818,12 +44636,7 @@ export default class Client extends OpenApi {
|
|
|
44818
44636
|
reqBodyType: "formData",
|
|
44819
44637
|
bodyType: "json",
|
|
44820
44638
|
});
|
|
44821
|
-
|
|
44822
|
-
return $tea.cast<ModifyInstanceAttributeResponse>(await this.callApi(params, req, runtime), new ModifyInstanceAttributeResponse({}));
|
|
44823
|
-
} else {
|
|
44824
|
-
return $tea.cast<ModifyInstanceAttributeResponse>(await this.execute(params, req, runtime), new ModifyInstanceAttributeResponse({}));
|
|
44825
|
-
}
|
|
44826
|
-
|
|
44639
|
+
return $tea.cast<ModifyInstanceAttributeResponse>(await this.callApi(params, req, runtime), new ModifyInstanceAttributeResponse({}));
|
|
44827
44640
|
}
|
|
44828
44641
|
|
|
44829
44642
|
/**
|
|
@@ -44918,12 +44731,7 @@ export default class Client extends OpenApi {
|
|
|
44918
44731
|
reqBodyType: "formData",
|
|
44919
44732
|
bodyType: "json",
|
|
44920
44733
|
});
|
|
44921
|
-
|
|
44922
|
-
return $tea.cast<ModifyLifecycleHookResponse>(await this.callApi(params, req, runtime), new ModifyLifecycleHookResponse({}));
|
|
44923
|
-
} else {
|
|
44924
|
-
return $tea.cast<ModifyLifecycleHookResponse>(await this.execute(params, req, runtime), new ModifyLifecycleHookResponse({}));
|
|
44925
|
-
}
|
|
44926
|
-
|
|
44734
|
+
return $tea.cast<ModifyLifecycleHookResponse>(await this.callApi(params, req, runtime), new ModifyLifecycleHookResponse({}));
|
|
44927
44735
|
}
|
|
44928
44736
|
|
|
44929
44737
|
/**
|
|
@@ -44994,12 +44802,7 @@ export default class Client extends OpenApi {
|
|
|
44994
44802
|
reqBodyType: "formData",
|
|
44995
44803
|
bodyType: "json",
|
|
44996
44804
|
});
|
|
44997
|
-
|
|
44998
|
-
return $tea.cast<ModifyNotificationConfigurationResponse>(await this.callApi(params, req, runtime), new ModifyNotificationConfigurationResponse({}));
|
|
44999
|
-
} else {
|
|
45000
|
-
return $tea.cast<ModifyNotificationConfigurationResponse>(await this.execute(params, req, runtime), new ModifyNotificationConfigurationResponse({}));
|
|
45001
|
-
}
|
|
45002
|
-
|
|
44805
|
+
return $tea.cast<ModifyNotificationConfigurationResponse>(await this.callApi(params, req, runtime), new ModifyNotificationConfigurationResponse({}));
|
|
45003
44806
|
}
|
|
45004
44807
|
|
|
45005
44808
|
/**
|
|
@@ -45281,12 +45084,7 @@ export default class Client extends OpenApi {
|
|
|
45281
45084
|
reqBodyType: "formData",
|
|
45282
45085
|
bodyType: "json",
|
|
45283
45086
|
});
|
|
45284
|
-
|
|
45285
|
-
return $tea.cast<ModifyScalingConfigurationResponse>(await this.callApi(params, req, runtime), new ModifyScalingConfigurationResponse({}));
|
|
45286
|
-
} else {
|
|
45287
|
-
return $tea.cast<ModifyScalingConfigurationResponse>(await this.execute(params, req, runtime), new ModifyScalingConfigurationResponse({}));
|
|
45288
|
-
}
|
|
45289
|
-
|
|
45087
|
+
return $tea.cast<ModifyScalingConfigurationResponse>(await this.callApi(params, req, runtime), new ModifyScalingConfigurationResponse({}));
|
|
45290
45088
|
}
|
|
45291
45089
|
|
|
45292
45090
|
/**
|
|
@@ -45481,12 +45279,7 @@ export default class Client extends OpenApi {
|
|
|
45481
45279
|
reqBodyType: "formData",
|
|
45482
45280
|
bodyType: "json",
|
|
45483
45281
|
});
|
|
45484
|
-
|
|
45485
|
-
return $tea.cast<ModifyScalingGroupResponse>(await this.callApi(params, req, runtime), new ModifyScalingGroupResponse({}));
|
|
45486
|
-
} else {
|
|
45487
|
-
return $tea.cast<ModifyScalingGroupResponse>(await this.execute(params, req, runtime), new ModifyScalingGroupResponse({}));
|
|
45488
|
-
}
|
|
45489
|
-
|
|
45282
|
+
return $tea.cast<ModifyScalingGroupResponse>(await this.callApi(params, req, runtime), new ModifyScalingGroupResponse({}));
|
|
45490
45283
|
}
|
|
45491
45284
|
|
|
45492
45285
|
/**
|
|
@@ -45643,12 +45436,7 @@ export default class Client extends OpenApi {
|
|
|
45643
45436
|
reqBodyType: "formData",
|
|
45644
45437
|
bodyType: "json",
|
|
45645
45438
|
});
|
|
45646
|
-
|
|
45647
|
-
return $tea.cast<ModifyScalingRuleResponse>(await this.callApi(params, req, runtime), new ModifyScalingRuleResponse({}));
|
|
45648
|
-
} else {
|
|
45649
|
-
return $tea.cast<ModifyScalingRuleResponse>(await this.execute(params, req, runtime), new ModifyScalingRuleResponse({}));
|
|
45650
|
-
}
|
|
45651
|
-
|
|
45439
|
+
return $tea.cast<ModifyScalingRuleResponse>(await this.callApi(params, req, runtime), new ModifyScalingRuleResponse({}));
|
|
45652
45440
|
}
|
|
45653
45441
|
|
|
45654
45442
|
/**
|
|
@@ -45768,12 +45556,7 @@ export default class Client extends OpenApi {
|
|
|
45768
45556
|
reqBodyType: "formData",
|
|
45769
45557
|
bodyType: "json",
|
|
45770
45558
|
});
|
|
45771
|
-
|
|
45772
|
-
return $tea.cast<ModifyScheduledTaskResponse>(await this.callApi(params, req, runtime), new ModifyScheduledTaskResponse({}));
|
|
45773
|
-
} else {
|
|
45774
|
-
return $tea.cast<ModifyScheduledTaskResponse>(await this.execute(params, req, runtime), new ModifyScheduledTaskResponse({}));
|
|
45775
|
-
}
|
|
45776
|
-
|
|
45559
|
+
return $tea.cast<ModifyScheduledTaskResponse>(await this.callApi(params, req, runtime), new ModifyScheduledTaskResponse({}));
|
|
45777
45560
|
}
|
|
45778
45561
|
|
|
45779
45562
|
/**
|
|
@@ -45850,12 +45633,7 @@ export default class Client extends OpenApi {
|
|
|
45850
45633
|
reqBodyType: "formData",
|
|
45851
45634
|
bodyType: "json",
|
|
45852
45635
|
});
|
|
45853
|
-
|
|
45854
|
-
return $tea.cast<RebalanceInstancesResponse>(await this.callApi(params, req, runtime), new RebalanceInstancesResponse({}));
|
|
45855
|
-
} else {
|
|
45856
|
-
return $tea.cast<RebalanceInstancesResponse>(await this.execute(params, req, runtime), new RebalanceInstancesResponse({}));
|
|
45857
|
-
}
|
|
45858
|
-
|
|
45636
|
+
return $tea.cast<RebalanceInstancesResponse>(await this.callApi(params, req, runtime), new RebalanceInstancesResponse({}));
|
|
45859
45637
|
}
|
|
45860
45638
|
|
|
45861
45639
|
/**
|
|
@@ -45934,12 +45712,7 @@ export default class Client extends OpenApi {
|
|
|
45934
45712
|
reqBodyType: "formData",
|
|
45935
45713
|
bodyType: "json",
|
|
45936
45714
|
});
|
|
45937
|
-
|
|
45938
|
-
return $tea.cast<RecordLifecycleActionHeartbeatResponse>(await this.callApi(params, req, runtime), new RecordLifecycleActionHeartbeatResponse({}));
|
|
45939
|
-
} else {
|
|
45940
|
-
return $tea.cast<RecordLifecycleActionHeartbeatResponse>(await this.execute(params, req, runtime), new RecordLifecycleActionHeartbeatResponse({}));
|
|
45941
|
-
}
|
|
45942
|
-
|
|
45715
|
+
return $tea.cast<RecordLifecycleActionHeartbeatResponse>(await this.callApi(params, req, runtime), new RecordLifecycleActionHeartbeatResponse({}));
|
|
45943
45716
|
}
|
|
45944
45717
|
|
|
45945
45718
|
/**
|
|
@@ -46039,12 +45812,7 @@ export default class Client extends OpenApi {
|
|
|
46039
45812
|
reqBodyType: "formData",
|
|
46040
45813
|
bodyType: "json",
|
|
46041
45814
|
});
|
|
46042
|
-
|
|
46043
|
-
return $tea.cast<RemoveInstancesResponse>(await this.callApi(params, req, runtime), new RemoveInstancesResponse({}));
|
|
46044
|
-
} else {
|
|
46045
|
-
return $tea.cast<RemoveInstancesResponse>(await this.execute(params, req, runtime), new RemoveInstancesResponse({}));
|
|
46046
|
-
}
|
|
46047
|
-
|
|
45815
|
+
return $tea.cast<RemoveInstancesResponse>(await this.callApi(params, req, runtime), new RemoveInstancesResponse({}));
|
|
46048
45816
|
}
|
|
46049
45817
|
|
|
46050
45818
|
/**
|
|
@@ -46112,12 +45880,7 @@ export default class Client extends OpenApi {
|
|
|
46112
45880
|
reqBodyType: "formData",
|
|
46113
45881
|
bodyType: "json",
|
|
46114
45882
|
});
|
|
46115
|
-
|
|
46116
|
-
return $tea.cast<ResumeInstanceRefreshResponse>(await this.callApi(params, req, runtime), new ResumeInstanceRefreshResponse({}));
|
|
46117
|
-
} else {
|
|
46118
|
-
return $tea.cast<ResumeInstanceRefreshResponse>(await this.execute(params, req, runtime), new ResumeInstanceRefreshResponse({}));
|
|
46119
|
-
}
|
|
46120
|
-
|
|
45883
|
+
return $tea.cast<ResumeInstanceRefreshResponse>(await this.callApi(params, req, runtime), new ResumeInstanceRefreshResponse({}));
|
|
46121
45884
|
}
|
|
46122
45885
|
|
|
46123
45886
|
/**
|
|
@@ -46179,12 +45942,7 @@ export default class Client extends OpenApi {
|
|
|
46179
45942
|
reqBodyType: "formData",
|
|
46180
45943
|
bodyType: "json",
|
|
46181
45944
|
});
|
|
46182
|
-
|
|
46183
|
-
return $tea.cast<ResumeProcessesResponse>(await this.callApi(params, req, runtime), new ResumeProcessesResponse({}));
|
|
46184
|
-
} else {
|
|
46185
|
-
return $tea.cast<ResumeProcessesResponse>(await this.execute(params, req, runtime), new ResumeProcessesResponse({}));
|
|
46186
|
-
}
|
|
46187
|
-
|
|
45945
|
+
return $tea.cast<ResumeProcessesResponse>(await this.callApi(params, req, runtime), new ResumeProcessesResponse({}));
|
|
46188
45946
|
}
|
|
46189
45947
|
|
|
46190
45948
|
/**
|
|
@@ -46242,12 +46000,7 @@ export default class Client extends OpenApi {
|
|
|
46242
46000
|
reqBodyType: "formData",
|
|
46243
46001
|
bodyType: "json",
|
|
46244
46002
|
});
|
|
46245
|
-
|
|
46246
|
-
return $tea.cast<RollbackInstanceRefreshResponse>(await this.callApi(params, req, runtime), new RollbackInstanceRefreshResponse({}));
|
|
46247
|
-
} else {
|
|
46248
|
-
return $tea.cast<RollbackInstanceRefreshResponse>(await this.execute(params, req, runtime), new RollbackInstanceRefreshResponse({}));
|
|
46249
|
-
}
|
|
46250
|
-
|
|
46003
|
+
return $tea.cast<RollbackInstanceRefreshResponse>(await this.callApi(params, req, runtime), new RollbackInstanceRefreshResponse({}));
|
|
46251
46004
|
}
|
|
46252
46005
|
|
|
46253
46006
|
/**
|
|
@@ -46348,12 +46101,7 @@ export default class Client extends OpenApi {
|
|
|
46348
46101
|
reqBodyType: "formData",
|
|
46349
46102
|
bodyType: "json",
|
|
46350
46103
|
});
|
|
46351
|
-
|
|
46352
|
-
return $tea.cast<ScaleWithAdjustmentResponse>(await this.callApi(params, req, runtime), new ScaleWithAdjustmentResponse({}));
|
|
46353
|
-
} else {
|
|
46354
|
-
return $tea.cast<ScaleWithAdjustmentResponse>(await this.execute(params, req, runtime), new ScaleWithAdjustmentResponse({}));
|
|
46355
|
-
}
|
|
46356
|
-
|
|
46104
|
+
return $tea.cast<ScaleWithAdjustmentResponse>(await this.callApi(params, req, runtime), new ScaleWithAdjustmentResponse({}));
|
|
46357
46105
|
}
|
|
46358
46106
|
|
|
46359
46107
|
/**
|
|
@@ -46420,12 +46168,7 @@ export default class Client extends OpenApi {
|
|
|
46420
46168
|
reqBodyType: "formData",
|
|
46421
46169
|
bodyType: "json",
|
|
46422
46170
|
});
|
|
46423
|
-
|
|
46424
|
-
return $tea.cast<SetGroupDeletionProtectionResponse>(await this.callApi(params, req, runtime), new SetGroupDeletionProtectionResponse({}));
|
|
46425
|
-
} else {
|
|
46426
|
-
return $tea.cast<SetGroupDeletionProtectionResponse>(await this.execute(params, req, runtime), new SetGroupDeletionProtectionResponse({}));
|
|
46427
|
-
}
|
|
46428
|
-
|
|
46171
|
+
return $tea.cast<SetGroupDeletionProtectionResponse>(await this.callApi(params, req, runtime), new SetGroupDeletionProtectionResponse({}));
|
|
46429
46172
|
}
|
|
46430
46173
|
|
|
46431
46174
|
/**
|
|
@@ -46482,12 +46225,7 @@ export default class Client extends OpenApi {
|
|
|
46482
46225
|
reqBodyType: "formData",
|
|
46483
46226
|
bodyType: "json",
|
|
46484
46227
|
});
|
|
46485
|
-
|
|
46486
|
-
return $tea.cast<SetInstanceHealthResponse>(await this.callApi(params, req, runtime), new SetInstanceHealthResponse({}));
|
|
46487
|
-
} else {
|
|
46488
|
-
return $tea.cast<SetInstanceHealthResponse>(await this.execute(params, req, runtime), new SetInstanceHealthResponse({}));
|
|
46489
|
-
}
|
|
46490
|
-
|
|
46228
|
+
return $tea.cast<SetInstanceHealthResponse>(await this.callApi(params, req, runtime), new SetInstanceHealthResponse({}));
|
|
46491
46229
|
}
|
|
46492
46230
|
|
|
46493
46231
|
/**
|
|
@@ -46554,12 +46292,7 @@ export default class Client extends OpenApi {
|
|
|
46554
46292
|
reqBodyType: "formData",
|
|
46555
46293
|
bodyType: "json",
|
|
46556
46294
|
});
|
|
46557
|
-
|
|
46558
|
-
return $tea.cast<SetInstancesProtectionResponse>(await this.callApi(params, req, runtime), new SetInstancesProtectionResponse({}));
|
|
46559
|
-
} else {
|
|
46560
|
-
return $tea.cast<SetInstancesProtectionResponse>(await this.execute(params, req, runtime), new SetInstancesProtectionResponse({}));
|
|
46561
|
-
}
|
|
46562
|
-
|
|
46295
|
+
return $tea.cast<SetInstancesProtectionResponse>(await this.callApi(params, req, runtime), new SetInstancesProtectionResponse({}));
|
|
46563
46296
|
}
|
|
46564
46297
|
|
|
46565
46298
|
/**
|
|
@@ -46645,12 +46378,7 @@ export default class Client extends OpenApi {
|
|
|
46645
46378
|
reqBodyType: "formData",
|
|
46646
46379
|
bodyType: "json",
|
|
46647
46380
|
});
|
|
46648
|
-
|
|
46649
|
-
return $tea.cast<StartInstanceRefreshResponse>(await this.callApi(params, req, runtime), new StartInstanceRefreshResponse({}));
|
|
46650
|
-
} else {
|
|
46651
|
-
return $tea.cast<StartInstanceRefreshResponse>(await this.execute(params, req, runtime), new StartInstanceRefreshResponse({}));
|
|
46652
|
-
}
|
|
46653
|
-
|
|
46381
|
+
return $tea.cast<StartInstanceRefreshResponse>(await this.callApi(params, req, runtime), new StartInstanceRefreshResponse({}));
|
|
46654
46382
|
}
|
|
46655
46383
|
|
|
46656
46384
|
/**
|
|
@@ -46717,12 +46445,7 @@ export default class Client extends OpenApi {
|
|
|
46717
46445
|
reqBodyType: "formData",
|
|
46718
46446
|
bodyType: "json",
|
|
46719
46447
|
});
|
|
46720
|
-
|
|
46721
|
-
return $tea.cast<SuspendInstanceRefreshResponse>(await this.callApi(params, req, runtime), new SuspendInstanceRefreshResponse({}));
|
|
46722
|
-
} else {
|
|
46723
|
-
return $tea.cast<SuspendInstanceRefreshResponse>(await this.execute(params, req, runtime), new SuspendInstanceRefreshResponse({}));
|
|
46724
|
-
}
|
|
46725
|
-
|
|
46448
|
+
return $tea.cast<SuspendInstanceRefreshResponse>(await this.callApi(params, req, runtime), new SuspendInstanceRefreshResponse({}));
|
|
46726
46449
|
}
|
|
46727
46450
|
|
|
46728
46451
|
/**
|
|
@@ -46787,12 +46510,7 @@ export default class Client extends OpenApi {
|
|
|
46787
46510
|
reqBodyType: "formData",
|
|
46788
46511
|
bodyType: "json",
|
|
46789
46512
|
});
|
|
46790
|
-
|
|
46791
|
-
return $tea.cast<SuspendProcessesResponse>(await this.callApi(params, req, runtime), new SuspendProcessesResponse({}));
|
|
46792
|
-
} else {
|
|
46793
|
-
return $tea.cast<SuspendProcessesResponse>(await this.execute(params, req, runtime), new SuspendProcessesResponse({}));
|
|
46794
|
-
}
|
|
46795
|
-
|
|
46513
|
+
return $tea.cast<SuspendProcessesResponse>(await this.callApi(params, req, runtime), new SuspendProcessesResponse({}));
|
|
46796
46514
|
}
|
|
46797
46515
|
|
|
46798
46516
|
/**
|
|
@@ -46863,12 +46581,7 @@ export default class Client extends OpenApi {
|
|
|
46863
46581
|
reqBodyType: "formData",
|
|
46864
46582
|
bodyType: "json",
|
|
46865
46583
|
});
|
|
46866
|
-
|
|
46867
|
-
return $tea.cast<TagResourcesResponse>(await this.callApi(params, req, runtime), new TagResourcesResponse({}));
|
|
46868
|
-
} else {
|
|
46869
|
-
return $tea.cast<TagResourcesResponse>(await this.execute(params, req, runtime), new TagResourcesResponse({}));
|
|
46870
|
-
}
|
|
46871
|
-
|
|
46584
|
+
return $tea.cast<TagResourcesResponse>(await this.callApi(params, req, runtime), new TagResourcesResponse({}));
|
|
46872
46585
|
}
|
|
46873
46586
|
|
|
46874
46587
|
/**
|
|
@@ -46943,12 +46656,7 @@ export default class Client extends OpenApi {
|
|
|
46943
46656
|
reqBodyType: "formData",
|
|
46944
46657
|
bodyType: "json",
|
|
46945
46658
|
});
|
|
46946
|
-
|
|
46947
|
-
return $tea.cast<UntagResourcesResponse>(await this.callApi(params, req, runtime), new UntagResourcesResponse({}));
|
|
46948
|
-
} else {
|
|
46949
|
-
return $tea.cast<UntagResourcesResponse>(await this.execute(params, req, runtime), new UntagResourcesResponse({}));
|
|
46950
|
-
}
|
|
46951
|
-
|
|
46659
|
+
return $tea.cast<UntagResourcesResponse>(await this.callApi(params, req, runtime), new UntagResourcesResponse({}));
|
|
46952
46660
|
}
|
|
46953
46661
|
|
|
46954
46662
|
/**
|
|
@@ -47006,12 +46714,7 @@ export default class Client extends OpenApi {
|
|
|
47006
46714
|
reqBodyType: "formData",
|
|
47007
46715
|
bodyType: "json",
|
|
47008
46716
|
});
|
|
47009
|
-
|
|
47010
|
-
return $tea.cast<VerifyAuthenticationResponse>(await this.callApi(params, req, runtime), new VerifyAuthenticationResponse({}));
|
|
47011
|
-
} else {
|
|
47012
|
-
return $tea.cast<VerifyAuthenticationResponse>(await this.execute(params, req, runtime), new VerifyAuthenticationResponse({}));
|
|
47013
|
-
}
|
|
47014
|
-
|
|
46717
|
+
return $tea.cast<VerifyAuthenticationResponse>(await this.callApi(params, req, runtime), new VerifyAuthenticationResponse({}));
|
|
47015
46718
|
}
|
|
47016
46719
|
|
|
47017
46720
|
/**
|
|
@@ -47065,12 +46768,7 @@ export default class Client extends OpenApi {
|
|
|
47065
46768
|
reqBodyType: "formData",
|
|
47066
46769
|
bodyType: "json",
|
|
47067
46770
|
});
|
|
47068
|
-
|
|
47069
|
-
return $tea.cast<VerifyUserResponse>(await this.callApi(params, req, runtime), new VerifyUserResponse({}));
|
|
47070
|
-
} else {
|
|
47071
|
-
return $tea.cast<VerifyUserResponse>(await this.execute(params, req, runtime), new VerifyUserResponse({}));
|
|
47072
|
-
}
|
|
47073
|
-
|
|
46771
|
+
return $tea.cast<VerifyUserResponse>(await this.callApi(params, req, runtime), new VerifyUserResponse({}));
|
|
47074
46772
|
}
|
|
47075
46773
|
|
|
47076
46774
|
/**
|