aws-sdk-autoscaling 1.161.0 → 1.162.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-autoscaling/auto_scaling_group.rb +1 -1
- data/lib/aws-sdk-autoscaling/client.rb +4 -4
- data/lib/aws-sdk-autoscaling/resource.rb +1 -1
- data/lib/aws-sdk-autoscaling/types.rb +4 -0
- data/lib/aws-sdk-autoscaling.rb +1 -1
- data/sig/auto_scaling_group.rbs +1 -1
- data/sig/client.rbs +2 -2
- data/sig/resource.rbs +1 -1
- data/sig/types.rbs +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 91ee909d5f74527e677f5f19af7498cc911aaa75f817e9a73ecd5bef4da6eb39
|
|
4
|
+
data.tar.gz: abbfe826522679fb30feb3184ba3a42961754b9b4fc8d2cde785ae565b994c13
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1c31811d0d2545eafcaf8d62cee4a217c23d5dacfc98926722e8e45ffd8bbd60878694ef2cab12c9242fd802ab465ece20f4b158b4c27f8d2f95e88e61afb550
|
|
7
|
+
data.tar.gz: a269dc36b7105f0fcb03bfbd7c4dafc557db7f2d8fb12fd160c85d2f5318dae224f8e4aa1f4bab4918f790f869020dbafd3ea3041318f89d867188a1d48d1ba8
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.162.0 (2026-06-30)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release adds support for a new reservations-then-balanced capacity distribution strategy, which first attempts to launch instances into your Capacity Reservations and then balances remaining capacity across healthy Availability Zones.
|
|
8
|
+
|
|
4
9
|
1.161.0 (2026-05-29)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.162.0
|
|
@@ -1337,7 +1337,7 @@ module Aws::AutoScaling
|
|
|
1337
1337
|
# max_healthy_percentage: 1,
|
|
1338
1338
|
# },
|
|
1339
1339
|
# availability_zone_distribution: {
|
|
1340
|
-
# capacity_distribution_strategy: "balanced-only", # accepts balanced-only, balanced-best-effort
|
|
1340
|
+
# capacity_distribution_strategy: "balanced-only", # accepts balanced-only, balanced-best-effort, reservations-then-balanced
|
|
1341
1341
|
# },
|
|
1342
1342
|
# availability_zone_impairment_policy: {
|
|
1343
1343
|
# zonal_shift_enabled: false,
|
|
@@ -1700,7 +1700,7 @@ module Aws::AutoScaling
|
|
|
1700
1700
|
# max_healthy_percentage: 1,
|
|
1701
1701
|
# },
|
|
1702
1702
|
# availability_zone_distribution: {
|
|
1703
|
-
# capacity_distribution_strategy: "balanced-only", # accepts balanced-only, balanced-best-effort
|
|
1703
|
+
# capacity_distribution_strategy: "balanced-only", # accepts balanced-only, balanced-best-effort, reservations-then-balanced
|
|
1704
1704
|
# },
|
|
1705
1705
|
# availability_zone_impairment_policy: {
|
|
1706
1706
|
# zonal_shift_enabled: false,
|
|
@@ -2846,7 +2846,7 @@ module Aws::AutoScaling
|
|
|
2846
2846
|
# resp.auto_scaling_groups[0].instance_maintenance_policy.min_healthy_percentage #=> Integer
|
|
2847
2847
|
# resp.auto_scaling_groups[0].instance_maintenance_policy.max_healthy_percentage #=> Integer
|
|
2848
2848
|
# resp.auto_scaling_groups[0].deletion_protection #=> String, one of "none", "prevent-force-deletion", "prevent-all-deletion"
|
|
2849
|
-
# resp.auto_scaling_groups[0].availability_zone_distribution.capacity_distribution_strategy #=> String, one of "balanced-only", "balanced-best-effort"
|
|
2849
|
+
# resp.auto_scaling_groups[0].availability_zone_distribution.capacity_distribution_strategy #=> String, one of "balanced-only", "balanced-best-effort", "reservations-then-balanced"
|
|
2850
2850
|
# resp.auto_scaling_groups[0].availability_zone_impairment_policy.zonal_shift_enabled #=> Boolean
|
|
2851
2851
|
# resp.auto_scaling_groups[0].availability_zone_impairment_policy.impaired_zone_health_check_behavior #=> String, one of "ReplaceUnhealthy", "IgnoreUnhealthy"
|
|
2852
2852
|
# resp.auto_scaling_groups[0].capacity_reservation_specification.capacity_reservation_preference #=> String, one of "capacity-reservations-only", "capacity-reservations-first", "none", "default"
|
|
@@ -7698,7 +7698,7 @@ module Aws::AutoScaling
|
|
|
7698
7698
|
# max_healthy_percentage: 1,
|
|
7699
7699
|
# },
|
|
7700
7700
|
# availability_zone_distribution: {
|
|
7701
|
-
# capacity_distribution_strategy: "balanced-only", # accepts balanced-only, balanced-best-effort
|
|
7701
|
+
# capacity_distribution_strategy: "balanced-only", # accepts balanced-only, balanced-best-effort, reservations-then-balanced
|
|
7702
7702
|
# },
|
|
7703
7703
|
# availability_zone_impairment_policy: {
|
|
7704
7704
|
# zonal_shift_enabled: false,
|
|
@@ -7747,7 +7747,7 @@ module Aws::AutoScaling
|
|
|
7747
7747
|
tracer: tracer
|
|
7748
7748
|
)
|
|
7749
7749
|
context[:gem_name] = 'aws-sdk-autoscaling'
|
|
7750
|
-
context[:gem_version] = '1.
|
|
7750
|
+
context[:gem_version] = '1.162.0'
|
|
7751
7751
|
Seahorse::Client::Request.new(handlers, context)
|
|
7752
7752
|
end
|
|
7753
7753
|
|
|
@@ -189,7 +189,7 @@ module Aws::AutoScaling
|
|
|
189
189
|
# max_healthy_percentage: 1,
|
|
190
190
|
# },
|
|
191
191
|
# availability_zone_distribution: {
|
|
192
|
-
# capacity_distribution_strategy: "balanced-only", # accepts balanced-only, balanced-best-effort
|
|
192
|
+
# capacity_distribution_strategy: "balanced-only", # accepts balanced-only, balanced-best-effort, reservations-then-balanced
|
|
193
193
|
# },
|
|
194
194
|
# availability_zone_impairment_policy: {
|
|
195
195
|
# zonal_shift_enabled: false,
|
|
@@ -798,6 +798,10 @@ module Aws::AutoScaling
|
|
|
798
798
|
# * `balanced-best-effort` - If launches fail in an Availability Zone,
|
|
799
799
|
# Auto Scaling will attempt to launch in another healthy
|
|
800
800
|
# Availability Zone instead.
|
|
801
|
+
#
|
|
802
|
+
# * `reservations-then-balanced` - Auto Scaling will first attempt to
|
|
803
|
+
# launch into your Capacity Reservations, and then balance any
|
|
804
|
+
# remaining capacity across the healthy Availability Zones.
|
|
801
805
|
# @return [String]
|
|
802
806
|
#
|
|
803
807
|
# @see http://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/AvailabilityZoneDistribution AWS API Documentation
|
data/lib/aws-sdk-autoscaling.rb
CHANGED
data/sig/auto_scaling_group.rbs
CHANGED
|
@@ -509,7 +509,7 @@ module Aws
|
|
|
509
509
|
max_healthy_percentage: ::Integer?
|
|
510
510
|
},
|
|
511
511
|
?availability_zone_distribution: {
|
|
512
|
-
capacity_distribution_strategy: ("balanced-only" | "balanced-best-effort")?
|
|
512
|
+
capacity_distribution_strategy: ("balanced-only" | "balanced-best-effort" | "reservations-then-balanced")?
|
|
513
513
|
},
|
|
514
514
|
?availability_zone_impairment_policy: {
|
|
515
515
|
zonal_shift_enabled: bool?,
|
data/sig/client.rbs
CHANGED
|
@@ -241,7 +241,7 @@ module Aws
|
|
|
241
241
|
max_healthy_percentage: ::Integer?
|
|
242
242
|
},
|
|
243
243
|
?availability_zone_distribution: {
|
|
244
|
-
capacity_distribution_strategy: ("balanced-only" | "balanced-best-effort")?
|
|
244
|
+
capacity_distribution_strategy: ("balanced-only" | "balanced-best-effort" | "reservations-then-balanced")?
|
|
245
245
|
},
|
|
246
246
|
?availability_zone_impairment_policy: {
|
|
247
247
|
zonal_shift_enabled: bool?,
|
|
@@ -1084,7 +1084,7 @@ module Aws
|
|
|
1084
1084
|
max_healthy_percentage: ::Integer?
|
|
1085
1085
|
},
|
|
1086
1086
|
?availability_zone_distribution: {
|
|
1087
|
-
capacity_distribution_strategy: ("balanced-only" | "balanced-best-effort")?
|
|
1087
|
+
capacity_distribution_strategy: ("balanced-only" | "balanced-best-effort" | "reservations-then-balanced")?
|
|
1088
1088
|
},
|
|
1089
1089
|
?availability_zone_impairment_policy: {
|
|
1090
1090
|
zonal_shift_enabled: bool?,
|
data/sig/resource.rbs
CHANGED
|
@@ -233,7 +233,7 @@ module Aws
|
|
|
233
233
|
max_healthy_percentage: ::Integer?
|
|
234
234
|
},
|
|
235
235
|
?availability_zone_distribution: {
|
|
236
|
-
capacity_distribution_strategy: ("balanced-only" | "balanced-best-effort")?
|
|
236
|
+
capacity_distribution_strategy: ("balanced-only" | "balanced-best-effort" | "reservations-then-balanced")?
|
|
237
237
|
},
|
|
238
238
|
?availability_zone_impairment_policy: {
|
|
239
239
|
zonal_shift_enabled: bool?,
|
data/sig/types.rbs
CHANGED
|
@@ -190,7 +190,7 @@ module Aws::AutoScaling
|
|
|
190
190
|
end
|
|
191
191
|
|
|
192
192
|
class AvailabilityZoneDistribution
|
|
193
|
-
attr_accessor capacity_distribution_strategy: ("balanced-only" | "balanced-best-effort")
|
|
193
|
+
attr_accessor capacity_distribution_strategy: ("balanced-only" | "balanced-best-effort" | "reservations-then-balanced")
|
|
194
194
|
SENSITIVE: []
|
|
195
195
|
end
|
|
196
196
|
|