aws-sdk-autoscaling 1.72.0 → 1.76.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-autoscaling/auto_scaling_group.rb +85 -13
- data/lib/aws-sdk-autoscaling/client.rb +206 -48
- data/lib/aws-sdk-autoscaling/client_api.rb +41 -0
- data/lib/aws-sdk-autoscaling/resource.rb +8 -9
- data/lib/aws-sdk-autoscaling/types.rb +670 -72
- data/lib/aws-sdk-autoscaling.rb +1 -1
- metadata +4 -4
@@ -197,7 +197,7 @@ module Aws::AutoScaling
|
|
197
197
|
#
|
198
198
|
#
|
199
199
|
#
|
200
|
-
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/
|
200
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-mixed-instances-groups.html
|
201
201
|
# @option options [String] :instance_id
|
202
202
|
# The ID of the instance used to base the launch configuration on. If
|
203
203
|
# specified, Amazon EC2 Auto Scaling uses the configuration values from
|
@@ -278,10 +278,9 @@ module Aws::AutoScaling
|
|
278
278
|
# @option options [Integer] :health_check_grace_period
|
279
279
|
# The amount of time, in seconds, that Amazon EC2 Auto Scaling waits
|
280
280
|
# before checking the health status of an EC2 instance that has come
|
281
|
-
# into service
|
282
|
-
#
|
283
|
-
#
|
284
|
-
# User Guide*.
|
281
|
+
# into service and marking it unhealthy due to a failed health check.
|
282
|
+
# The default value is `0`. For more information, see [Health check
|
283
|
+
# grace period][1] in the *Amazon EC2 Auto Scaling User Guide*.
|
285
284
|
#
|
286
285
|
# Conditional: Required if you are adding an `ELB` health check.
|
287
286
|
#
|
@@ -322,12 +321,12 @@ module Aws::AutoScaling
|
|
322
321
|
# Indicates whether newly launched instances are protected from
|
323
322
|
# termination by Amazon EC2 Auto Scaling when scaling in. For more
|
324
323
|
# information about preventing instances from terminating on scale in,
|
325
|
-
# see [
|
326
|
-
# User Guide*.
|
324
|
+
# see [Using instance scale-in protection][1] in the *Amazon EC2 Auto
|
325
|
+
# Scaling User Guide*.
|
327
326
|
#
|
328
327
|
#
|
329
328
|
#
|
330
|
-
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/
|
329
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-instance-protection.html
|
331
330
|
# @option options [Boolean] :capacity_rebalance
|
332
331
|
# Indicates whether Capacity Rebalancing is enabled. Otherwise, Capacity
|
333
332
|
# Rebalancing is disabled. When you turn on Capacity Rebalancing, Amazon
|
@@ -339,7 +338,7 @@ module Aws::AutoScaling
|
|
339
338
|
#
|
340
339
|
#
|
341
340
|
#
|
342
|
-
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/capacity-
|
341
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-capacity-rebalancing.html
|
343
342
|
# @option options [Array<Types::LifecycleHookSpecification>] :lifecycle_hook_specification_list
|
344
343
|
# One or more lifecycle hooks for the group, which specify actions to
|
345
344
|
# perform when Amazon EC2 Auto Scaling launches or terminates instances.
|