aws-sdk-autoscaling 1.121.0 → 1.123.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 +10 -4
- data/lib/aws-sdk-autoscaling/client.rb +202 -113
- data/lib/aws-sdk-autoscaling/client_api.rb +2 -1
- data/lib/aws-sdk-autoscaling/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-autoscaling/endpoints.rb +2 -713
- data/lib/aws-sdk-autoscaling/plugins/endpoints.rb +1 -136
- data/lib/aws-sdk-autoscaling/types.rb +82 -21
- data/lib/aws-sdk-autoscaling.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 021e27982d2cf20a329d3f036f4f6113c9e2551979911e49973488b7c31fe989
|
4
|
+
data.tar.gz: ed9a65c6cf930c9b27ac0bb92683199f50b6d51cf85ea3769fdf0cd1bf04ffab
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 61ffe80b0912626dc30573d2933e8f59f0d2b947ca033ef422facd346ec27c2efe00f3005c3aba146850683156a56afbb23db072c16f76c254ae7a0644c3c418
|
7
|
+
data.tar.gz: 9da1c8aa220d2f5dc5ce689be4c31a00d73e96e696e7a7274cf1a3181cd6493eac7310baef9d460cf6b92a74cbaa2a9b97cddcdb092a97bcf05bd3f8cb85ecbb
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.123.0 (2024-10-21)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Adds support for removing the PlacementGroup setting on an Auto Scaling Group through the UpdateAutoScalingGroup API.
|
8
|
+
|
9
|
+
1.122.0 (2024-10-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.121.0 (2024-09-24)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.123.0
|
@@ -152,8 +152,12 @@ module Aws::AutoScaling
|
|
152
152
|
data[:enabled_metrics]
|
153
153
|
end
|
154
154
|
|
155
|
-
# The current state of the group when the DeleteAutoScalingGroup
|
155
|
+
# The current state of the group when the [DeleteAutoScalingGroup][1]
|
156
156
|
# operation is in progress.
|
157
|
+
#
|
158
|
+
#
|
159
|
+
#
|
160
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DeleteAutoScalingGroup.html
|
157
161
|
# @return [String]
|
158
162
|
def status
|
159
163
|
data[:status]
|
@@ -1255,7 +1259,7 @@ module Aws::AutoScaling
|
|
1255
1259
|
# availability_zones: ["XmlStringMaxLen255"],
|
1256
1260
|
# health_check_type: "XmlStringMaxLen32",
|
1257
1261
|
# health_check_grace_period: 1,
|
1258
|
-
# placement_group: "
|
1262
|
+
# placement_group: "UpdatePlacementGroupParam",
|
1259
1263
|
# vpc_zone_identifier: "XmlStringMaxLen5000",
|
1260
1264
|
# termination_policies: ["XmlStringMaxLen1600"],
|
1261
1265
|
# new_instances_protected_from_scale_in: false,
|
@@ -1346,8 +1350,10 @@ module Aws::AutoScaling
|
|
1346
1350
|
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/health-check-grace-period.html
|
1347
1351
|
# @option options [String] :placement_group
|
1348
1352
|
# The name of an existing placement group into which to launch your
|
1349
|
-
# instances.
|
1350
|
-
#
|
1353
|
+
# instances. To remove the placement group setting, pass an empty string
|
1354
|
+
# for `placement-group`. For more information about placement groups,
|
1355
|
+
# see [Placement groups][1] in the *Amazon EC2 User Guide for Linux
|
1356
|
+
# Instances*.
|
1351
1357
|
#
|
1352
1358
|
# <note markdown="1"> A *cluster* placement group is a logical grouping of instances within
|
1353
1359
|
# a single Availability Zone. You cannot specify multiple Availability
|