@alicloud/ess20220222 1.6.2 → 1.7.0

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 CHANGED
@@ -342,10 +342,12 @@ export declare class AttachAlbServerGroupsResponse extends $tea.Model {
342
342
  export declare class AttachDBInstancesRequest extends $tea.Model {
343
343
  /**
344
344
  * @remarks
345
- * The mode in which you want to attach the ApsaraDB RDS instance to the scaling group. Valid values:
345
+ * The mode in which you want to attach the database to the scaling group. Valid values:
346
+ *
347
+ * * SecurityIp: adds the private IP addresses of scaled out ECS instances to the IP address whitelist of the database. Take note that you can choose this mode only when the database that you want to attach is an ApsaraDB RDS instance.
348
+ * * SecurityGroup: adds the security group of the scaling configuration based on which ECS instances are created in the scaling group to the security group whitelist of the database for registration.
346
349
  *
347
- * * SecurityIp: the SecurityIp mode. Auto Scaling automatically adds the private IP addresses of the scaled out instances to the IP address whitelist of the ApsaraDB RDS instance. You can select this mode only when you attach an ApsaraDB RDS instance to a scaling group.
348
- * * SecurityGroup: the security group mode. Auto Scaling adds the security group of the scaling configuration to the security group whitelist for registration and association.
350
+ * Default value: SecurityIp.
349
351
  *
350
352
  * @example
351
353
  * SecurityIp
@@ -363,14 +365,14 @@ export declare class AttachDBInstancesRequest extends $tea.Model {
363
365
  clientToken?: string;
364
366
  /**
365
367
  * @remarks
366
- * The ID of the ApsaraDB RDS instance.
368
+ * The IDs of the ApsaraDB RDS instances that you want to attach to the scaling group.
367
369
  *
368
370
  * This parameter is required.
369
371
  */
370
372
  DBInstances?: string[];
371
373
  /**
372
374
  * @remarks
373
- * Specifies whether to add the private IP addresses of all instances in the scaling group to the IP address whitelist of the ApsaraDB RDS instance. Valid values:
375
+ * Specifies whether to add the private IP addresses of all ECS instances in the scaling group to the IP address whitelist of an ApsaraDB RDS instance when you attach the ApsaraDB RDS instance to the scaling group. Valid values:
374
376
  *
375
377
  * * true
376
378
  * * false
@@ -405,9 +407,9 @@ export declare class AttachDBInstancesRequest extends $tea.Model {
405
407
  * @remarks
406
408
  * The type of the database that you want to attach to the scaling group. Valid values:
407
409
  *
408
- * * ApsaraDB RDS
409
- * * ApsaraDB for Redis
410
- * * ApsaraDB for MongoDB
410
+ * * RDS
411
+ * * Redis
412
+ * * MongoDB
411
413
  *
412
414
  * Default value: RDS.
413
415
  *
@@ -914,6 +916,8 @@ export declare class AttachVServerGroupsResponse extends $tea.Model {
914
916
  export declare class CancelInstanceRefreshRequest extends $tea.Model {
915
917
  /**
916
918
  * @remarks
919
+ * The ID of the instance refresh task.
920
+ *
917
921
  * This parameter is required.
918
922
  *
919
923
  * @example
@@ -923,6 +927,8 @@ export declare class CancelInstanceRefreshRequest extends $tea.Model {
923
927
  ownerId?: number;
924
928
  /**
925
929
  * @remarks
930
+ * The region ID of the scaling group.
931
+ *
926
932
  * This parameter is required.
927
933
  *
928
934
  * @example
@@ -932,6 +938,8 @@ export declare class CancelInstanceRefreshRequest extends $tea.Model {
932
938
  resourceOwnerAccount?: string;
933
939
  /**
934
940
  * @remarks
941
+ * The ID of the scaling group.
942
+ *
935
943
  * This parameter is required.
936
944
  *
937
945
  * @example
@@ -950,6 +958,9 @@ export declare class CancelInstanceRefreshRequest extends $tea.Model {
950
958
  }
951
959
  export declare class CancelInstanceRefreshResponseBody extends $tea.Model {
952
960
  /**
961
+ * @remarks
962
+ * The request ID.
963
+ *
953
964
  * @example
954
965
  * 473469C7-AA6F-4DC5-B3DB-A3DC0DE3****
955
966
  */
@@ -3301,28 +3312,22 @@ export declare class CreateScalingGroupRequest extends $tea.Model {
3301
3312
  * The health check mode of the scaling group. Valid values:
3302
3313
  *
3303
3314
  * * NONE: Auto Scaling does not check the health status of instances.
3304
- * * ECS: Auto Scaling checks the health status of ECS instances in the scaling group.
3305
- * * ECI: Auto Scaling checks the health status of elastic container instances in the scaling group.
3306
- * * LOAD_BALANCER: Auto Scaling checks the health status of instances in the scaling group based on the health check results of load balancers. The health check results of CLB instances are not supported as the health check basis for instances in the scaling group.
3315
+ * * ECS: Auto Scaling checks the health status of instances in the scaling group. If you want to enable instance health check, you can set the value to ECS, regardless of whether the scaling group is of ECS type or Elastic Container Instance type.
3316
+ * * LOAD_BALANCER: Auto Scaling checks the health status of instances in the scaling group based on the health check results of load balancers. The health check results of Classic Load Balancer (CLB) instances are not supported as the health check basis for instances in the scaling group.
3307
3317
  *
3308
3318
  * Default value: ECS.
3309
3319
  *
3320
+ * > If you want to enable instance health check and load balancer health check at the same time, we recommend that you specify `HealthCheckTypes`.
3321
+ *
3310
3322
  * @example
3311
3323
  * ECS
3312
3324
  */
3313
3325
  healthCheckType?: string;
3314
3326
  /**
3315
3327
  * @remarks
3316
- * The health check modes of the scaling group. Valid values:
3317
- *
3318
- * * NONE: Auto Scaling does not check the health status of instances.
3319
- * * ECS: Auto Scaling checks the health status of ECS instances in the scaling group.
3320
- * * ECI: Auto Scaling checks the health status of elastic container instances in the scaling group.
3321
- * * LOAD_BALANCER: Auto Scaling checks the health status of instances based on the health check results of load balancers. The health check results of CLB instances are not supported as the health check basis for instances in the scaling group.
3322
- *
3323
- * > HealthCheckTypes has the same effect as `HealthCheckType`. You can select one of them to specify based on your business requirements. If you specify `HealthCheckType`, `HealthCheckTypes` is ignored. HealthCheckTypes is optional.
3328
+ * The health check mode of the scaling group.
3324
3329
  *
3325
- * Default value: ECS.
3330
+ * > You can specify multiple values for this parameter to enable multiple health check options at the same time. If you specify `HealthCheckType`, this parameter is ignored.
3326
3331
  */
3327
3332
  healthCheckTypes?: string[];
3328
3333
  /**
@@ -3569,6 +3574,11 @@ export declare class CreateScalingGroupRequest extends $tea.Model {
3569
3574
  * true
3570
3575
  */
3571
3576
  spotInstanceRemedy?: boolean;
3577
+ /**
3578
+ * @example
3579
+ * 60
3580
+ */
3581
+ stopInstanceTimeout?: number;
3572
3582
  /**
3573
3583
  * @remarks
3574
3584
  * > This parameter is unavailable.
@@ -3705,7 +3715,7 @@ export declare class CreateScalingRuleRequest extends $tea.Model {
3705
3715
  cooldown?: number;
3706
3716
  /**
3707
3717
  * @remarks
3708
- * Specifies whether to disable scale-in. This parameter is available only if you set the ScalingRuleType parameter to TargetTrackingScalingRule.
3718
+ * Specifies whether to disable scale-in. This parameter is available only if you set ScalingRuleType to TargetTrackingScalingRule.
3709
3719
  *
3710
3720
  * Default value: false.
3711
3721
  *
@@ -3741,7 +3751,7 @@ export declare class CreateScalingRuleRequest extends $tea.Model {
3741
3751
  initialMaxSize?: number;
3742
3752
  /**
3743
3753
  * @remarks
3744
- * The predefined metric of the scaling rule. If you set ScalingRuleType to TargetTrackingScalingRule or PredictiveScalingRule, you must specify this parameter.
3754
+ * The predefined metric that you want to monitor. If you set ScalingRuleType to TargetTrackingScalingRule or PredictiveScalingRule, you must specify this parameter.
3745
3755
  *
3746
3756
  * Valid values if you set ScalingRuleType to TargetTrackingScalingRule:
3747
3757
  *
@@ -3749,7 +3759,7 @@ export declare class CreateScalingRuleRequest extends $tea.Model {
3749
3759
  * * MemoryUtilization (recommended): the memory usage.
3750
3760
  * * CpuUtilization: the average CPU utilization.
3751
3761
  * * IntranetTx: the outbound traffic over an internal network.
3752
- * * IntranetRx: the inbound traffic over an internal network.
3762
+ * * IntranetRx: the average inbound traffic over an internal network.
3753
3763
  * * VpcInternetTx: the outbound traffic from a virtual private cloud (VPC) to the Internet.
3754
3764
  * * VpcInternetRx: the inbound traffic from the Internet to a VPC.
3755
3765
  * * LoadBalancerRealServerAverageQps:the queries per second (QPS) per Application Load Balancer (ALB) server group.
@@ -3757,10 +3767,10 @@ export declare class CreateScalingRuleRequest extends $tea.Model {
3757
3767
  * Valid values if you set ScalingRuleType to PredictiveScalingRule:
3758
3768
  *
3759
3769
  * * CpuUtilization: the average CPU utilization.
3760
- * * IntranetRx: the inbound traffic over an internal network.
3761
- * * IntranetTx: the outbound traffic over an internal network.
3770
+ * * IntranetRx: the average inbound traffic over an internal network.
3771
+ * * IntranetTx: the average outbound traffic over an internal network.
3762
3772
  *
3763
- * For more information, see [Event-triggered tasks of the system monitoring type](https://www.alibabacloud.com/help/zh/auto-scaling/user-guide/event-triggered-tasks-of-the-system-monitoring-type).
3773
+ * For more information, see [Event-triggered tasks of the system monitoring type](https://help.aliyun.com/document_detail/74854.html).
3764
3774
  *
3765
3775
  * @example
3766
3776
  * CpuUtilization
@@ -3879,12 +3889,12 @@ export declare class CreateScalingRuleRequest extends $tea.Model {
3879
3889
  * @remarks
3880
3890
  * The type of the scaling rule. Valid values:
3881
3891
  *
3882
- * * SimpleScalingRule: a simple scaling rule. Once a simple scaling rule is executed, Auto Scaling adjusts the number of ECS instances or elastic container instances in the scaling group based on the values of AdjustmentType and AdjustmentValue.
3883
- * * TargetTrackingScalingRule: a target tracking scaling rule. Once a target tracking scaling rule is executed, Auto Scaling dynamically calculates the number of ECS instances or elastic container instances to scale based on the predefined metric (MetricName) and attempts to maintain the metric value close to the specified target value (TargetValue).
3884
- * * StepScalingRule: a step scaling rule. Once a step scaling rule is executed, Auto Scaling scales instances step by step based on the predefined thresholds and metric values.
3885
- * * PredictiveScalingRule: a predictive scaling rule. Once a predictive scaling rule is executed, Auto Scaling analyzes the historical monitoring data based on the machine learning technology and predicts the trends of metric data. Auto Scaling also creates scheduled tasks to enable dynamic adjustment of the boundary values for the scaling group.
3892
+ * * SimpleScalingRule: a simple scaling rule. After you execute a simple scaling rule, Auto Scaling adjusts the number of ECS instances or elastic container instances in the scaling group based on the values of AdjustmentType and AdjustmentValue.
3893
+ * * TargetTrackingScalingRule: a target tracking scaling rule. After you execute a target tracking scaling rule, Auto Scaling dynamically calculates the number of ECS instances or elastic container instances to scale based on the predefined metric (MetricName) and attempts to maintain the metric value close to the expected value (TargetValue).
3894
+ * * StepScalingRule: a step scaling rule. After you execute a step scaling rule, Auto Scaling scales instances step by step based on the predefined thresholds and metric values.
3895
+ * * PredictiveScalingRule: uses machine learning to analyze historical monitoring data of the scaling group and predicts the future values of metrics. In addition, Auto Scaling automatically creates scheduled tasks to specify the value range for the scaling group.
3886
3896
  *
3887
- * Default value: SimpleScalingRule.
3897
+ * Default value: SimpleScalingRule
3888
3898
  *
3889
3899
  * @example
3890
3900
  * SimpleScalingRule
@@ -4860,7 +4870,7 @@ export declare class DescribeAlarmsRequest extends $tea.Model {
4860
4870
  ownerId?: number;
4861
4871
  /**
4862
4872
  * @remarks
4863
- * The number of the page to return. Pages start from page 1.
4873
+ * The page number. Pages start from page 1.
4864
4874
  *
4865
4875
  * Default value: 1.
4866
4876
  *
@@ -4870,7 +4880,7 @@ export declare class DescribeAlarmsRequest extends $tea.Model {
4870
4880
  pageNumber?: number;
4871
4881
  /**
4872
4882
  * @remarks
4873
- * The number of entries to return on each page. Maximum value: 50.
4883
+ * The number of entries per page. Maximum value: 50.
4874
4884
  *
4875
4885
  * Default value: 10.
4876
4886
  *
@@ -5305,14 +5315,95 @@ export declare class DescribeEciScalingConfigurationsResponse extends $tea.Model
5305
5315
  [key: string]: any;
5306
5316
  });
5307
5317
  }
5318
+ export declare class DescribeElasticStrengthRequest extends $tea.Model {
5319
+ instanceTypes?: string[];
5320
+ /**
5321
+ * @example
5322
+ * NoSpot
5323
+ */
5324
+ priorityStrategy?: string;
5325
+ /**
5326
+ * @remarks
5327
+ * This parameter is required.
5328
+ *
5329
+ * @example
5330
+ * cn-qingdao
5331
+ */
5332
+ regionId?: string;
5333
+ /**
5334
+ * @example
5335
+ * asg-bp18p2yfxow2dloq****
5336
+ */
5337
+ scalingGroupId?: string;
5338
+ scalingGroupIds?: string[];
5339
+ systemDiskCategories?: string[];
5340
+ static names(): {
5341
+ [key: string]: string;
5342
+ };
5343
+ static types(): {
5344
+ [key: string]: any;
5345
+ };
5346
+ constructor(map?: {
5347
+ [key: string]: any;
5348
+ });
5349
+ }
5350
+ export declare class DescribeElasticStrengthResponseBody extends $tea.Model {
5351
+ elasticStrengthModels?: DescribeElasticStrengthResponseBodyElasticStrengthModels[];
5352
+ /**
5353
+ * @example
5354
+ * 73469C7-AA6F-4DC5-B3DB-A3DC0DE3****
5355
+ */
5356
+ requestId?: string;
5357
+ resourcePools?: DescribeElasticStrengthResponseBodyResourcePools[];
5358
+ /**
5359
+ * @example
5360
+ * 1.5
5361
+ */
5362
+ totalStrength?: number;
5363
+ static names(): {
5364
+ [key: string]: string;
5365
+ };
5366
+ static types(): {
5367
+ [key: string]: any;
5368
+ };
5369
+ constructor(map?: {
5370
+ [key: string]: any;
5371
+ });
5372
+ }
5373
+ export declare class DescribeElasticStrengthResponse extends $tea.Model {
5374
+ headers?: {
5375
+ [key: string]: string;
5376
+ };
5377
+ statusCode?: number;
5378
+ body?: DescribeElasticStrengthResponseBody;
5379
+ static names(): {
5380
+ [key: string]: string;
5381
+ };
5382
+ static types(): {
5383
+ [key: string]: any;
5384
+ };
5385
+ constructor(map?: {
5386
+ [key: string]: any;
5387
+ });
5388
+ }
5308
5389
  export declare class DescribeInstanceRefreshesRequest extends $tea.Model {
5390
+ /**
5391
+ * @remarks
5392
+ * The IDs of the instance refresh tasks that you want to query.
5393
+ */
5309
5394
  instanceRefreshTaskIds?: string[];
5310
5395
  /**
5396
+ * @remarks
5397
+ * The maximum number of entries per page. Valid values: 1 to 50. Default value: 10.
5398
+ *
5311
5399
  * @example
5312
5400
  * 10
5313
5401
  */
5314
5402
  maxResults?: number;
5315
5403
  /**
5404
+ * @remarks
5405
+ * The pagination token that is used in the next request to retrieve a new page of results. You do not need to specify this parameter for the first request. You must specify the token that is obtained from the previous query as the value of NextToken.
5406
+ *
5316
5407
  * @example
5317
5408
  * caeba0bbb2be03f84eb48b699f0a****
5318
5409
  */
@@ -5321,6 +5412,8 @@ export declare class DescribeInstanceRefreshesRequest extends $tea.Model {
5321
5412
  ownerId?: number;
5322
5413
  /**
5323
5414
  * @remarks
5415
+ * The region ID of the scaling group to which the instance refresh task belongs.
5416
+ *
5324
5417
  * This parameter is required.
5325
5418
  *
5326
5419
  * @example
@@ -5330,6 +5423,11 @@ export declare class DescribeInstanceRefreshesRequest extends $tea.Model {
5330
5423
  resourceOwnerAccount?: string;
5331
5424
  resourceOwnerId?: number;
5332
5425
  /**
5426
+ * @remarks
5427
+ * The ID of the scaling group.
5428
+ *
5429
+ * > When you call this operation, you must specify one of the following parameters: ScalingGroupId and InstanceRefreshTaskIds. You cannot specify both of them. If you specify neither of them, an error is reported.
5430
+ *
5333
5431
  * @example
5334
5432
  * asg-bp1ffogfdauy0jw0****
5335
5433
  */
@@ -5345,23 +5443,39 @@ export declare class DescribeInstanceRefreshesRequest extends $tea.Model {
5345
5443
  });
5346
5444
  }
5347
5445
  export declare class DescribeInstanceRefreshesResponseBody extends $tea.Model {
5446
+ /**
5447
+ * @remarks
5448
+ * The instance refresh tasks.
5449
+ */
5348
5450
  instanceRefreshTasks?: DescribeInstanceRefreshesResponseBodyInstanceRefreshTasks[];
5349
5451
  /**
5452
+ * @remarks
5453
+ * The maximum number of entries per page.
5454
+ *
5350
5455
  * @example
5351
5456
  * 50
5352
5457
  */
5353
5458
  maxResults?: number;
5354
5459
  /**
5460
+ * @remarks
5461
+ * A pagination token. It can be used in the next request to retrieve a new page of results. If NextToken is empty, no next page exists.
5462
+ *
5355
5463
  * @example
5356
5464
  * caeba0bbb2be03f84eb48b699f****
5357
5465
  */
5358
5466
  nextToken?: string;
5359
5467
  /**
5468
+ * @remarks
5469
+ * The ID of the request.
5470
+ *
5360
5471
  * @example
5361
5472
  * 473469C7-AA6F-4DC5-B3DB-A3DC0DE3****
5362
5473
  */
5363
5474
  requestId?: string;
5364
5475
  /**
5476
+ * @remarks
5477
+ * The total number of instance refresh tasks.
5478
+ *
5365
5479
  * @example
5366
5480
  * 100
5367
5481
  */
@@ -6325,12 +6439,16 @@ export declare class DescribeRegionsResponse extends $tea.Model {
6325
6439
  });
6326
6440
  }
6327
6441
  export declare class DescribeScalingActivitiesRequest extends $tea.Model {
6442
+ /**
6443
+ * @example
6444
+ * ir-a12ds234fasd*****
6445
+ */
6328
6446
  instanceRefreshTaskId?: string;
6329
6447
  ownerAccount?: string;
6330
6448
  ownerId?: number;
6331
6449
  /**
6332
6450
  * @remarks
6333
- * The number of the page to return. Pages start from page 1.
6451
+ * The page number. Pages start from page 1.
6334
6452
  *
6335
6453
  * Default value: 1.
6336
6454
  *
@@ -6340,7 +6458,7 @@ export declare class DescribeScalingActivitiesRequest extends $tea.Model {
6340
6458
  pageNumber?: number;
6341
6459
  /**
6342
6460
  * @remarks
6343
- * The number of entries to return on each page. Maximum value: 50.
6461
+ * The number of entries per page. Maximum value: 50.
6344
6462
  *
6345
6463
  * Default value: 10.
6346
6464
  *
@@ -6364,14 +6482,14 @@ export declare class DescribeScalingActivitiesRequest extends $tea.Model {
6364
6482
  * @remarks
6365
6483
  * The IDs of the scaling activities that you want to query.
6366
6484
  *
6367
- * > When you call this operation, you must specify one of the `ScalingGroupId` and `ScalingActivityId.N` parameters. Otherwise, an error is reported.
6485
+ * > When you call this operation, you must specify one of the following parameters: `ScalingGroupId` and `ScalingActivityIds`. You cannot specify both of them at the same time. If you specify neither of them, an error is reported.
6368
6486
  */
6369
6487
  scalingActivityIds?: string[];
6370
6488
  /**
6371
6489
  * @remarks
6372
6490
  * The ID of the scaling group.
6373
6491
  *
6374
- * > When you call this operation, you must specify one of the `ScalingGroupId` and `ScalingActivityId.N` parameters. Otherwise, an error is reported.
6492
+ * > When you call this operation, you must specify one of the following parameters: `ScalingGroupId` and `ScalingActivityIds`. You cannot specify both of them at the same time. If you specify neither of them, an error is reported.
6375
6493
  *
6376
6494
  * @example
6377
6495
  * asg-bp18p2yfxow2dloq****
@@ -6428,7 +6546,7 @@ export declare class DescribeScalingActivitiesResponseBody extends $tea.Model {
6428
6546
  requestId?: string;
6429
6547
  /**
6430
6548
  * @remarks
6431
- * The information about the scaling activities.
6549
+ * The scaling activities.
6432
6550
  */
6433
6551
  scalingActivities?: DescribeScalingActivitiesResponseBodyScalingActivities[];
6434
6552
  /**
@@ -6753,7 +6871,7 @@ export declare class DescribeScalingGroupDetailResponseBody extends $tea.Model {
6753
6871
  requestId?: string;
6754
6872
  /**
6755
6873
  * @remarks
6756
- * The information about the scaling groups.
6874
+ * The scaling group.
6757
6875
  */
6758
6876
  scalingGroup?: DescribeScalingGroupDetailResponseBodyScalingGroup;
6759
6877
  static names(): {
@@ -7148,7 +7266,7 @@ export declare class DescribeScalingRulesRequest extends $tea.Model {
7148
7266
  ownerId?: number;
7149
7267
  /**
7150
7268
  * @remarks
7151
- * The number of the page to return. Pages start from page 1.
7269
+ * The page number. Pages start from page 1.
7152
7270
  *
7153
7271
  * Default value: 1.
7154
7272
  *
@@ -7158,7 +7276,7 @@ export declare class DescribeScalingRulesRequest extends $tea.Model {
7158
7276
  pageNumber?: number;
7159
7277
  /**
7160
7278
  * @remarks
7161
- * The number of entries to return on each page. Maximum value: 50.
7279
+ * The number of entries per page. Maximum value: 50.
7162
7280
  *
7163
7281
  * Default value: 10.
7164
7282
  *
@@ -7216,7 +7334,7 @@ export declare class DescribeScalingRulesRequest extends $tea.Model {
7216
7334
  scalingRuleType?: string;
7217
7335
  /**
7218
7336
  * @remarks
7219
- * Specifies whether to return CloudMonitor event-triggered tasks associated with scaling rules. Valid values:
7337
+ * Specifies whether to return the event-triggered tasks that are associated with the scaling rule. Valid values:
7220
7338
  *
7221
7339
  * * true
7222
7340
  * * false
@@ -10456,7 +10574,7 @@ export declare class ModifyScalingConfigurationRequest extends $tea.Model {
10456
10574
  networkInterfaces?: ModifyScalingConfigurationRequestNetworkInterfaces[];
10457
10575
  /**
10458
10576
  * @remarks
10459
- * Specifies whether to overwrite existing data. Valid values:
10577
+ * Specifies whether to override existing data. Valid values:
10460
10578
  *
10461
10579
  * * true
10462
10580
  * * false
@@ -10914,7 +11032,7 @@ export declare class ModifyScalingConfigurationShrinkRequest extends $tea.Model
10914
11032
  networkInterfaces?: ModifyScalingConfigurationShrinkRequestNetworkInterfaces[];
10915
11033
  /**
10916
11034
  * @remarks
10917
- * Specifies whether to overwrite existing data. Valid values:
11035
+ * Specifies whether to override existing data. Valid values:
10918
11036
  *
10919
11037
  * * true
10920
11038
  * * false
@@ -11245,12 +11363,11 @@ export declare class ModifyScalingGroupRequest extends $tea.Model {
11245
11363
  * @remarks
11246
11364
  * The health check mode of the scaling group. Valid values:
11247
11365
  *
11248
- * * NONE: Auto Scaling does not perform health checks.
11249
- * * ECS: Auto Scaling checks the health status of ECS instances in the scaling group.
11250
- * * ECI: Auto Scaling checks the health status of elastic container instances in the scaling group.
11251
- * * LOAD_BALANCER: Auto Scaling checks the health status of instances in the scaling group based on the health check results of load balancers. The health check results of Classic Load Balancer (CLB) instances are not supported as the health check basis for instances in the scaling group.
11366
+ * * NONE: Auto Scaling does not check the health status of instances.
11367
+ * * ECS: Auto Scaling checks the health status of instances in the scaling group. If you want to enable instance health check, you can set the value to ECS, regardless of whether the scaling group is of ECS type or Elastic Container Instance type.
11368
+ * * LOAD_BALANCER: Auto Scaling checks the health status of instances in the scaling group based on the health check results of load balancers. The health check results of Classic Load Balancer (CLB) instances are not supported as the health check basis for instances in the scaling group. Default value: ECS.
11252
11369
  *
11253
- * > HealthCheckType has the same effect as `HealthCheckTypes`. You can select one of them to specify based on your business requirements. If you specify `HealthCheckTypes`, `HealthCheckType` is ignored. HealthCheckType is optional.
11370
+ * > If you want to enable instance health check and load balancer health check at the same time, we recommend that you specify `HealthCheckTypes`.
11254
11371
  *
11255
11372
  * @example
11256
11373
  * ECS
@@ -11258,12 +11375,9 @@ export declare class ModifyScalingGroupRequest extends $tea.Model {
11258
11375
  healthCheckType?: string;
11259
11376
  /**
11260
11377
  * @remarks
11261
- * The health check modes of the scaling group. Valid values:
11378
+ * The health check mode of the scaling group.
11262
11379
  *
11263
- * * NONE: Auto Scaling does not perform health checks.
11264
- * * ECS: Auto Scaling checks the health status of ECS instances in the scaling group.
11265
- * * ECI: Auto Scaling checks the health status of elastic container instances in the scaling group.
11266
- * * LOAD_BALANCER: Auto Scaling checks the health status of instances in the scaling group based on the health check results of load balancers. The health check results of CLB instances are not supported as the health check basis for instances in the scaling group.
11380
+ * > You can specify multiple values for this parameter to enable multiple health check options at the same time. If you specify HealthCheckType, this parameter is ignored.
11267
11381
  */
11268
11382
  healthCheckTypes?: string[];
11269
11383
  /**
@@ -11451,6 +11565,11 @@ export declare class ModifyScalingGroupRequest extends $tea.Model {
11451
11565
  * true
11452
11566
  */
11453
11567
  spotInstanceRemedy?: boolean;
11568
+ /**
11569
+ * @example
11570
+ * 60
11571
+ */
11572
+ stopInstanceTimeout?: number;
11454
11573
  /**
11455
11574
  * @remarks
11456
11575
  * The IDs of vSwitches.
@@ -11581,19 +11700,22 @@ export declare class ModifyScalingRuleRequest extends $tea.Model {
11581
11700
  *
11582
11701
  * Valid values if you create a target tracking scaling rule:
11583
11702
  *
11703
+ * * CpuUtilizationAgent (recommended): the CPU utilization.
11704
+ * * MemoryUtilization (recommended): the memory usage.
11584
11705
  * * CpuUtilization: the average CPU utilization.
11585
- * * IntranetTx: the outbound traffic over an internal network.
11586
- * * IntranetRx: the inbound traffic over an internal network.
11587
- * * VpcInternetTx: the outbound traffic from a virtual private cloud (VPC) to the Internet.
11588
- * * VpcInternetRx: the inbound traffic from the Internet to a VPC.
11589
- * * MemoryUtilization: the memory usage.
11706
+ * * IntranetTx: the average outbound traffic over an internal network.
11707
+ * * IntranetRx: the average inbound traffic over an internal network.
11708
+ * * VpcInternetTx: the average outbound traffic from a virtual private cloud (VPC) to the Internet.
11709
+ * * VpcInternetRx: the average inbound traffic from the Internet to a VPC.
11590
11710
  * * LoadBalancerRealServerAverageQps: the queries per second (QPS) per Application Load Balancer (ALB) server group.
11591
11711
  *
11592
11712
  * Valid values if you create a predictive scaling rule:
11593
11713
  *
11594
11714
  * * CpuUtilization: the average CPU utilization.
11595
- * * IntranetRx: the inbound traffic over an internal network.
11596
- * * IntranetTx: the outbound traffic over an internal network.
11715
+ * * IntranetRx: the average inbound traffic over an internal network.
11716
+ * * IntranetTx: the average outbound traffic over an internal network.
11717
+ *
11718
+ * For more information, see [Event-triggered tasks of the system monitoring type](https://help.aliyun.com/document_detail/74854.html).
11597
11719
  *
11598
11720
  * @example
11599
11721
  * CpuUtilization
@@ -12195,6 +12317,11 @@ export declare class RemoveInstancesRequest extends $tea.Model {
12195
12317
  * asg-bp18p2yfxow2dloq****
12196
12318
  */
12197
12319
  scalingGroupId?: string;
12320
+ /**
12321
+ * @example
12322
+ * 60
12323
+ */
12324
+ stopInstanceTimeout?: number;
12198
12325
  static names(): {
12199
12326
  [key: string]: string;
12200
12327
  };
@@ -12251,6 +12378,8 @@ export declare class RemoveInstancesResponse extends $tea.Model {
12251
12378
  export declare class ResumeInstanceRefreshRequest extends $tea.Model {
12252
12379
  /**
12253
12380
  * @remarks
12381
+ * The ID of the instance refresh task.
12382
+ *
12254
12383
  * This parameter is required.
12255
12384
  *
12256
12385
  * @example
@@ -12260,6 +12389,8 @@ export declare class ResumeInstanceRefreshRequest extends $tea.Model {
12260
12389
  ownerId?: number;
12261
12390
  /**
12262
12391
  * @remarks
12392
+ * The region ID of the scaling group.
12393
+ *
12263
12394
  * This parameter is required.
12264
12395
  *
12265
12396
  * @example
@@ -12269,6 +12400,8 @@ export declare class ResumeInstanceRefreshRequest extends $tea.Model {
12269
12400
  resourceOwnerAccount?: string;
12270
12401
  /**
12271
12402
  * @remarks
12403
+ * The ID of the scaling group.
12404
+ *
12272
12405
  * This parameter is required.
12273
12406
  *
12274
12407
  * @example
@@ -12287,6 +12420,9 @@ export declare class ResumeInstanceRefreshRequest extends $tea.Model {
12287
12420
  }
12288
12421
  export declare class ResumeInstanceRefreshResponseBody extends $tea.Model {
12289
12422
  /**
12423
+ * @remarks
12424
+ * The request ID.
12425
+ *
12290
12426
  * @example
12291
12427
  * 473469C7-AA6F-4DC5-B3DB-A3DC0DE3****
12292
12428
  */
@@ -12403,6 +12539,8 @@ export declare class ResumeProcessesResponse extends $tea.Model {
12403
12539
  export declare class RollbackInstanceRefreshRequest extends $tea.Model {
12404
12540
  /**
12405
12541
  * @remarks
12542
+ * The ID of the instance refresh task.
12543
+ *
12406
12544
  * This parameter is required.
12407
12545
  *
12408
12546
  * @example
@@ -12412,6 +12550,8 @@ export declare class RollbackInstanceRefreshRequest extends $tea.Model {
12412
12550
  ownerId?: number;
12413
12551
  /**
12414
12552
  * @remarks
12553
+ * The region ID of the scaling group.
12554
+ *
12415
12555
  * This parameter is required.
12416
12556
  *
12417
12557
  * @example
@@ -12421,6 +12561,8 @@ export declare class RollbackInstanceRefreshRequest extends $tea.Model {
12421
12561
  resourceOwnerAccount?: string;
12422
12562
  /**
12423
12563
  * @remarks
12564
+ * The ID of the scaling group.
12565
+ *
12424
12566
  * This parameter is required.
12425
12567
  *
12426
12568
  * @example
@@ -12439,6 +12581,9 @@ export declare class RollbackInstanceRefreshRequest extends $tea.Model {
12439
12581
  }
12440
12582
  export declare class RollbackInstanceRefreshResponseBody extends $tea.Model {
12441
12583
  /**
12584
+ * @remarks
12585
+ * The request ID.
12586
+ *
12442
12587
  * @example
12443
12588
  * B13527BF-1FBD-4334-A512-20F5E9D3****
12444
12589
  */
@@ -12956,17 +13101,38 @@ export declare class SetInstancesProtectionResponse extends $tea.Model {
12956
13101
  }
12957
13102
  export declare class StartInstanceRefreshRequest extends $tea.Model {
12958
13103
  /**
13104
+ * @remarks
13105
+ * The client token that is used to ensure the idempotence of the request. You can use the client to generate the token, but you must make sure that the token is unique among different requests. The token can contain only ASCII characters and cannot exceed 64 characters in length. For more information, see "How to ensure idempotence".
13106
+ *
12959
13107
  * @example
12960
13108
  * 123e4567-e89b-12d3-a456-42665544****
12961
13109
  */
12962
13110
  clientToken?: string;
13111
+ /**
13112
+ * @remarks
13113
+ * The desired configurations of the instance refresh task.
13114
+ *
13115
+ * >
13116
+ *
13117
+ * * When you call this operation, you must specify one of the following parameters: ScalingConfigurationId and ImageId.
13118
+ *
13119
+ * * Instances whose configurations match the desired configurations of the task are ignored during instance refresh.
13120
+ */
12963
13121
  desiredConfiguration?: StartInstanceRefreshRequestDesiredConfiguration;
12964
13122
  /**
13123
+ * @remarks
13124
+ * The ratio of instances that can exceed the upper limit of the scaling group capacity to all instances in the scaling group during instance refresh. Valid values: 100 to 200. Default value: 120.
13125
+ *
13126
+ * > If you set MinHealthyPercentage and MaxHealthyPercentage to 100, Auto Scaling refreshes the configurations of one instance each time the instance refresh task starts.
13127
+ *
12965
13128
  * @example
12966
13129
  * 100
12967
13130
  */
12968
13131
  maxHealthyPercentage?: number;
12969
13132
  /**
13133
+ * @remarks
13134
+ * The ratio of instances that are in the In Service state to all instances in the scaling group during instance refresh. Valid values: 0 to 100. Default value: 80.
13135
+ *
12970
13136
  * @example
12971
13137
  * 80
12972
13138
  */
@@ -12974,6 +13140,8 @@ export declare class StartInstanceRefreshRequest extends $tea.Model {
12974
13140
  ownerId?: number;
12975
13141
  /**
12976
13142
  * @remarks
13143
+ * The region ID of the scaling group.
13144
+ *
12977
13145
  * This parameter is required.
12978
13146
  *
12979
13147
  * @example
@@ -12983,6 +13151,8 @@ export declare class StartInstanceRefreshRequest extends $tea.Model {
12983
13151
  resourceOwnerAccount?: string;
12984
13152
  /**
12985
13153
  * @remarks
13154
+ * The ID of the scaling group.
13155
+ *
12986
13156
  * This parameter is required.
12987
13157
  *
12988
13158
  * @example
@@ -13001,11 +13171,17 @@ export declare class StartInstanceRefreshRequest extends $tea.Model {
13001
13171
  }
13002
13172
  export declare class StartInstanceRefreshResponseBody extends $tea.Model {
13003
13173
  /**
13174
+ * @remarks
13175
+ * The ID of the instance refresh task.
13176
+ *
13004
13177
  * @example
13005
13178
  * ir-a12ds234fasd*****
13006
13179
  */
13007
13180
  instanceRefreshTaskId?: string;
13008
13181
  /**
13182
+ * @remarks
13183
+ * The request ID.
13184
+ *
13009
13185
  * @example
13010
13186
  * 473469C7-AA6F-4DC5-B3DB-A3DC0DE3****
13011
13187
  */
@@ -13039,6 +13215,8 @@ export declare class StartInstanceRefreshResponse extends $tea.Model {
13039
13215
  export declare class SuspendInstanceRefreshRequest extends $tea.Model {
13040
13216
  /**
13041
13217
  * @remarks
13218
+ * The ID of the instance refresh task.
13219
+ *
13042
13220
  * This parameter is required.
13043
13221
  *
13044
13222
  * @example
@@ -13048,6 +13226,8 @@ export declare class SuspendInstanceRefreshRequest extends $tea.Model {
13048
13226
  ownerId?: number;
13049
13227
  /**
13050
13228
  * @remarks
13229
+ * The region ID of the scaling group.
13230
+ *
13051
13231
  * This parameter is required.
13052
13232
  *
13053
13233
  * @example
@@ -13057,6 +13237,8 @@ export declare class SuspendInstanceRefreshRequest extends $tea.Model {
13057
13237
  resourceOwnerAccount?: string;
13058
13238
  /**
13059
13239
  * @remarks
13240
+ * The ID of the scaling group.
13241
+ *
13060
13242
  * This parameter is required.
13061
13243
  *
13062
13244
  * @example
@@ -13075,6 +13257,9 @@ export declare class SuspendInstanceRefreshRequest extends $tea.Model {
13075
13257
  }
13076
13258
  export declare class SuspendInstanceRefreshResponseBody extends $tea.Model {
13077
13259
  /**
13260
+ * @remarks
13261
+ * The request ID.
13262
+ *
13078
13263
  * @example
13079
13264
  * 473469C7-AA6F-4DC5-B3DB-A3DC0DE3****
13080
13265
  */
@@ -15650,6 +15835,16 @@ export declare class CreateScalingConfigurationRequestNetworkInterfaces extends
15650
15835
  });
15651
15836
  }
15652
15837
  export declare class CreateScalingConfigurationRequestSecurityOptions extends $tea.Model {
15838
+ /**
15839
+ * @remarks
15840
+ * The confidential computing mode. Valid values:
15841
+ *
15842
+ * * Enclave: An enclave-based confidential computing environment is built on the instance. For more information, see [Build a confidential computing environment by using Enclave](https://help.aliyun.com/document_detail/203433.html).
15843
+ * * TDX: A Trust Domain Extensions (TDX) confidential computing environment is built on the instance. For more information, see [Build a TDX confidential computing environment](https://help.aliyun.com/document_detail/479090.html).
15844
+ *
15845
+ * @example
15846
+ * TDX
15847
+ */
15653
15848
  confidentialComputingMode?: string;
15654
15849
  static names(): {
15655
15850
  [key: string]: string;
@@ -16399,6 +16594,16 @@ export declare class CreateScalingConfigurationShrinkRequestNetworkInterfaces ex
16399
16594
  });
16400
16595
  }
16401
16596
  export declare class CreateScalingConfigurationShrinkRequestSecurityOptions extends $tea.Model {
16597
+ /**
16598
+ * @remarks
16599
+ * The confidential computing mode. Valid values:
16600
+ *
16601
+ * * Enclave: An enclave-based confidential computing environment is built on the instance. For more information, see [Build a confidential computing environment by using Enclave](https://help.aliyun.com/document_detail/203433.html).
16602
+ * * TDX: A Trust Domain Extensions (TDX) confidential computing environment is built on the instance. For more information, see [Build a TDX confidential computing environment](https://help.aliyun.com/document_detail/479090.html).
16603
+ *
16604
+ * @example
16605
+ * TDX
16606
+ */
16402
16607
  confidentialComputingMode?: string;
16403
16608
  static names(): {
16404
16609
  [key: string]: string;
@@ -20476,13 +20681,111 @@ export declare class DescribeEciScalingConfigurationsResponseBodyScalingConfigur
20476
20681
  [key: string]: any;
20477
20682
  });
20478
20683
  }
20684
+ export declare class DescribeElasticStrengthResponseBodyElasticStrengthModelsResourcePools extends $tea.Model {
20685
+ /**
20686
+ * @example
20687
+ * InstanceTypesOrDiskTypesNotSupported
20688
+ */
20689
+ code?: string;
20690
+ /**
20691
+ * @example
20692
+ * ecs.r7.large
20693
+ */
20694
+ instanceType?: string;
20695
+ /**
20696
+ * @example
20697
+ * The instanceTypes or diskTypes are not supported.
20698
+ */
20699
+ msg?: string;
20700
+ /**
20701
+ * @example
20702
+ * 0.6
20703
+ */
20704
+ strength?: number;
20705
+ vSwitchIds?: string[];
20706
+ /**
20707
+ * @example
20708
+ * cn-hangzhou-g
20709
+ */
20710
+ zoneId?: string;
20711
+ static names(): {
20712
+ [key: string]: string;
20713
+ };
20714
+ static types(): {
20715
+ [key: string]: any;
20716
+ };
20717
+ constructor(map?: {
20718
+ [key: string]: any;
20719
+ });
20720
+ }
20721
+ export declare class DescribeElasticStrengthResponseBodyElasticStrengthModels extends $tea.Model {
20722
+ resourcePools?: DescribeElasticStrengthResponseBodyElasticStrengthModelsResourcePools[];
20723
+ scalingGroupId?: string;
20724
+ /**
20725
+ * @example
20726
+ * 1.5
20727
+ */
20728
+ totalStrength?: number;
20729
+ static names(): {
20730
+ [key: string]: string;
20731
+ };
20732
+ static types(): {
20733
+ [key: string]: any;
20734
+ };
20735
+ constructor(map?: {
20736
+ [key: string]: any;
20737
+ });
20738
+ }
20739
+ export declare class DescribeElasticStrengthResponseBodyResourcePools extends $tea.Model {
20740
+ /**
20741
+ * @example
20742
+ * IMG_NOT_SUPPORTED
20743
+ */
20744
+ code?: string;
20745
+ /**
20746
+ * @example
20747
+ * ecs.c7t.xlarge
20748
+ */
20749
+ instanceType?: string;
20750
+ /**
20751
+ * @example
20752
+ * The instanceType does not support the image in the configuration.
20753
+ */
20754
+ msg?: string;
20755
+ /**
20756
+ * @example
20757
+ * 0.6
20758
+ */
20759
+ strength?: number;
20760
+ vSwitchIds?: string[];
20761
+ /**
20762
+ * @example
20763
+ * cn-hangzhou-g
20764
+ */
20765
+ zoneId?: string;
20766
+ static names(): {
20767
+ [key: string]: string;
20768
+ };
20769
+ static types(): {
20770
+ [key: string]: any;
20771
+ };
20772
+ constructor(map?: {
20773
+ [key: string]: any;
20774
+ });
20775
+ }
20479
20776
  export declare class DescribeInstanceRefreshesResponseBodyInstanceRefreshTasksDesiredConfiguration extends $tea.Model {
20480
20777
  /**
20778
+ * @remarks
20779
+ * The ID of the image file that provides the image resource for Auto Scaling to create instances.
20780
+ *
20481
20781
  * @example
20482
20782
  * m-uf6g5noisr****
20483
20783
  */
20484
20784
  imageId?: string;
20485
20785
  /**
20786
+ * @remarks
20787
+ * The ID of the scaling configuration.
20788
+ *
20486
20789
  * @example
20487
20790
  * asc-wz91ibkhfor****
20488
20791
  */
@@ -20498,58 +20801,106 @@ export declare class DescribeInstanceRefreshesResponseBodyInstanceRefreshTasksDe
20498
20801
  });
20499
20802
  }
20500
20803
  export declare class DescribeInstanceRefreshesResponseBodyInstanceRefreshTasks extends $tea.Model {
20804
+ /**
20805
+ * @remarks
20806
+ * The desired configurations of the instance refresh task.
20807
+ */
20501
20808
  desiredConfiguration?: DescribeInstanceRefreshesResponseBodyInstanceRefreshTasksDesiredConfiguration;
20502
20809
  /**
20810
+ * @remarks
20811
+ * The reason why the instance refresh task failed to be executed.
20812
+ *
20503
20813
  * @example
20504
20814
  * The task exceeded its maximum run time of one week. So the task failed.
20505
20815
  */
20506
20816
  detail?: string;
20507
20817
  /**
20818
+ * @remarks
20819
+ * The end time of the instance refresh task.
20820
+ *
20508
20821
  * @example
20509
20822
  * 2024-08-22T02:09:00Z
20510
20823
  */
20511
20824
  endTime?: string;
20512
20825
  /**
20826
+ * @remarks
20827
+ * The refreshed number of instances in the scaling group.
20828
+ *
20513
20829
  * @example
20514
20830
  * 10
20515
20831
  */
20516
20832
  finishedUpdateCapacity?: number;
20517
20833
  /**
20834
+ * @remarks
20835
+ * The ID of the instance refresh task.
20836
+ *
20518
20837
  * @example
20519
20838
  * ir-1adfa123****
20520
20839
  */
20521
20840
  instanceRefreshTaskId?: string;
20522
20841
  /**
20842
+ * @remarks
20843
+ * The ratio by which the number of instances in the scaling group can exceed the upper limit for the number of instances in the scaling group during instance refresh.
20844
+ *
20523
20845
  * @example
20524
20846
  * 120
20525
20847
  */
20526
20848
  maxHealthyPercentage?: number;
20527
20849
  /**
20850
+ * @remarks
20851
+ * The ratio of the number of instances that provide services to the total number of instances in the scaling group during instance refresh.
20852
+ *
20528
20853
  * @example
20529
20854
  * 80
20530
20855
  */
20531
20856
  minHealthyPercentage?: number;
20532
20857
  /**
20858
+ * @remarks
20859
+ * The region ID of the scaling group.
20860
+ *
20533
20861
  * @example
20534
20862
  * cn-hangzhou
20535
20863
  */
20536
20864
  regionId?: string;
20537
20865
  /**
20866
+ * @remarks
20867
+ * The ID of the scaling group.
20868
+ *
20538
20869
  * @example
20539
20870
  * asg-bp16pbfcr8j9*****
20540
20871
  */
20541
20872
  scalingGroupId?: string;
20542
20873
  /**
20874
+ * @remarks
20875
+ * The start time of the instance refresh task.
20876
+ *
20543
20877
  * @example
20544
20878
  * 2024-08-22T01:09:00Z
20545
20879
  */
20546
20880
  startTime?: string;
20547
20881
  /**
20882
+ * @remarks
20883
+ * The status of the instance refresh task. Valid values:
20884
+ *
20885
+ * * Pending: The instance refresh task is created and is waiting to be scheduled.
20886
+ * * InProgress: The instance refresh task is being executed.
20887
+ * * Paused: The instance refresh task is suspended.
20888
+ * * Failed: The instance refresh task failed to be executed.
20889
+ * * Successful: The instance refresh task is successful.
20890
+ * * Cancelling: The instance refresh task is being canceled.
20891
+ * * Cancelled: The instance refresh task is canceled.
20892
+ * * RollbackInProgress: The instance refresh task is being rolled back.
20893
+ * * RollbackSuccessful: The instance refresh task is rolled back.
20894
+ * * RollbackFailed: The instance refresh task fails to be rolled back.
20895
+ *
20548
20896
  * @example
20549
20897
  * InProgress
20550
20898
  */
20551
20899
  status?: string;
20552
20900
  /**
20901
+ * @remarks
20902
+ * The total number of instances whose configurations are refreshed.
20903
+ *
20553
20904
  * @example
20554
20905
  * 20
20555
20906
  */
@@ -20881,7 +21232,7 @@ export declare class DescribeRegionsResponseBodyRegions extends $tea.Model {
20881
21232
  export declare class DescribeScalingActivitiesResponseBodyScalingActivitiesLifecycleHookContext extends $tea.Model {
20882
21233
  /**
20883
21234
  * @remarks
20884
- * Indicates whether all lifecycle hooks are disabled. Valid values:
21235
+ * Indicates whether all lifecycle hooks are disabled when the scaling activity is triggered. Valid values:
20885
21236
  *
20886
21237
  * * true
20887
21238
  * * false
@@ -20916,7 +21267,7 @@ export declare class DescribeScalingActivitiesResponseBodyScalingActivities exte
20916
21267
  activityMetadata?: string;
20917
21268
  /**
20918
21269
  * @remarks
20919
- * The total number of instances that are manually added to the scaling group after the scaling activity was complete.
21270
+ * The total number of instances that are manually added to the scaling group after the scaling activity is complete.
20920
21271
  *
20921
21272
  * @example
20922
21273
  * 0
@@ -21004,6 +21355,10 @@ export declare class DescribeScalingActivitiesResponseBodyScalingActivities exte
21004
21355
  * The specified ECS resource is out of stock in this region. Please try again later.
21005
21356
  */
21006
21357
  errorMessage?: string;
21358
+ /**
21359
+ * @example
21360
+ * ir-asdf12adsxg*****
21361
+ */
21007
21362
  instanceRefreshTaskId?: string;
21008
21363
  /**
21009
21364
  * @remarks
@@ -21036,9 +21391,8 @@ export declare class DescribeScalingActivitiesResponseBodyScalingActivities exte
21036
21391
  scalingGroupId?: string;
21037
21392
  /**
21038
21393
  * @remarks
21039
- * If you query a scale-out activity, the value of this parameter indicates the number of instances that are created or the number of instances that are started from the Economical Mode during the scale-out event.
21040
- *
21041
- * If you query a scale-in activity, the value of this parameter indicates the number of instances that are deleted or the number of instances that are stopped in the Economical Mode during the scale-in event.
21394
+ * * If you query a scale-out activity, the value of this parameter indicates the number of instances that are created or the number of instances that are started from Economical Mode.
21395
+ * * If you query a scale-in activity, the value of this parameter indicates the number of instances that are deleted or the number of instances that are stopped in Economical Mode.
21042
21396
  *
21043
21397
  * @example
21044
21398
  * 1
@@ -21110,11 +21464,11 @@ export declare class DescribeScalingActivitiesResponseBodyScalingActivities exte
21110
21464
  totalCapacity?: string;
21111
21465
  /**
21112
21466
  * @remarks
21113
- * The ID of the trigger source of the scaling activity.
21467
+ * The ID of the trigger source of the scaling activity. Valid values:
21114
21468
  *
21115
- * * If TriggerSourceType is set to Cms, the ID of the trigger source is the ID of an event-triggered task.
21116
- * * If TriggerSourceType is set to Api, the ID of the trigger source is the ID of an Alibaba Cloud account or a RAM user.
21117
- * * If TriggerSourceType is set to Api, the ID of the trigger source is null.
21469
+ * * If the scaling activity is triggered by an event-triggered task, the ID of the trigger source is the ID of the event-triggered task.
21470
+ * * If the scaling activity is triggered by calling an API operation, the ID of the trigger source is the ID of the Alibaba Cloud account or Resource Access Management (RAM) user that you use to call the API operation.
21471
+ * * If the scaling activity is triggered by Auto Scaling, the ID of the trigger source is null.
21118
21472
  *
21119
21473
  * @example
21120
21474
  * 2346366580*****
@@ -21122,11 +21476,11 @@ export declare class DescribeScalingActivitiesResponseBodyScalingActivities exte
21122
21476
  triggerSourceId?: string;
21123
21477
  /**
21124
21478
  * @remarks
21125
- * The type of the trigger source of the scaling activity.
21479
+ * The type of the trigger source of the scaling activity. Valid values:
21126
21480
  *
21127
- * * Cms: triggered by an event-triggered task
21128
- * * APIs: triggered by API calling
21129
- * * Ess: triggered by a system task
21481
+ * * Cms: The scaling activity is triggered by an event-triggered task.
21482
+ * * APIs: The scaling activity is triggered by calling an API operation.
21483
+ * * Ess: The scaling activity is triggered by Auto Scaling.
21130
21484
  *
21131
21485
  * @example
21132
21486
  * Api
@@ -21605,6 +21959,16 @@ export declare class DescribeScalingConfigurationsResponseBodyScalingConfigurati
21605
21959
  });
21606
21960
  }
21607
21961
  export declare class DescribeScalingConfigurationsResponseBodyScalingConfigurationsSecurityOptions extends $tea.Model {
21962
+ /**
21963
+ * @remarks
21964
+ * The confidential computing mode. Valid values:
21965
+ *
21966
+ * * Enclave: An enclave-based confidential computing environment is built on the instance. For more information, see [Build a confidential computing environment by using Enclave](https://help.aliyun.com/document_detail/203433.html).
21967
+ * * TDX: A Trust Domain Extensions (TDX) confidential computing environment is built on the instance. For more information, see [Build a TDX confidential computing environment](https://help.aliyun.com/document_detail/479090.html).
21968
+ *
21969
+ * @example
21970
+ * TDX
21971
+ */
21608
21972
  confidentialComputingMode?: string;
21609
21973
  static names(): {
21610
21974
  [key: string]: string;
@@ -22060,6 +22424,10 @@ export declare class DescribeScalingConfigurationsResponseBodyScalingConfigurati
22060
22424
  * The IDs of the security groups to which the ECS instances belong. ECS instances that belong to the same security group can communicate with each other.
22061
22425
  */
22062
22426
  securityGroupIds?: string[];
22427
+ /**
22428
+ * @remarks
22429
+ * The security options.
22430
+ */
22063
22431
  securityOptions?: DescribeScalingConfigurationsResponseBodyScalingConfigurationsSecurityOptions;
22064
22432
  /**
22065
22433
  * @remarks
@@ -22658,8 +23026,9 @@ export declare class DescribeScalingGroupDetailResponseBodyScalingGroup extends
22658
23026
  * @remarks
22659
23027
  * The health check mode of the scaling group. Valid values:
22660
23028
  *
22661
- * * NONE: Auto Scaling does not perform health checks in the scaling group.
22662
- * * ECS: Auto Scaling performs health checks on ECS instances in the scaling group.
23029
+ * * NONE: Auto Scaling does not perform health checks.
23030
+ * * ECS: Auto Scaling checks the health status of instances in the scaling group. If you want to enable instance health check, you can set the value to ECS, regardless of whether the scaling group is of ECS type or Elastic Container Instance type.
23031
+ * * LOAD_BALANCER: Auto Scaling checks the health status of instances in the scaling group based on the health check results of load balancers. The health check results of Classic Load Balancer (CLB) instances are not supported as the health check basis for instances in the scaling group.
22663
23032
  *
22664
23033
  * @example
22665
23034
  * ECS
@@ -22667,7 +23036,11 @@ export declare class DescribeScalingGroupDetailResponseBodyScalingGroup extends
22667
23036
  healthCheckType?: string;
22668
23037
  /**
22669
23038
  * @remarks
22670
- * The health check types.
23039
+ * The health check mode of the scaling group. Valid values:
23040
+ *
23041
+ * * NONE: Auto Scaling does not perform health checks.
23042
+ * * ECS: Auto Scaling checks the health status of instances in the scaling group. If you want to enable instance health check, you can set the value to ECS, regardless of whether the scaling group is of ECS type or Elastic Container Instance type.
23043
+ * * LOAD_BALANCER: Auto Scaling checks the health status of instances in the scaling group based on the health check results of load balancers. The health check results of CLB instances are not supported as the health check basis for instances in the scaling group.
22671
23044
  */
22672
23045
  healthCheckTypes?: string[];
22673
23046
  /**
@@ -23481,8 +23854,8 @@ export declare class DescribeScalingGroupsResponseBodyScalingGroups extends $tea
23481
23854
  * The health check mode of the scaling group. Valid values:
23482
23855
  *
23483
23856
  * * NONE: Auto Scaling does not perform health checks.
23484
- * * ECS: Auto Scaling checks the health status of ECS instances in the scaling group.
23485
- * * LOAD_BALANCER: Auto Scaling checks the health status of instances in the scaling group based on the health check results of load balancers. The health check results of Classic Load Balancer (CLB, formerly known as Server Load Balancer or SLB) instances are not used as the basis to perform health checks on the instances in the scaling group.
23857
+ * * ECS: Auto Scaling checks the health status of instances in the scaling group. If you want to enable instance health check, you can set the value to ECS, regardless of whether the scaling group is of ECS type or Elastic Container Instance type.
23858
+ * * LOAD_BALANCER: Auto Scaling checks the health status of instances in the scaling group based on the health check results of load balancers. The health check results of Classic Load Balancer (CLB) instances are not supported as the health check basis for instances in the scaling group.
23486
23859
  *
23487
23860
  * @example
23488
23861
  * ECS
@@ -23490,11 +23863,11 @@ export declare class DescribeScalingGroupsResponseBodyScalingGroups extends $tea
23490
23863
  healthCheckType?: string;
23491
23864
  /**
23492
23865
  * @remarks
23493
- * The health check modes of the scaling group. Valid values:
23866
+ * The health check mode of the scaling group. Valid values:
23494
23867
  *
23495
23868
  * * NONE: Auto Scaling does not perform health checks.
23496
- * * ECS: Auto Scaling checks the health status of ECS instances in the scaling group.
23497
- * * LOAD_BALANCER: Auto Scaling checks the health status of instances in the scaling group based on the health check results of load balancers. The health check results of CLB instances are not used as the basis to perform health checks on the instances in the scaling group.
23869
+ * * ECS: Auto Scaling checks the health status of instances in the scaling group. If you want to enable instance health check, you can set the value to ECS, regardless of whether the scaling group is of ECS type or Elastic Container Instance type.
23870
+ * * LOAD_BALANCER: Auto Scaling checks the health status of instances in the scaling group based on the health check results of load balancers. The health check results of CLB instances are not supported as the health check basis for instances in the scaling group.
23498
23871
  */
23499
23872
  healthCheckTypes?: string[];
23500
23873
  /**
@@ -23753,7 +24126,7 @@ export declare class DescribeScalingGroupsResponseBodyScalingGroups extends $tea
23753
24126
  spotAllocationStrategy?: string;
23754
24127
  /**
23755
24128
  * @remarks
23756
- * 伸缩组中抢占式实例的数量。
24129
+ * The number of preemptible instances in the scaling group.
23757
24130
  *
23758
24131
  * @example
23759
24132
  * 0
@@ -23783,6 +24156,11 @@ export declare class DescribeScalingGroupsResponseBodyScalingGroups extends $tea
23783
24156
  * 1
23784
24157
  */
23785
24158
  standbyCapacity?: number;
24159
+ /**
24160
+ * @example
24161
+ * 60
24162
+ */
24163
+ stopInstanceTimeout?: number;
23786
24164
  /**
23787
24165
  * @remarks
23788
24166
  * The number of instances that was stopped in Economical Mode in the scaling group.
@@ -26870,6 +27248,16 @@ export declare class ModifyScalingConfigurationRequestNetworkInterfaces extends
26870
27248
  });
26871
27249
  }
26872
27250
  export declare class ModifyScalingConfigurationRequestSecurityOptions extends $tea.Model {
27251
+ /**
27252
+ * @remarks
27253
+ * The confidential computing mode. Valid values:
27254
+ *
27255
+ * * Enclave: An enclave-based confidential computing environment is built on the instance. For more information, see [Build a confidential computing environment by using Enclave](https://help.aliyun.com/document_detail/203433.html).
27256
+ * * TDX: A Trust Domain Extensions (TDX) confidential computing environment is built on the instance. For more information, see [Build a TDX confidential computing environment](https://help.aliyun.com/document_detail/479090.html).
27257
+ *
27258
+ * @example
27259
+ * TDX
27260
+ */
26873
27261
  confidentialComputingMode?: string;
26874
27262
  static names(): {
26875
27263
  [key: string]: string;
@@ -27637,6 +28025,16 @@ export declare class ModifyScalingConfigurationShrinkRequestNetworkInterfaces ex
27637
28025
  });
27638
28026
  }
27639
28027
  export declare class ModifyScalingConfigurationShrinkRequestSecurityOptions extends $tea.Model {
28028
+ /**
28029
+ * @remarks
28030
+ * The confidential computing mode. Valid values:
28031
+ *
28032
+ * * Enclave: An enclave-based confidential computing environment is built on the instance. For more information, see [Build a confidential computing environment by using Enclave](https://help.aliyun.com/document_detail/203433.html).
28033
+ * * TDX: A Trust Domain Extensions (TDX) confidential computing environment is built on the instance. For more information, see [Build a TDX confidential computing environment](https://help.aliyun.com/document_detail/479090.html).
28034
+ *
28035
+ * @example
28036
+ * TDX
28037
+ */
27640
28038
  confidentialComputingMode?: string;
27641
28039
  static names(): {
27642
28040
  [key: string]: string;
@@ -27958,11 +28356,25 @@ export declare class ScaleWithAdjustmentRequestOverrides extends $tea.Model {
27958
28356
  }
27959
28357
  export declare class StartInstanceRefreshRequestDesiredConfiguration extends $tea.Model {
27960
28358
  /**
28359
+ * @remarks
28360
+ * The image ID.
28361
+ *
28362
+ * >
28363
+ *
28364
+ * * After the instance refresh task is complete, the active scaling configuration uses the image specified by this parameter.
28365
+ *
28366
+ * * If the instance configuration source of the scaling group is a launch template, you cannot specify this parameter.
28367
+ *
27961
28368
  * @example
27962
28369
  * m-2ze8cqacj7opnf***
27963
28370
  */
27964
28371
  imageId?: string;
27965
28372
  /**
28373
+ * @remarks
28374
+ * The ID of the scaling configuration.
28375
+ *
28376
+ * > After the instance refresh task is complete, the scaling group uses the scaling configuration specified by this parameter.
28377
+ *
27966
28378
  * @example
27967
28379
  * asc-2zed7lqn4ts4****
27968
28380
  */
@@ -28163,11 +28575,13 @@ export default class Client extends OpenApi {
28163
28575
  * Associates one or more ApsaraDB RDS instances with a scaling group.
28164
28576
  *
28165
28577
  * @remarks
28166
- * Before you associate an ApsaraDB RDS instance with a scaling group, make sure that the ApsaraDB RDS instance meets the following requirements:
28167
- * * The ApsaraDB RDS instance and the scaling group must belong to the same Alibaba Cloud account.
28168
- * * The ApsaraDB RDS instance must be unlocked. For more information about the lock policy, see [ApsaraDB RDS usage notes](https://help.aliyun.com/document_detail/41872.html).
28169
- * * The ApsaraDB RDS instance must be in the Running state.
28170
- * After an ApsaraDB RDS instance is associated with the scaling group, the default IP address whitelist of the ApsaraDB RDS instance can contain no more than 1,000 IP addresses. For more information, see [Set the whitelist](https://help.aliyun.com/document_detail/43185.html).
28578
+ * Before you attach an ApsaraDB RDS instance to a scaling group, make sure that the ApsaraDB RDS instance meets the following requirements:
28579
+ * * The ApsaraDB RDS instance and the scaling group belong to the same Alibaba Cloud account.
28580
+ * * The ApsaraDB RDS instance is unlocked. For information about the lock policy, see [ApsaraDB RDS usage notes](https://help.aliyun.com/document_detail/41872.html).
28581
+ * * The ApsaraDB RDS instance is in the Running state.
28582
+ * * The ApsaraDB RDS instance exists in the Alibaba Cloud account.
28583
+ * * If you reattach an ApsaraDB RDS instance to a scaling group, the total number of attached ApsaraDB RDS instances of the scaling group remains unchanged. But Auto Scaling adds the private IP addresses of all Elastic Compute Service (ECS) instances in the scaling group to the IP address whitelist of the ApsaraDB RDS instance.
28584
+ * > After you attach an ApsaraDB RDS instance to a scaling group, make sure that the number of IP addresses in the default whitelist of the ApsaraDB RDS instance is limited to 1,000. For information about IP address whitelists, see [Configure an IP address whitelist](https://help.aliyun.com/document_detail/96118.html).
28171
28585
  *
28172
28586
  * @param request - AttachDBInstancesRequest
28173
28587
  * @param runtime - runtime options for this request RuntimeOptions
@@ -28178,11 +28592,13 @@ export default class Client extends OpenApi {
28178
28592
  * Associates one or more ApsaraDB RDS instances with a scaling group.
28179
28593
  *
28180
28594
  * @remarks
28181
- * Before you associate an ApsaraDB RDS instance with a scaling group, make sure that the ApsaraDB RDS instance meets the following requirements:
28182
- * * The ApsaraDB RDS instance and the scaling group must belong to the same Alibaba Cloud account.
28183
- * * The ApsaraDB RDS instance must be unlocked. For more information about the lock policy, see [ApsaraDB RDS usage notes](https://help.aliyun.com/document_detail/41872.html).
28184
- * * The ApsaraDB RDS instance must be in the Running state.
28185
- * After an ApsaraDB RDS instance is associated with the scaling group, the default IP address whitelist of the ApsaraDB RDS instance can contain no more than 1,000 IP addresses. For more information, see [Set the whitelist](https://help.aliyun.com/document_detail/43185.html).
28595
+ * Before you attach an ApsaraDB RDS instance to a scaling group, make sure that the ApsaraDB RDS instance meets the following requirements:
28596
+ * * The ApsaraDB RDS instance and the scaling group belong to the same Alibaba Cloud account.
28597
+ * * The ApsaraDB RDS instance is unlocked. For information about the lock policy, see [ApsaraDB RDS usage notes](https://help.aliyun.com/document_detail/41872.html).
28598
+ * * The ApsaraDB RDS instance is in the Running state.
28599
+ * * The ApsaraDB RDS instance exists in the Alibaba Cloud account.
28600
+ * * If you reattach an ApsaraDB RDS instance to a scaling group, the total number of attached ApsaraDB RDS instances of the scaling group remains unchanged. But Auto Scaling adds the private IP addresses of all Elastic Compute Service (ECS) instances in the scaling group to the IP address whitelist of the ApsaraDB RDS instance.
28601
+ * > After you attach an ApsaraDB RDS instance to a scaling group, make sure that the number of IP addresses in the default whitelist of the ApsaraDB RDS instance is limited to 1,000. For information about IP address whitelists, see [Configure an IP address whitelist](https://help.aliyun.com/document_detail/96118.html).
28186
28602
  *
28187
28603
  * @param request - AttachDBInstancesRequest
28188
28604
  * @returns AttachDBInstancesResponse
@@ -28333,12 +28749,22 @@ export default class Client extends OpenApi {
28333
28749
  */
28334
28750
  attachVServerGroups(request: AttachVServerGroupsRequest): Promise<AttachVServerGroupsResponse>;
28335
28751
  /**
28752
+ * Cancels an instance refresh task. Take note that new instances that are used to replace old instances or that are scaled out still exist after you call this operation.
28753
+ *
28754
+ * @remarks
28755
+ * You cannot call this operation to cancel instance refresh tasks that are being rolled back.
28756
+ *
28336
28757
  * @param request - CancelInstanceRefreshRequest
28337
28758
  * @param runtime - runtime options for this request RuntimeOptions
28338
28759
  * @returns CancelInstanceRefreshResponse
28339
28760
  */
28340
28761
  cancelInstanceRefreshWithOptions(request: CancelInstanceRefreshRequest, runtime: $Util.RuntimeOptions): Promise<CancelInstanceRefreshResponse>;
28341
28762
  /**
28763
+ * Cancels an instance refresh task. Take note that new instances that are used to replace old instances or that are scaled out still exist after you call this operation.
28764
+ *
28765
+ * @remarks
28766
+ * You cannot call this operation to cancel instance refresh tasks that are being rolled back.
28767
+ *
28342
28768
  * @param request - CancelInstanceRefreshRequest
28343
28769
  * @returns CancelInstanceRefreshResponse
28344
28770
  */
@@ -28923,12 +29349,31 @@ export default class Client extends OpenApi {
28923
29349
  */
28924
29350
  describeEciScalingConfigurations(request: DescribeEciScalingConfigurationsRequest): Promise<DescribeEciScalingConfigurationsResponse>;
28925
29351
  /**
29352
+ * DescribeElasticStrength
29353
+ *
29354
+ * @param request - DescribeElasticStrengthRequest
29355
+ * @param runtime - runtime options for this request RuntimeOptions
29356
+ * @returns DescribeElasticStrengthResponse
29357
+ */
29358
+ describeElasticStrengthWithOptions(request: DescribeElasticStrengthRequest, runtime: $Util.RuntimeOptions): Promise<DescribeElasticStrengthResponse>;
29359
+ /**
29360
+ * DescribeElasticStrength
29361
+ *
29362
+ * @param request - DescribeElasticStrengthRequest
29363
+ * @returns DescribeElasticStrengthResponse
29364
+ */
29365
+ describeElasticStrength(request: DescribeElasticStrengthRequest): Promise<DescribeElasticStrengthResponse>;
29366
+ /**
29367
+ * Queries instance refresh tasks. If you want to view the basic information and execution progress of an instance refresh task, you can call the DescribeInstanceRefreshes operation.
29368
+ *
28926
29369
  * @param request - DescribeInstanceRefreshesRequest
28927
29370
  * @param runtime - runtime options for this request RuntimeOptions
28928
29371
  * @returns DescribeInstanceRefreshesResponse
28929
29372
  */
28930
29373
  describeInstanceRefreshesWithOptions(request: DescribeInstanceRefreshesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeInstanceRefreshesResponse>;
28931
29374
  /**
29375
+ * Queries instance refresh tasks. If you want to view the basic information and execution progress of an instance refresh task, you can call the DescribeInstanceRefreshes operation.
29376
+ *
28932
29377
  * @param request - DescribeInstanceRefreshesRequest
28933
29378
  * @returns DescribeInstanceRefreshesResponse
28934
29379
  */
@@ -29065,12 +29510,12 @@ export default class Client extends OpenApi {
29065
29510
  */
29066
29511
  describeRegions(request: DescribeRegionsRequest): Promise<DescribeRegionsResponse>;
29067
29512
  /**
29068
- * Queries scaling activities.
29513
+ * Queries scaling activities. You can call the DescribeScalingActivities operation to query the results of scaling activities triggered by scheduled tasks, event-triggered tasks, or manual execution of scaling rules. For example, you can query the status and cause of a scaling activity. You can also query the total number of instances after a scaling activity is complete.
29069
29514
  *
29070
29515
  * @remarks
29071
- * You can specify a scaling group ID to query all scaling activities in the scaling group.
29072
- * You can filter query results based on the status of scaling activities.
29073
- * You can query scaling activities that are executed in the previous 30 days.
29516
+ * You can query all scaling activities in a scaling group by specifying ScalingGroupId.
29517
+ * * You can filter query results based on the status of scaling activities.
29518
+ * * You can query scaling activities within the last 30 days.
29074
29519
  *
29075
29520
  * @param request - DescribeScalingActivitiesRequest
29076
29521
  * @param runtime - runtime options for this request RuntimeOptions
@@ -29078,12 +29523,12 @@ export default class Client extends OpenApi {
29078
29523
  */
29079
29524
  describeScalingActivitiesWithOptions(request: DescribeScalingActivitiesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeScalingActivitiesResponse>;
29080
29525
  /**
29081
- * Queries scaling activities.
29526
+ * Queries scaling activities. You can call the DescribeScalingActivities operation to query the results of scaling activities triggered by scheduled tasks, event-triggered tasks, or manual execution of scaling rules. For example, you can query the status and cause of a scaling activity. You can also query the total number of instances after a scaling activity is complete.
29082
29527
  *
29083
29528
  * @remarks
29084
- * You can specify a scaling group ID to query all scaling activities in the scaling group.
29085
- * You can filter query results based on the status of scaling activities.
29086
- * You can query scaling activities that are executed in the previous 30 days.
29529
+ * You can query all scaling activities in a scaling group by specifying ScalingGroupId.
29530
+ * * You can filter query results based on the status of scaling activities.
29531
+ * * You can query scaling activities within the last 30 days.
29087
29532
  *
29088
29533
  * @param request - DescribeScalingActivitiesRequest
29089
29534
  * @returns DescribeScalingActivitiesResponse
@@ -29120,7 +29565,7 @@ export default class Client extends OpenApi {
29120
29565
  */
29121
29566
  describeScalingConfigurations(request: DescribeScalingConfigurationsRequest): Promise<DescribeScalingConfigurationsResponse>;
29122
29567
  /**
29123
- * Queries a scaling group. You can call the DescribeScalingGroupDetail operation to query the basic information, instances, and scaling configurations of a scaling group. If you set OutputFormat to yaml, the output is a Kubernetes Deployment file in the YAML format.
29568
+ * Queries a scaling group. You can call the DescribeScalingGroupDetail operation to query the basic information, instances, and scaling configurations of a scaling group. If you set OutputFormat to YAML for a scaling group of the Elastic Container Instance type, the output is a Kubernetes Deployment file in the YAML format.
29124
29569
  *
29125
29570
  * @param request - DescribeScalingGroupDetailRequest
29126
29571
  * @param runtime - runtime options for this request RuntimeOptions
@@ -29128,7 +29573,7 @@ export default class Client extends OpenApi {
29128
29573
  */
29129
29574
  describeScalingGroupDetailWithOptions(request: DescribeScalingGroupDetailRequest, runtime: $Util.RuntimeOptions): Promise<DescribeScalingGroupDetailResponse>;
29130
29575
  /**
29131
- * Queries a scaling group. You can call the DescribeScalingGroupDetail operation to query the basic information, instances, and scaling configurations of a scaling group. If you set OutputFormat to yaml, the output is a Kubernetes Deployment file in the YAML format.
29576
+ * Queries a scaling group. You can call the DescribeScalingGroupDetail operation to query the basic information, instances, and scaling configurations of a scaling group. If you set OutputFormat to YAML for a scaling group of the Elastic Container Instance type, the output is a Kubernetes Deployment file in the YAML format.
29132
29577
  *
29133
29578
  * @param request - DescribeScalingGroupDetailRequest
29134
29579
  * @returns DescribeScalingGroupDetailResponse
@@ -29902,12 +30347,16 @@ export default class Client extends OpenApi {
29902
30347
  */
29903
30348
  removeInstances(request: RemoveInstancesRequest): Promise<RemoveInstancesResponse>;
29904
30349
  /**
30350
+ * Resumes an instance refresh task.
30351
+ *
29905
30352
  * @param request - ResumeInstanceRefreshRequest
29906
30353
  * @param runtime - runtime options for this request RuntimeOptions
29907
30354
  * @returns ResumeInstanceRefreshResponse
29908
30355
  */
29909
30356
  resumeInstanceRefreshWithOptions(request: ResumeInstanceRefreshRequest, runtime: $Util.RuntimeOptions): Promise<ResumeInstanceRefreshResponse>;
29910
30357
  /**
30358
+ * Resumes an instance refresh task.
30359
+ *
29911
30360
  * @param request - ResumeInstanceRefreshRequest
29912
30361
  * @returns ResumeInstanceRefreshResponse
29913
30362
  */
@@ -29928,12 +30377,16 @@ export default class Client extends OpenApi {
29928
30377
  */
29929
30378
  resumeProcesses(request: ResumeProcessesRequest): Promise<ResumeProcessesResponse>;
29930
30379
  /**
30380
+ * Rolls back an instance refresh task. If the configurations of an instance refresh task cannot meet your business requirements, you can call this operation to roll back the task. During the rollback process, Auto Scaling creates instances based on the active scaling configuration to replace instances that are created based on the configurations of the instance refresh task.
30381
+ *
29931
30382
  * @param request - RollbackInstanceRefreshRequest
29932
30383
  * @param runtime - runtime options for this request RuntimeOptions
29933
30384
  * @returns RollbackInstanceRefreshResponse
29934
30385
  */
29935
30386
  rollbackInstanceRefreshWithOptions(request: RollbackInstanceRefreshRequest, runtime: $Util.RuntimeOptions): Promise<RollbackInstanceRefreshResponse>;
29936
30387
  /**
30388
+ * Rolls back an instance refresh task. If the configurations of an instance refresh task cannot meet your business requirements, you can call this operation to roll back the task. During the rollback process, Auto Scaling creates instances based on the active scaling configuration to replace instances that are created based on the configurations of the instance refresh task.
30389
+ *
29937
30390
  * @param request - RollbackInstanceRefreshRequest
29938
30391
  * @returns RollbackInstanceRefreshResponse
29939
30392
  */
@@ -30008,13 +30461,13 @@ export default class Client extends OpenApi {
30008
30461
  */
30009
30462
  setInstanceHealth(request: SetInstanceHealthRequest): Promise<SetInstanceHealthResponse>;
30010
30463
  /**
30011
- * Puts Elastic Compute Service (ECS) instances into the Protected state. When ECS instances are put into the Protected state, they become immune to manual deletion attempts by using the Auto Scaling console or API operations. This operation serves as a robust safeguard, efficiently preventing any inadvertent instance release that could lead to irreversible consequences.
30464
+ * Puts or removes Elastic Compute Service (ECS) instances into or from the Protected state. After you put an ECS instance into the Protected state, the ECS instance will not be stopped or released when a scale-in event is triggered. In this case, you can manually delete the ECS instance in the Auto Scaling console or by calling the RemoveInstances operation.
30012
30465
  *
30013
30466
  * @remarks
30014
30467
  * Once ECS instances enter the Protected state, they become subject to the following restrictions:
30015
30468
  * * ECS instances will persist in the Protected state, unless you deliberately remove them from this state.
30016
- * * Even in scenarios where automatic scale-in actions are initiated due to fluctuations in the number of ECS instances or the execution of event-triggered tasks, Auto Scaling does not remove ECS instances that are in the Protected state from their respective scaling groups. Only after being manually removed from their respective scaling groups can ECS instances that are in the Protected state be released. For more information, see [Remove an ECS instance](https://help.aliyun.com/document_detail/25955.html).
30017
- * * ECS instances in the Protected state maintain their existing health status even when they undergo stopping or restarting processes.
30469
+ * * Even in scenarios where automatic scale-in actions are initiated due to fluctuations in the number of ECS instances or the execution of event-triggered tasks, Auto Scaling does not remove ECS instances that are in the Protected state from their respective scaling groups. Only after being manually removed from their respective scaling groups can ECS instances that are in the Protected state be released. For more information, see [Remove an ECS instance](https://help.aliyun.com/document_detail/459393.html).
30470
+ * * ECS instances in the Protected state maintain their health status even when they undergo stopping or restarting processes.
30018
30471
  *
30019
30472
  * @param request - SetInstancesProtectionRequest
30020
30473
  * @param runtime - runtime options for this request RuntimeOptions
@@ -30022,36 +30475,62 @@ export default class Client extends OpenApi {
30022
30475
  */
30023
30476
  setInstancesProtectionWithOptions(request: SetInstancesProtectionRequest, runtime: $Util.RuntimeOptions): Promise<SetInstancesProtectionResponse>;
30024
30477
  /**
30025
- * Puts Elastic Compute Service (ECS) instances into the Protected state. When ECS instances are put into the Protected state, they become immune to manual deletion attempts by using the Auto Scaling console or API operations. This operation serves as a robust safeguard, efficiently preventing any inadvertent instance release that could lead to irreversible consequences.
30478
+ * Puts or removes Elastic Compute Service (ECS) instances into or from the Protected state. After you put an ECS instance into the Protected state, the ECS instance will not be stopped or released when a scale-in event is triggered. In this case, you can manually delete the ECS instance in the Auto Scaling console or by calling the RemoveInstances operation.
30026
30479
  *
30027
30480
  * @remarks
30028
30481
  * Once ECS instances enter the Protected state, they become subject to the following restrictions:
30029
30482
  * * ECS instances will persist in the Protected state, unless you deliberately remove them from this state.
30030
- * * Even in scenarios where automatic scale-in actions are initiated due to fluctuations in the number of ECS instances or the execution of event-triggered tasks, Auto Scaling does not remove ECS instances that are in the Protected state from their respective scaling groups. Only after being manually removed from their respective scaling groups can ECS instances that are in the Protected state be released. For more information, see [Remove an ECS instance](https://help.aliyun.com/document_detail/25955.html).
30031
- * * ECS instances in the Protected state maintain their existing health status even when they undergo stopping or restarting processes.
30483
+ * * Even in scenarios where automatic scale-in actions are initiated due to fluctuations in the number of ECS instances or the execution of event-triggered tasks, Auto Scaling does not remove ECS instances that are in the Protected state from their respective scaling groups. Only after being manually removed from their respective scaling groups can ECS instances that are in the Protected state be released. For more information, see [Remove an ECS instance](https://help.aliyun.com/document_detail/459393.html).
30484
+ * * ECS instances in the Protected state maintain their health status even when they undergo stopping or restarting processes.
30032
30485
  *
30033
30486
  * @param request - SetInstancesProtectionRequest
30034
30487
  * @returns SetInstancesProtectionResponse
30035
30488
  */
30036
30489
  setInstancesProtection(request: SetInstancesProtectionRequest): Promise<SetInstancesProtectionResponse>;
30037
30490
  /**
30491
+ * Starts an instance refresh task. If you want to batch update instance images, modify information in scaling configurations, and scale out instances based on new configurations, you can call the StartInstanceRefresh.html operation. After you start an instance refresh task, Auto Scaling gradually creates new instances from the desired configurations provided by the task to replace old instances. When all replacements are complete, the configurations of instances in your scaling group perfectly match your expectations.
30492
+ *
30493
+ * @remarks
30494
+ * Only one instance refresh task can be executed at a time in a scaling group.
30495
+ * * Instance refresh tasks are currently supported only by scaling groups of the Elastic Compute Service (ECS) type and using **the priority policy**. Scaling groups that use the number of vCPUs as the method to calculate the group capacity or scaling groups whose instance reclaim mode is **Economical Mode** or **Forcibly Recycle** do not support instance refresh tasks.
30496
+ * * During the execution of an instance refresh task, scaling events can be complete as expected. Take note that instances that are scaled out use the desired configurations provided by the instance refresh task.
30497
+ * * Instance refresh tasks does not take effect on instances that are manually added and instances that are in the Standby and Protected states.
30498
+ *
30038
30499
  * @param request - StartInstanceRefreshRequest
30039
30500
  * @param runtime - runtime options for this request RuntimeOptions
30040
30501
  * @returns StartInstanceRefreshResponse
30041
30502
  */
30042
30503
  startInstanceRefreshWithOptions(request: StartInstanceRefreshRequest, runtime: $Util.RuntimeOptions): Promise<StartInstanceRefreshResponse>;
30043
30504
  /**
30505
+ * Starts an instance refresh task. If you want to batch update instance images, modify information in scaling configurations, and scale out instances based on new configurations, you can call the StartInstanceRefresh.html operation. After you start an instance refresh task, Auto Scaling gradually creates new instances from the desired configurations provided by the task to replace old instances. When all replacements are complete, the configurations of instances in your scaling group perfectly match your expectations.
30506
+ *
30507
+ * @remarks
30508
+ * Only one instance refresh task can be executed at a time in a scaling group.
30509
+ * * Instance refresh tasks are currently supported only by scaling groups of the Elastic Compute Service (ECS) type and using **the priority policy**. Scaling groups that use the number of vCPUs as the method to calculate the group capacity or scaling groups whose instance reclaim mode is **Economical Mode** or **Forcibly Recycle** do not support instance refresh tasks.
30510
+ * * During the execution of an instance refresh task, scaling events can be complete as expected. Take note that instances that are scaled out use the desired configurations provided by the instance refresh task.
30511
+ * * Instance refresh tasks does not take effect on instances that are manually added and instances that are in the Standby and Protected states.
30512
+ *
30044
30513
  * @param request - StartInstanceRefreshRequest
30045
30514
  * @returns StartInstanceRefreshResponse
30046
30515
  */
30047
30516
  startInstanceRefresh(request: StartInstanceRefreshRequest): Promise<StartInstanceRefreshResponse>;
30048
30517
  /**
30518
+ * Suspends an instance refresh task. You can call this operation to suspend an ongoing instance refresh task for observation.
30519
+ *
30520
+ * @remarks
30521
+ * You cannot call this operation to suspend an instance refresh task that is being rolled back.
30522
+ *
30049
30523
  * @param request - SuspendInstanceRefreshRequest
30050
30524
  * @param runtime - runtime options for this request RuntimeOptions
30051
30525
  * @returns SuspendInstanceRefreshResponse
30052
30526
  */
30053
30527
  suspendInstanceRefreshWithOptions(request: SuspendInstanceRefreshRequest, runtime: $Util.RuntimeOptions): Promise<SuspendInstanceRefreshResponse>;
30054
30528
  /**
30529
+ * Suspends an instance refresh task. You can call this operation to suspend an ongoing instance refresh task for observation.
30530
+ *
30531
+ * @remarks
30532
+ * You cannot call this operation to suspend an instance refresh task that is being rolled back.
30533
+ *
30055
30534
  * @param request - SuspendInstanceRefreshRequest
30056
30535
  * @returns SuspendInstanceRefreshResponse
30057
30536
  */