@alicloud/ess20220222 1.4.0 → 1.4.1
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 +64 -46
- package/dist/client.js +72 -46
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +76 -46
package/dist/client.d.ts
CHANGED
|
@@ -2497,6 +2497,7 @@ export declare class DetachInstancesRequest extends $tea.Model {
|
|
|
2497
2497
|
clientToken?: string;
|
|
2498
2498
|
decreaseDesiredCapacity?: boolean;
|
|
2499
2499
|
detachOption?: string;
|
|
2500
|
+
ignoreInvalidInstance?: boolean;
|
|
2500
2501
|
instanceIds?: string[];
|
|
2501
2502
|
lifecycleHook?: boolean;
|
|
2502
2503
|
ownerAccount?: string;
|
|
@@ -3885,6 +3886,7 @@ export declare class RecordLifecycleActionHeartbeatResponse extends $tea.Model {
|
|
|
3885
3886
|
export declare class RemoveInstancesRequest extends $tea.Model {
|
|
3886
3887
|
clientToken?: string;
|
|
3887
3888
|
decreaseDesiredCapacity?: boolean;
|
|
3889
|
+
ignoreInvalidInstance?: boolean;
|
|
3888
3890
|
instanceIds?: string[];
|
|
3889
3891
|
ownerAccount?: string;
|
|
3890
3892
|
ownerId?: number;
|
|
@@ -8724,7 +8726,7 @@ export default class Client extends OpenApi {
|
|
|
8724
8726
|
*/
|
|
8725
8727
|
deactivateScalingConfiguration(request: DeactivateScalingConfigurationRequest): Promise<DeactivateScalingConfigurationResponse>;
|
|
8726
8728
|
/**
|
|
8727
|
-
* @summary Deletes an event-triggered task.
|
|
8729
|
+
* @summary Deletes an event-triggered task. If your business pattern is unpredictable or prone to unforeseen traffic spikes, you can create event-triggered tasks by associating CloudMonitor metrics to effectively monitor fluctuations in your business workload. Upon detecting that the criteria for alerts, as specified in event-triggered tasks, are fulfilled, Auto Scaling promptly issues alerts and executes the scaling rules predefined within those tasks. This process occurs within the predefined effective time windows of the tasks, thereby facilitating the automatic increase or decrease of Elastic Compute Service (ECS) instances or elastic container instances within your scaling groups. Ultimately, this mechanism ensures the dynamic optimization of resources based on real-time workload demands. If you no longer need an event-triggered task, you can call the DeleteAlarm operation to delete it.
|
|
8728
8730
|
*
|
|
8729
8731
|
* @param request DeleteAlarmRequest
|
|
8730
8732
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -8732,18 +8734,18 @@ export default class Client extends OpenApi {
|
|
|
8732
8734
|
*/
|
|
8733
8735
|
deleteAlarmWithOptions(request: DeleteAlarmRequest, runtime: $Util.RuntimeOptions): Promise<DeleteAlarmResponse>;
|
|
8734
8736
|
/**
|
|
8735
|
-
* @summary Deletes an event-triggered task.
|
|
8737
|
+
* @summary Deletes an event-triggered task. If your business pattern is unpredictable or prone to unforeseen traffic spikes, you can create event-triggered tasks by associating CloudMonitor metrics to effectively monitor fluctuations in your business workload. Upon detecting that the criteria for alerts, as specified in event-triggered tasks, are fulfilled, Auto Scaling promptly issues alerts and executes the scaling rules predefined within those tasks. This process occurs within the predefined effective time windows of the tasks, thereby facilitating the automatic increase or decrease of Elastic Compute Service (ECS) instances or elastic container instances within your scaling groups. Ultimately, this mechanism ensures the dynamic optimization of resources based on real-time workload demands. If you no longer need an event-triggered task, you can call the DeleteAlarm operation to delete it.
|
|
8736
8738
|
*
|
|
8737
8739
|
* @param request DeleteAlarmRequest
|
|
8738
8740
|
* @return DeleteAlarmResponse
|
|
8739
8741
|
*/
|
|
8740
8742
|
deleteAlarm(request: DeleteAlarmRequest): Promise<DeleteAlarmResponse>;
|
|
8741
8743
|
/**
|
|
8742
|
-
* @summary Deletes a scaling configuration
|
|
8744
|
+
* @summary Deletes a scaling configuration of the Elastic Container Instance type. If the scaling configuration of a scaling group is in the Inactive state and the scaling group contains no elastic container instances created from the scaling configuration, you can call the DeleteEciScalingConfiguration operation to delete the scaling configuration to free up the scaling configuration quota.
|
|
8743
8745
|
*
|
|
8744
|
-
* @description You cannot
|
|
8746
|
+
* @description You cannot call this operation to delete a scaling configuration in the following scenarios:
|
|
8745
8747
|
* * The scaling configuration is in the Active state.
|
|
8746
|
-
* * The scaling group contains elastic container instances
|
|
8748
|
+
* * The scaling group contains elastic container instances created from the scaling configuration.
|
|
8747
8749
|
*
|
|
8748
8750
|
* @param request DeleteEciScalingConfigurationRequest
|
|
8749
8751
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -8751,11 +8753,11 @@ export default class Client extends OpenApi {
|
|
|
8751
8753
|
*/
|
|
8752
8754
|
deleteEciScalingConfigurationWithOptions(request: DeleteEciScalingConfigurationRequest, runtime: $Util.RuntimeOptions): Promise<DeleteEciScalingConfigurationResponse>;
|
|
8753
8755
|
/**
|
|
8754
|
-
* @summary Deletes a scaling configuration
|
|
8756
|
+
* @summary Deletes a scaling configuration of the Elastic Container Instance type. If the scaling configuration of a scaling group is in the Inactive state and the scaling group contains no elastic container instances created from the scaling configuration, you can call the DeleteEciScalingConfiguration operation to delete the scaling configuration to free up the scaling configuration quota.
|
|
8755
8757
|
*
|
|
8756
|
-
* @description You cannot
|
|
8758
|
+
* @description You cannot call this operation to delete a scaling configuration in the following scenarios:
|
|
8757
8759
|
* * The scaling configuration is in the Active state.
|
|
8758
|
-
* * The scaling group contains elastic container instances
|
|
8760
|
+
* * The scaling group contains elastic container instances created from the scaling configuration.
|
|
8759
8761
|
*
|
|
8760
8762
|
* @param request DeleteEciScalingConfigurationRequest
|
|
8761
8763
|
* @return DeleteEciScalingConfigurationResponse
|
|
@@ -8785,7 +8787,7 @@ export default class Client extends OpenApi {
|
|
|
8785
8787
|
*/
|
|
8786
8788
|
deleteLifecycleHook(request: DeleteLifecycleHookRequest): Promise<DeleteLifecycleHookResponse>;
|
|
8787
8789
|
/**
|
|
8788
|
-
* @summary Deletes
|
|
8790
|
+
* @summary Deletes event notification rules. The event notification feature facilitates efficient issue identification and event management by automatically forwarding notifications from Auto Scaling to designated endpoints such as CloudMonitor or Message Service (MNS) topics and queues. If you no longer require an event notification rule, you can call the DeleteNotificationConfiguration operation to delete it.
|
|
8789
8791
|
*
|
|
8790
8792
|
* @param request DeleteNotificationConfigurationRequest
|
|
8791
8793
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -8793,7 +8795,7 @@ export default class Client extends OpenApi {
|
|
|
8793
8795
|
*/
|
|
8794
8796
|
deleteNotificationConfigurationWithOptions(request: DeleteNotificationConfigurationRequest, runtime: $Util.RuntimeOptions): Promise<DeleteNotificationConfigurationResponse>;
|
|
8795
8797
|
/**
|
|
8796
|
-
* @summary Deletes
|
|
8798
|
+
* @summary Deletes event notification rules. The event notification feature facilitates efficient issue identification and event management by automatically forwarding notifications from Auto Scaling to designated endpoints such as CloudMonitor or Message Service (MNS) topics and queues. If you no longer require an event notification rule, you can call the DeleteNotificationConfiguration operation to delete it.
|
|
8797
8799
|
*
|
|
8798
8800
|
* @param request DeleteNotificationConfigurationRequest
|
|
8799
8801
|
* @return DeleteNotificationConfigurationResponse
|
|
@@ -8823,11 +8825,18 @@ export default class Client extends OpenApi {
|
|
|
8823
8825
|
*/
|
|
8824
8826
|
deleteScalingConfiguration(request: DeleteScalingConfigurationRequest): Promise<DeleteScalingConfigurationResponse>;
|
|
8825
8827
|
/**
|
|
8826
|
-
* @summary Deletes a scaling group.
|
|
8828
|
+
* @summary Deletes a scaling group. If you want to enable policy-based automatic addition or removal of instances of a specific type to meet evolving business requirements, you can create scaling groups to manage your computing power with ease. The computing power refers to the instances that provide the computing capability. If you no longer require a scaling group, you can call the DeleteScalingGroup operation to delete it to free up the scaling group quota.
|
|
8827
8829
|
*
|
|
8828
|
-
* @description Before you
|
|
8829
|
-
* *
|
|
8830
|
-
* *
|
|
8830
|
+
* @description Before you call the DeleteScalingGroup operation, take note of the following items:
|
|
8831
|
+
* * If you delete a scaling group, the scaling configurations, scaling rules, scaling activities, and scaling requests related to the scaling group are also deleted.
|
|
8832
|
+
* * If you delete a scaling group, the scheduled tasks and event-triggered tasks of the scaling group are not deleted. The Server Load Balancer (SLB) instances and ApsaraDB RDS instances that are attached to the scaling group are also not deleted.
|
|
8833
|
+
* * If the scaling group that you want to delete contains ECS instances or elastic container instances that are in the In Service state, Auto Scaling stops the instances and then removes all manually added instances from the scaling group or releases all automatically created instances in the scaling group before the scaling group is deleted.
|
|
8834
|
+
* **
|
|
8835
|
+
* **Note** Before you delete a scaling group, make sure that the Deletion Protection feature is disabled. If you have enabled the Deletion Protection feature for a scaling group, disable the feature on the Modify Scaling Group page before you delete the scaling group.
|
|
8836
|
+
* * If you do not disable the Deletion Protection feature for a scaling group, you cannot delete the scaling group by using the Auto Scaling console or calling this operation. The Deletion Protection feature is an effective measure to safeguard scaling groups against unintended deletion.
|
|
8837
|
+
* * Prior to deleting a scaling group, make sure that your ECS instances within the scaling group are safeguarded against unintended release. Even if you have already enabled the Release Protection feature for the ECS instances, you must manually put these ECS instances into the Protected state. Doing so guarantees that the ECS instances will not be forcibly released during the deletion process of the scaling group, providing an extra layer of security.
|
|
8838
|
+
* **
|
|
8839
|
+
* **Note** Before you delete a scaling group, we recommend that you enable the Deletion Protection feature for ECS instances that you want to retain. This action guarantees that the ECS instances are not forcibly released after you delete the scaling group. For more information, see [SetInstancesProtection](https://help.aliyun.com/document_detail/459342.html).
|
|
8831
8840
|
*
|
|
8832
8841
|
* @param request DeleteScalingGroupRequest
|
|
8833
8842
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -8835,11 +8844,18 @@ export default class Client extends OpenApi {
|
|
|
8835
8844
|
*/
|
|
8836
8845
|
deleteScalingGroupWithOptions(request: DeleteScalingGroupRequest, runtime: $Util.RuntimeOptions): Promise<DeleteScalingGroupResponse>;
|
|
8837
8846
|
/**
|
|
8838
|
-
* @summary Deletes a scaling group.
|
|
8847
|
+
* @summary Deletes a scaling group. If you want to enable policy-based automatic addition or removal of instances of a specific type to meet evolving business requirements, you can create scaling groups to manage your computing power with ease. The computing power refers to the instances that provide the computing capability. If you no longer require a scaling group, you can call the DeleteScalingGroup operation to delete it to free up the scaling group quota.
|
|
8839
8848
|
*
|
|
8840
|
-
* @description Before you
|
|
8841
|
-
* *
|
|
8842
|
-
* *
|
|
8849
|
+
* @description Before you call the DeleteScalingGroup operation, take note of the following items:
|
|
8850
|
+
* * If you delete a scaling group, the scaling configurations, scaling rules, scaling activities, and scaling requests related to the scaling group are also deleted.
|
|
8851
|
+
* * If you delete a scaling group, the scheduled tasks and event-triggered tasks of the scaling group are not deleted. The Server Load Balancer (SLB) instances and ApsaraDB RDS instances that are attached to the scaling group are also not deleted.
|
|
8852
|
+
* * If the scaling group that you want to delete contains ECS instances or elastic container instances that are in the In Service state, Auto Scaling stops the instances and then removes all manually added instances from the scaling group or releases all automatically created instances in the scaling group before the scaling group is deleted.
|
|
8853
|
+
* **
|
|
8854
|
+
* **Note** Before you delete a scaling group, make sure that the Deletion Protection feature is disabled. If you have enabled the Deletion Protection feature for a scaling group, disable the feature on the Modify Scaling Group page before you delete the scaling group.
|
|
8855
|
+
* * If you do not disable the Deletion Protection feature for a scaling group, you cannot delete the scaling group by using the Auto Scaling console or calling this operation. The Deletion Protection feature is an effective measure to safeguard scaling groups against unintended deletion.
|
|
8856
|
+
* * Prior to deleting a scaling group, make sure that your ECS instances within the scaling group are safeguarded against unintended release. Even if you have already enabled the Release Protection feature for the ECS instances, you must manually put these ECS instances into the Protected state. Doing so guarantees that the ECS instances will not be forcibly released during the deletion process of the scaling group, providing an extra layer of security.
|
|
8857
|
+
* **
|
|
8858
|
+
* **Note** Before you delete a scaling group, we recommend that you enable the Deletion Protection feature for ECS instances that you want to retain. This action guarantees that the ECS instances are not forcibly released after you delete the scaling group. For more information, see [SetInstancesProtection](https://help.aliyun.com/document_detail/459342.html).
|
|
8843
8859
|
*
|
|
8844
8860
|
* @param request DeleteScalingGroupRequest
|
|
8845
8861
|
* @return DeleteScalingGroupResponse
|
|
@@ -8861,7 +8877,7 @@ export default class Client extends OpenApi {
|
|
|
8861
8877
|
*/
|
|
8862
8878
|
deleteScalingRule(request: DeleteScalingRuleRequest): Promise<DeleteScalingRuleResponse>;
|
|
8863
8879
|
/**
|
|
8864
|
-
* @summary Deletes a scheduled task.
|
|
8880
|
+
* @summary Deletes scheduled tasks. For workloads with predictable patterns, you can create scheduled tasks to align with your business requirements and optimize resource utilization for cost savings. These tasks automatically ensure that sufficient computing resources are provisioned in anticipation of peak hours and efficiently release unused resources during off-peak hours, thereby streamlining operational efficiency and reducing expenses. If you no longer require a scheduled task, you can call the DeleteScheduledTask operation to delete it.
|
|
8865
8881
|
*
|
|
8866
8882
|
* @param request DeleteScheduledTaskRequest
|
|
8867
8883
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -8869,7 +8885,7 @@ export default class Client extends OpenApi {
|
|
|
8869
8885
|
*/
|
|
8870
8886
|
deleteScheduledTaskWithOptions(request: DeleteScheduledTaskRequest, runtime: $Util.RuntimeOptions): Promise<DeleteScheduledTaskResponse>;
|
|
8871
8887
|
/**
|
|
8872
|
-
* @summary Deletes a scheduled task.
|
|
8888
|
+
* @summary Deletes scheduled tasks. For workloads with predictable patterns, you can create scheduled tasks to align with your business requirements and optimize resource utilization for cost savings. These tasks automatically ensure that sufficient computing resources are provisioned in anticipation of peak hours and efficiently release unused resources during off-peak hours, thereby streamlining operational efficiency and reducing expenses. If you no longer require a scheduled task, you can call the DeleteScheduledTask operation to delete it.
|
|
8873
8889
|
*
|
|
8874
8890
|
* @param request DeleteScheduledTaskRequest
|
|
8875
8891
|
* @return DeleteScheduledTaskResponse
|
|
@@ -9033,7 +9049,7 @@ export default class Client extends OpenApi {
|
|
|
9033
9049
|
*/
|
|
9034
9050
|
describePatternTypes(request: DescribePatternTypesRequest): Promise<DescribePatternTypesResponse>;
|
|
9035
9051
|
/**
|
|
9036
|
-
* @summary Queries the regions
|
|
9052
|
+
* @summary Queries regions. Before you activate Auto Scaling, you can call the DescribeRegions operation to query the regions where Auto Scaling is officially launched. This preliminary step facilitates the strategic selection of both the optimal region and availability zones for activating Auto Scaling, thereby guaranteeing the finest access speeds and operational efficiency within your chosen geographical area.
|
|
9037
9053
|
*
|
|
9038
9054
|
* @param request DescribeRegionsRequest
|
|
9039
9055
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -9041,7 +9057,7 @@ export default class Client extends OpenApi {
|
|
|
9041
9057
|
*/
|
|
9042
9058
|
describeRegionsWithOptions(request: DescribeRegionsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRegionsResponse>;
|
|
9043
9059
|
/**
|
|
9044
|
-
* @summary Queries the regions
|
|
9060
|
+
* @summary Queries regions. Before you activate Auto Scaling, you can call the DescribeRegions operation to query the regions where Auto Scaling is officially launched. This preliminary step facilitates the strategic selection of both the optimal region and availability zones for activating Auto Scaling, thereby guaranteeing the finest access speeds and operational efficiency within your chosen geographical area.
|
|
9045
9061
|
*
|
|
9046
9062
|
* @param request DescribeRegionsRequest
|
|
9047
9063
|
* @return DescribeRegionsResponse
|
|
@@ -9306,7 +9322,9 @@ export default class Client extends OpenApi {
|
|
|
9306
9322
|
*/
|
|
9307
9323
|
detachVServerGroups(request: DetachVServerGroupsRequest): Promise<DetachVServerGroupsResponse>;
|
|
9308
9324
|
/**
|
|
9309
|
-
* @summary Disables an event-triggered task.
|
|
9325
|
+
* @summary Disables an event-triggered task. If your business pattern is unpredictable or prone to unforeseen traffic spikes, you can create event-triggered tasks by associating CloudMonitor metrics to effectively monitor fluctuations in your business workload. Upon detecting that the criteria for alerts, as specified in event-triggered tasks, are fulfilled, Auto Scaling promptly issues alerts and executes the scaling rules predefined within those tasks. This process occurs within the predefined effective time windows of the tasks, thereby facilitating the automatic increase or decrease of Elastic Compute Service (ECS) instances or elastic container instances within your scaling groups. Ultimately, this mechanism ensures the dynamic optimization of resources based on real-time workload demands. If you currently do not need an event-triggered task, you can call the DisableAlarm operation to disable it.
|
|
9326
|
+
*
|
|
9327
|
+
* @description Before you disable an event-triggered task, make sure that the task is in the `Normal`, `Alert`, or `Insufficient Data` state.
|
|
9310
9328
|
*
|
|
9311
9329
|
* @param request DisableAlarmRequest
|
|
9312
9330
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -9314,7 +9332,9 @@ export default class Client extends OpenApi {
|
|
|
9314
9332
|
*/
|
|
9315
9333
|
disableAlarmWithOptions(request: DisableAlarmRequest, runtime: $Util.RuntimeOptions): Promise<DisableAlarmResponse>;
|
|
9316
9334
|
/**
|
|
9317
|
-
* @summary Disables an event-triggered task.
|
|
9335
|
+
* @summary Disables an event-triggered task. If your business pattern is unpredictable or prone to unforeseen traffic spikes, you can create event-triggered tasks by associating CloudMonitor metrics to effectively monitor fluctuations in your business workload. Upon detecting that the criteria for alerts, as specified in event-triggered tasks, are fulfilled, Auto Scaling promptly issues alerts and executes the scaling rules predefined within those tasks. This process occurs within the predefined effective time windows of the tasks, thereby facilitating the automatic increase or decrease of Elastic Compute Service (ECS) instances or elastic container instances within your scaling groups. Ultimately, this mechanism ensures the dynamic optimization of resources based on real-time workload demands. If you currently do not need an event-triggered task, you can call the DisableAlarm operation to disable it.
|
|
9336
|
+
*
|
|
9337
|
+
* @description Before you disable an event-triggered task, make sure that the task is in the `Normal`, `Alert`, or `Insufficient Data` state.
|
|
9318
9338
|
*
|
|
9319
9339
|
* @param request DisableAlarmRequest
|
|
9320
9340
|
* @return DisableAlarmResponse
|
|
@@ -9344,7 +9364,7 @@ export default class Client extends OpenApi {
|
|
|
9344
9364
|
*/
|
|
9345
9365
|
disableScalingGroup(request: DisableScalingGroupRequest): Promise<DisableScalingGroupResponse>;
|
|
9346
9366
|
/**
|
|
9347
|
-
* @summary Enables an event-triggered task.
|
|
9367
|
+
* @summary Enables an event-triggered task. If your business pattern is unpredictable or prone to unforeseen traffic spikes, you can create event-triggered tasks by associating CloudMonitor metrics to effectively monitor fluctuations in your business workload. Upon detecting that the criteria for alerts, as specified in event-triggered tasks, are fulfilled, Auto Scaling promptly issues alerts and executes the scaling rules predefined within those tasks. This process occurs within the predefined effective time windows of the tasks, thereby facilitating the automatic increase or decrease of Elastic Compute Service (ECS) instances or elastic container instances within your scaling groups. Ultimately, this mechanism ensures the dynamic optimization of resources based on real-time workload demands. If you want to reuse an event-triggered task that is in the Disabled state, you can call the EnableAlarm operation to enable it.
|
|
9348
9368
|
*
|
|
9349
9369
|
* @param request EnableAlarmRequest
|
|
9350
9370
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -9352,7 +9372,7 @@ export default class Client extends OpenApi {
|
|
|
9352
9372
|
*/
|
|
9353
9373
|
enableAlarmWithOptions(request: EnableAlarmRequest, runtime: $Util.RuntimeOptions): Promise<EnableAlarmResponse>;
|
|
9354
9374
|
/**
|
|
9355
|
-
* @summary Enables an event-triggered task.
|
|
9375
|
+
* @summary Enables an event-triggered task. If your business pattern is unpredictable or prone to unforeseen traffic spikes, you can create event-triggered tasks by associating CloudMonitor metrics to effectively monitor fluctuations in your business workload. Upon detecting that the criteria for alerts, as specified in event-triggered tasks, are fulfilled, Auto Scaling promptly issues alerts and executes the scaling rules predefined within those tasks. This process occurs within the predefined effective time windows of the tasks, thereby facilitating the automatic increase or decrease of Elastic Compute Service (ECS) instances or elastic container instances within your scaling groups. Ultimately, this mechanism ensures the dynamic optimization of resources based on real-time workload demands. If you want to reuse an event-triggered task that is in the Disabled state, you can call the EnableAlarm operation to enable it.
|
|
9356
9376
|
*
|
|
9357
9377
|
* @param request EnableAlarmRequest
|
|
9358
9378
|
* @return EnableAlarmResponse
|
|
@@ -9497,7 +9517,7 @@ export default class Client extends OpenApi {
|
|
|
9497
9517
|
*/
|
|
9498
9518
|
listTagResources(request: ListTagResourcesRequest): Promise<ListTagResourcesResponse>;
|
|
9499
9519
|
/**
|
|
9500
|
-
* @summary Queries tag
|
|
9520
|
+
* @summary Queries the tag keys associated with Auto Scaling resources to facilitate a deeper comprehension of those resources. By doing so, you can categorize and manage your Auto Scaling resources more efficiently.
|
|
9501
9521
|
*
|
|
9502
9522
|
* @param request ListTagValuesRequest
|
|
9503
9523
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -9505,7 +9525,7 @@ export default class Client extends OpenApi {
|
|
|
9505
9525
|
*/
|
|
9506
9526
|
listTagValuesWithOptions(request: ListTagValuesRequest, runtime: $Util.RuntimeOptions): Promise<ListTagValuesResponse>;
|
|
9507
9527
|
/**
|
|
9508
|
-
* @summary Queries tag
|
|
9528
|
+
* @summary Queries the tag keys associated with Auto Scaling resources to facilitate a deeper comprehension of those resources. By doing so, you can categorize and manage your Auto Scaling resources more efficiently.
|
|
9509
9529
|
*
|
|
9510
9530
|
* @param request ListTagValuesRequest
|
|
9511
9531
|
* @return ListTagValuesResponse
|
|
@@ -9874,13 +9894,12 @@ export default class Client extends OpenApi {
|
|
|
9874
9894
|
*/
|
|
9875
9895
|
setInstanceHealth(request: SetInstanceHealthRequest): Promise<SetInstanceHealthResponse>;
|
|
9876
9896
|
/**
|
|
9877
|
-
* @summary Puts
|
|
9897
|
+
* @summary 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.
|
|
9878
9898
|
*
|
|
9879
|
-
* @description
|
|
9880
|
-
*
|
|
9881
|
-
* *
|
|
9882
|
-
* *
|
|
9883
|
-
* * After you put an ECS instance into the Protected state, Auto Scaling does not update the health status of the instance when the instance is stopped or restarted.
|
|
9899
|
+
* @description Once ECS instances enter the Protected state, they become subject to the following restrictions:
|
|
9900
|
+
* * ECS instances will persist in the Protected state, unless you deliberately remove them from this state.
|
|
9901
|
+
* * 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).
|
|
9902
|
+
* * ECS instances in the Protected state maintain their existing health status even when they undergo stopping or restarting processes.
|
|
9884
9903
|
*
|
|
9885
9904
|
* @param request SetInstancesProtectionRequest
|
|
9886
9905
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -9888,20 +9907,19 @@ export default class Client extends OpenApi {
|
|
|
9888
9907
|
*/
|
|
9889
9908
|
setInstancesProtectionWithOptions(request: SetInstancesProtectionRequest, runtime: $Util.RuntimeOptions): Promise<SetInstancesProtectionResponse>;
|
|
9890
9909
|
/**
|
|
9891
|
-
* @summary Puts
|
|
9910
|
+
* @summary 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.
|
|
9892
9911
|
*
|
|
9893
|
-
* @description
|
|
9894
|
-
*
|
|
9895
|
-
* *
|
|
9896
|
-
* *
|
|
9897
|
-
* * After you put an ECS instance into the Protected state, Auto Scaling does not update the health status of the instance when the instance is stopped or restarted.
|
|
9912
|
+
* @description Once ECS instances enter the Protected state, they become subject to the following restrictions:
|
|
9913
|
+
* * ECS instances will persist in the Protected state, unless you deliberately remove them from this state.
|
|
9914
|
+
* * 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).
|
|
9915
|
+
* * ECS instances in the Protected state maintain their existing health status even when they undergo stopping or restarting processes.
|
|
9898
9916
|
*
|
|
9899
9917
|
* @param request SetInstancesProtectionRequest
|
|
9900
9918
|
* @return SetInstancesProtectionResponse
|
|
9901
9919
|
*/
|
|
9902
9920
|
setInstancesProtection(request: SetInstancesProtectionRequest): Promise<SetInstancesProtectionResponse>;
|
|
9903
9921
|
/**
|
|
9904
|
-
* @summary Suspends processes
|
|
9922
|
+
* @summary Suspends scaling processes. This operation empowers you to selectively pause distinct scaling processes within a particular scaling group, enabling you to carry out alternative tasks and achieve more granular management over your scaling operations.
|
|
9905
9923
|
*
|
|
9906
9924
|
* @param request SuspendProcessesRequest
|
|
9907
9925
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -9909,7 +9927,7 @@ export default class Client extends OpenApi {
|
|
|
9909
9927
|
*/
|
|
9910
9928
|
suspendProcessesWithOptions(request: SuspendProcessesRequest, runtime: $Util.RuntimeOptions): Promise<SuspendProcessesResponse>;
|
|
9911
9929
|
/**
|
|
9912
|
-
* @summary Suspends processes
|
|
9930
|
+
* @summary Suspends scaling processes. This operation empowers you to selectively pause distinct scaling processes within a particular scaling group, enabling you to carry out alternative tasks and achieve more granular management over your scaling operations.
|
|
9913
9931
|
*
|
|
9914
9932
|
* @param request SuspendProcessesRequest
|
|
9915
9933
|
* @return SuspendProcessesResponse
|
|
@@ -9931,7 +9949,7 @@ export default class Client extends OpenApi {
|
|
|
9931
9949
|
*/
|
|
9932
9950
|
tagResources(request: TagResourcesRequest): Promise<TagResourcesResponse>;
|
|
9933
9951
|
/**
|
|
9934
|
-
* @summary Removes tags from
|
|
9952
|
+
* @summary Removes tags from Auto Scaling resources simultaneously. This operation streamlines resource management activities, enhances system efficiency, and mitigates potential security vulnerabilities. Once a tag is removed from a particular resource, and if it is not re-added to any other resource, the system will automatically delete the unused tag.
|
|
9935
9953
|
*
|
|
9936
9954
|
* @param request UntagResourcesRequest
|
|
9937
9955
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -9939,7 +9957,7 @@ export default class Client extends OpenApi {
|
|
|
9939
9957
|
*/
|
|
9940
9958
|
untagResourcesWithOptions(request: UntagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<UntagResourcesResponse>;
|
|
9941
9959
|
/**
|
|
9942
|
-
* @summary Removes tags from
|
|
9960
|
+
* @summary Removes tags from Auto Scaling resources simultaneously. This operation streamlines resource management activities, enhances system efficiency, and mitigates potential security vulnerabilities. Once a tag is removed from a particular resource, and if it is not re-added to any other resource, the system will automatically delete the unused tag.
|
|
9943
9961
|
*
|
|
9944
9962
|
* @param request UntagResourcesRequest
|
|
9945
9963
|
* @return UntagResourcesResponse
|
|
@@ -9961,7 +9979,7 @@ export default class Client extends OpenApi {
|
|
|
9961
9979
|
*/
|
|
9962
9980
|
verifyAuthentication(request: VerifyAuthenticationRequest): Promise<VerifyAuthenticationResponse>;
|
|
9963
9981
|
/**
|
|
9964
|
-
* @summary
|
|
9982
|
+
* @summary Verifies whether Auto Scaling is activated. This operation guarantees that in response to shifts in business workloads or variations in incoming traffic, the system will automatically adjust resource provisioning. This auto-scaling capability enhances the overall system performance, ensuring high availability and improved flexibility to accommodate dynamic demands.
|
|
9965
9983
|
*
|
|
9966
9984
|
* @param request VerifyUserRequest
|
|
9967
9985
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -9969,7 +9987,7 @@ export default class Client extends OpenApi {
|
|
|
9969
9987
|
*/
|
|
9970
9988
|
verifyUserWithOptions(request: VerifyUserRequest, runtime: $Util.RuntimeOptions): Promise<VerifyUserResponse>;
|
|
9971
9989
|
/**
|
|
9972
|
-
* @summary
|
|
9990
|
+
* @summary Verifies whether Auto Scaling is activated. This operation guarantees that in response to shifts in business workloads or variations in incoming traffic, the system will automatically adjust resource provisioning. This auto-scaling capability enhances the overall system performance, ensuring high availability and improved flexibility to accommodate dynamic demands.
|
|
9973
9991
|
*
|
|
9974
9992
|
* @param request VerifyUserRequest
|
|
9975
9993
|
* @return VerifyUserResponse
|