aws-sdk-autoscaling 1.85.0 → 1.87.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b1aa1f0814cef7d569f4baa85ae0267dd6e49836a71d8a2969b5e7664cadc7ef
4
- data.tar.gz: 9f1bfba313dd12c1275643d5ded202ca602b887eb203aa4e03e601e5ec1368f0
3
+ metadata.gz: c1000e84dda6419aa03ab8ed7fbd4680f8bd59bdc9c7fc7eb928ec4be1f7bb66
4
+ data.tar.gz: 675ebf4cc61d5e187aa8b7ef80a2d084dd108f4412798651b03cb5f304e876d9
5
5
  SHA512:
6
- metadata.gz: faa560ab6a0674d06ac5493b7d9d9b748bfad11df20d4c264a206f17f3ae389c78d9cacfa7511abc8a3811074631a3dfd5051aae76cff042bdecdc9842eebe08
7
- data.tar.gz: abd016837c0a053f2d64e9e6ee57e2256d6c5543a742b17953685db7e3cac31e3034e0cf62b2d0fe0dc7b65e0e91cb1387f8c87e996775d8535c297a4b7a6460
6
+ metadata.gz: a1d1b95443dce120be08a1905aa1ade3cf7887030e775a3180f29dfdb96f3c79c133c262d93f3efc2c20fc063c23ebff1eeaba1b628675a3800c269bbf5ba0d9
7
+ data.tar.gz: 157f9292019fdf07cb17ee59963ddb6500bdb21d21fd9937c1689cf34d7fe4582d72148026c859bd3a60abed8a54502d78f00bcd2f576dd76e7c2aa789ba5dba
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.87.0 (2023-03-30)
5
+ ------------------
6
+
7
+ * Feature - Amazon EC2 Auto Scaling now supports Elastic Load Balancing traffic sources with the AttachTrafficSources, DetachTrafficSources, and DescribeTrafficSources APIs. This release also introduces a new activity status, "WaitingForConnectionDraining", for VPC Lattice to the DescribeScalingActivities API.
8
+
9
+ 1.86.0 (2023-02-10)
10
+ ------------------
11
+
12
+ * Feature - You can now either terminate/replace, ignore, or wait for EC2 Auto Scaling instances on standby or protected from scale in. Also, you can also roll back changes from a failed instance refresh.
13
+
4
14
  1.85.0 (2023-01-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.85.0
1
+ 1.87.0
@@ -109,12 +109,7 @@ module Aws::AutoScaling
109
109
  data[:target_group_arns]
110
110
  end
111
111
 
112
- # Determines whether any additional health checks are performed on the
113
- # instances in this group. Amazon EC2 health checks are always on.
114
- #
115
- # The valid values are `EC2` (default), `ELB`, and `VPC_LATTICE`. The
116
- # `VPC_LATTICE` health check type is reserved for use with VPC Lattice,
117
- # which is in preview release and is subject to change.
112
+ # A comma-separated list of one or more health check types.
118
113
  # @return [String]
119
114
  def health_check_type
120
115
  data[:health_check_type]
@@ -232,7 +227,7 @@ module Aws::AutoScaling
232
227
  data[:default_instance_warmup]
233
228
  end
234
229
 
235
- # The unique identifiers of the traffic sources.
230
+ # The traffic sources associated with this Auto Scaling group.
236
231
  # @return [Array<Types::TrafficSourceIdentifier>]
237
232
  def traffic_sources
238
233
  data[:traffic_sources]
@@ -1284,12 +1279,16 @@ module Aws::AutoScaling
1284
1279
  # @option options [Array<String>] :availability_zones
1285
1280
  # One or more Availability Zones for the group.
1286
1281
  # @option options [String] :health_check_type
1287
- # Determines whether any additional health checks are performed on the
1288
- # instances in this group. Amazon EC2 health checks are always on.
1282
+ # A comma-separated list of one or more health check types.
1283
+ #
1284
+ # The valid values are `EC2`, `ELB`, and `VPC_LATTICE`. `EC2` is the
1285
+ # default health check and cannot be disabled. For more information, see
1286
+ # [Health checks for Auto Scaling instances][1] in the *Amazon EC2 Auto
1287
+ # Scaling User Guide*.
1288
+ #
1289
+ #
1289
1290
  #
1290
- # The valid values are `EC2` (default), `ELB`, and `VPC_LATTICE`. The
1291
- # `VPC_LATTICE` health check type is reserved for use with VPC Lattice,
1292
- # which is in preview release and is subject to change.
1291
+ # [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/healthcheck.html
1293
1292
  # @option options [Integer] :health_check_grace_period
1294
1293
  # The amount of time, in seconds, that Amazon EC2 Auto Scaling waits
1295
1294
  # before checking the health status of an EC2 instance that has come
@@ -1390,24 +1389,25 @@ module Aws::AutoScaling
1390
1389
  #
1391
1390
  # [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/create-asg-instance-type-requirements.html
1392
1391
  # @option options [Integer] :default_instance_warmup
1393
- # The amount of time, in seconds, until a newly launched instance can
1394
- # contribute to the Amazon CloudWatch metrics. This delay lets an
1395
- # instance finish initializing before Amazon EC2 Auto Scaling aggregates
1396
- # instance metrics, resulting in more reliable usage data. Set this
1397
- # value equal to the amount of time that it takes for resource
1398
- # consumption to become stable after an instance reaches the `InService`
1399
- # state. For more information, see [Set the default instance warmup for
1400
- # an Auto Scaling group][1] in the *Amazon EC2 Auto Scaling User Guide*.
1401
- #
1402
- # To manage your warm-up settings at the group level, we recommend that
1403
- # you set the default instance warmup, *even if its value is set to 0
1404
- # seconds*. This also optimizes the performance of scaling policies that
1405
- # scale continuously, such as target tracking and step scaling policies.
1406
- #
1407
- # If you need to remove a value that you previously set, include the
1392
+ # The amount of time, in seconds, until a new instance is considered to
1393
+ # have finished initializing and resource consumption to become stable
1394
+ # after it enters the `InService` state.
1395
+ #
1396
+ # During an instance refresh, Amazon EC2 Auto Scaling waits for the
1397
+ # warm-up period after it replaces an instance before it moves on to
1398
+ # replacing the next instance. Amazon EC2 Auto Scaling also waits for
1399
+ # the warm-up period before aggregating the metrics for new instances
1400
+ # with existing instances in the Amazon CloudWatch metrics that are used
1401
+ # for scaling, resulting in more reliable usage data. For more
1402
+ # information, see [Set the default instance warmup for an Auto Scaling
1403
+ # group][1] in the *Amazon EC2 Auto Scaling User Guide*.
1404
+ #
1405
+ # To manage various warm-up settings at the group level, we recommend
1406
+ # that you set the default instance warmup, *even if it is set to 0
1407
+ # seconds*. To remove a value that you previously set, include the
1408
1408
  # property but specify `-1` for the value. However, we strongly
1409
1409
  # recommend keeping the default instance warmup enabled by specifying a
1410
- # minimum value of `0`.
1410
+ # value of `0` or other nominal value.
1411
1411
  #
1412
1412
  #
1413
1413
  #