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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-autoscaling/auto_scaling_group.rb +28 -28
- data/lib/aws-sdk-autoscaling/client.rb +354 -149
- data/lib/aws-sdk-autoscaling/client_api.rb +51 -3
- data/lib/aws-sdk-autoscaling/endpoint_parameters.rb +0 -3
- data/lib/aws-sdk-autoscaling/endpoint_provider.rb +29 -26
- data/lib/aws-sdk-autoscaling/endpoints.rb +14 -0
- data/lib/aws-sdk-autoscaling/errors.rb +16 -0
- data/lib/aws-sdk-autoscaling/instance.rb +4 -4
- data/lib/aws-sdk-autoscaling/plugins/endpoints.rb +2 -0
- data/lib/aws-sdk-autoscaling/resource.rb +30 -36
- data/lib/aws-sdk-autoscaling/types.rb +420 -182
- data/lib/aws-sdk-autoscaling.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c1000e84dda6419aa03ab8ed7fbd4680f8bd59bdc9c7fc7eb928ec4be1f7bb66
|
4
|
+
data.tar.gz: 675ebf4cc61d5e187aa8b7ef80a2d084dd108f4412798651b03cb5f304e876d9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
1
|
+
1.87.0
|
@@ -109,12 +109,7 @@ module Aws::AutoScaling
|
|
109
109
|
data[:target_group_arns]
|
110
110
|
end
|
111
111
|
|
112
|
-
#
|
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
|
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
|
-
#
|
1288
|
-
#
|
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
|
-
#
|
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
|
1394
|
-
#
|
1395
|
-
#
|
1396
|
-
#
|
1397
|
-
#
|
1398
|
-
#
|
1399
|
-
#
|
1400
|
-
#
|
1401
|
-
#
|
1402
|
-
#
|
1403
|
-
#
|
1404
|
-
#
|
1405
|
-
#
|
1406
|
-
#
|
1407
|
-
#
|
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
|
-
#
|
1410
|
+
# value of `0` or other nominal value.
|
1411
1411
|
#
|
1412
1412
|
#
|
1413
1413
|
#
|