aws-sdk-autoscaling 1.131.0 → 1.133.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 +19 -4
- data/lib/aws-sdk-autoscaling/client.rb +12 -4
- data/lib/aws-sdk-autoscaling/errors.rb +25 -0
- data/lib/aws-sdk-autoscaling/types.rb +19 -4
- 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: 79ee6544e0e70bce24e402bdb1edabef7da9dca487b6a630e45b55de5aa401c2
|
4
|
+
data.tar.gz: 2ebf84c36d5b945ee8bcb42d3391b5949920039611b6a313ddfb751e8c69e372
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a9c23244c849cff3b2779cf524bb47228f621b9b6aeb5219eec8526a4828da71e8608622d975201d91a3e0eb6fc2bfeada99c46d057a0bba092a81269c23cb83
|
7
|
+
data.tar.gz: b1dae8789bc50f8cc029cca277a185d49a410a1511cab8a1fbce5dd67c1f33ded35a64416f40ab2ee852ab93fd807f06f1d6eb77c5b227ed761e31ac44c00b54
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.133.0 (2025-04-17)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Doc only update for EC2 Auto Scaling.
|
8
|
+
|
9
|
+
1.132.0 (2025-03-04)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.131.0 (2025-02-18)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.133.0
|
@@ -170,7 +170,14 @@ module Aws::AutoScaling
|
|
170
170
|
end
|
171
171
|
|
172
172
|
# Indicates whether newly launched instances are protected from
|
173
|
-
# termination by Amazon EC2 Auto Scaling when scaling in.
|
173
|
+
# termination by Amazon EC2 Auto Scaling when scaling in. For more
|
174
|
+
# information about preventing instances from terminating on scale in,
|
175
|
+
# see [Use instance scale-in protection][1] in the *Amazon EC2 Auto
|
176
|
+
# Scaling User Guide*.
|
177
|
+
#
|
178
|
+
#
|
179
|
+
#
|
180
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-instance-protection.html
|
174
181
|
# @return [Boolean]
|
175
182
|
def new_instances_protected_from_scale_in
|
176
183
|
data[:new_instances_protected_from_scale_in]
|
@@ -1459,13 +1466,21 @@ module Aws::AutoScaling
|
|
1459
1466
|
#
|
1460
1467
|
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/asg-max-instance-lifetime.html
|
1461
1468
|
# @option options [Boolean] :capacity_rebalance
|
1462
|
-
# Enables or disables Capacity Rebalancing.
|
1463
|
-
#
|
1464
|
-
#
|
1469
|
+
# Enables or disables Capacity Rebalancing. If Capacity Rebalancing is
|
1470
|
+
# disabled, proactive replacement of at-risk Spot Instances does not
|
1471
|
+
# occur. For more information, see [Capacity Rebalancing in Auto Scaling
|
1472
|
+
# to replace at-risk Spot Instances][1] in the *Amazon EC2 Auto Scaling
|
1473
|
+
# User Guide*.
|
1474
|
+
#
|
1475
|
+
# <note markdown="1"> To suspend rebalancing across Availability Zones, use the
|
1476
|
+
# [SuspendProcesses][2] API.
|
1477
|
+
#
|
1478
|
+
# </note>
|
1465
1479
|
#
|
1466
1480
|
#
|
1467
1481
|
#
|
1468
1482
|
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-capacity-rebalancing.html
|
1483
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_SuspendedProcess.html
|
1469
1484
|
# @option options [String] :context
|
1470
1485
|
# Reserved.
|
1471
1486
|
# @option options [String] :desired_capacity_type
|
@@ -7201,13 +7201,21 @@ module Aws::AutoScaling
|
|
7201
7201
|
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/asg-max-instance-lifetime.html
|
7202
7202
|
#
|
7203
7203
|
# @option params [Boolean] :capacity_rebalance
|
7204
|
-
# Enables or disables Capacity Rebalancing.
|
7205
|
-
#
|
7206
|
-
#
|
7204
|
+
# Enables or disables Capacity Rebalancing. If Capacity Rebalancing is
|
7205
|
+
# disabled, proactive replacement of at-risk Spot Instances does not
|
7206
|
+
# occur. For more information, see [Capacity Rebalancing in Auto Scaling
|
7207
|
+
# to replace at-risk Spot Instances][1] in the *Amazon EC2 Auto Scaling
|
7208
|
+
# User Guide*.
|
7209
|
+
#
|
7210
|
+
# <note markdown="1"> To suspend rebalancing across Availability Zones, use the
|
7211
|
+
# [SuspendProcesses][2] API.
|
7212
|
+
#
|
7213
|
+
# </note>
|
7207
7214
|
#
|
7208
7215
|
#
|
7209
7216
|
#
|
7210
7217
|
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-capacity-rebalancing.html
|
7218
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_SuspendedProcess.html
|
7211
7219
|
#
|
7212
7220
|
# @option params [String] :context
|
7213
7221
|
# Reserved.
|
@@ -7465,7 +7473,7 @@ module Aws::AutoScaling
|
|
7465
7473
|
tracer: tracer
|
7466
7474
|
)
|
7467
7475
|
context[:gem_name] = 'aws-sdk-autoscaling'
|
7468
|
-
context[:gem_version] = '1.
|
7476
|
+
context[:gem_version] = '1.133.0'
|
7469
7477
|
Seahorse::Client::Request.new(handlers, context)
|
7470
7478
|
end
|
7471
7479
|
|
@@ -28,22 +28,33 @@ module Aws::AutoScaling
|
|
28
28
|
#
|
29
29
|
# ## Error Classes
|
30
30
|
# * {ActiveInstanceRefreshNotFoundFault}
|
31
|
+
# * This error class is not used. `ActiveInstanceRefreshNotFound` is used during parsing instead.
|
31
32
|
# * {AlreadyExistsFault}
|
33
|
+
# * This error class is not used. `AlreadyExists` is used during parsing instead.
|
32
34
|
# * {InstanceRefreshInProgressFault}
|
35
|
+
# * This error class is not used. `InstanceRefreshInProgress` is used during parsing instead.
|
33
36
|
# * {InvalidNextToken}
|
34
37
|
# * {IrreversibleInstanceRefreshFault}
|
38
|
+
# * This error class is not used. `IrreversibleInstanceRefresh` is used during parsing instead.
|
35
39
|
# * {LimitExceededFault}
|
40
|
+
# * This error class is not used. `LimitExceeded` is used during parsing instead.
|
36
41
|
# * {ResourceContentionFault}
|
42
|
+
# * This error class is not used. `ResourceContention` is used during parsing instead.
|
37
43
|
# * {ResourceInUseFault}
|
44
|
+
# * This error class is not used. `ResourceInUse` is used during parsing instead.
|
38
45
|
# * {ScalingActivityInProgressFault}
|
46
|
+
# * This error class is not used. `ScalingActivityInProgress` is used during parsing instead.
|
39
47
|
# * {ServiceLinkedRoleFailure}
|
40
48
|
#
|
41
49
|
# Additionally, error classes are dynamically generated for service errors based on the error code
|
42
50
|
# if they are not defined above.
|
51
|
+
# Some existing error classes may use a different class name than the one documented.
|
43
52
|
module Errors
|
44
53
|
|
45
54
|
extend Aws::Errors::DynamicErrors
|
46
55
|
|
56
|
+
# @deprecated This error class is not used during parsing.
|
57
|
+
# Please use `ActiveInstanceRefreshNotFound` instead.
|
47
58
|
class ActiveInstanceRefreshNotFoundFault < ServiceError
|
48
59
|
|
49
60
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -59,6 +70,8 @@ module Aws::AutoScaling
|
|
59
70
|
end
|
60
71
|
end
|
61
72
|
|
73
|
+
# @deprecated This error class is not used during parsing.
|
74
|
+
# Please use `AlreadyExists` instead.
|
62
75
|
class AlreadyExistsFault < ServiceError
|
63
76
|
|
64
77
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -74,6 +87,8 @@ module Aws::AutoScaling
|
|
74
87
|
end
|
75
88
|
end
|
76
89
|
|
90
|
+
# @deprecated This error class is not used during parsing.
|
91
|
+
# Please use `InstanceRefreshInProgress` instead.
|
77
92
|
class InstanceRefreshInProgressFault < ServiceError
|
78
93
|
|
79
94
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -104,6 +119,8 @@ module Aws::AutoScaling
|
|
104
119
|
end
|
105
120
|
end
|
106
121
|
|
122
|
+
# @deprecated This error class is not used during parsing.
|
123
|
+
# Please use `IrreversibleInstanceRefresh` instead.
|
107
124
|
class IrreversibleInstanceRefreshFault < ServiceError
|
108
125
|
|
109
126
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -119,6 +136,8 @@ module Aws::AutoScaling
|
|
119
136
|
end
|
120
137
|
end
|
121
138
|
|
139
|
+
# @deprecated This error class is not used during parsing.
|
140
|
+
# Please use `LimitExceeded` instead.
|
122
141
|
class LimitExceededFault < ServiceError
|
123
142
|
|
124
143
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -134,6 +153,8 @@ module Aws::AutoScaling
|
|
134
153
|
end
|
135
154
|
end
|
136
155
|
|
156
|
+
# @deprecated This error class is not used during parsing.
|
157
|
+
# Please use `ResourceContention` instead.
|
137
158
|
class ResourceContentionFault < ServiceError
|
138
159
|
|
139
160
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -149,6 +170,8 @@ module Aws::AutoScaling
|
|
149
170
|
end
|
150
171
|
end
|
151
172
|
|
173
|
+
# @deprecated This error class is not used during parsing.
|
174
|
+
# Please use `ResourceInUse` instead.
|
152
175
|
class ResourceInUseFault < ServiceError
|
153
176
|
|
154
177
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -164,6 +187,8 @@ module Aws::AutoScaling
|
|
164
187
|
end
|
165
188
|
end
|
166
189
|
|
190
|
+
# @deprecated This error class is not used during parsing.
|
191
|
+
# Please use `ScalingActivityInProgress` instead.
|
167
192
|
class ScalingActivityInProgressFault < ServiceError
|
168
193
|
|
169
194
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -454,7 +454,14 @@ module Aws::AutoScaling
|
|
454
454
|
#
|
455
455
|
# @!attribute [rw] new_instances_protected_from_scale_in
|
456
456
|
# Indicates whether newly launched instances are protected from
|
457
|
-
# termination by Amazon EC2 Auto Scaling when scaling in.
|
457
|
+
# termination by Amazon EC2 Auto Scaling when scaling in. For more
|
458
|
+
# information about preventing instances from terminating on scale in,
|
459
|
+
# see [Use instance scale-in protection][1] in the *Amazon EC2 Auto
|
460
|
+
# Scaling User Guide*.
|
461
|
+
#
|
462
|
+
#
|
463
|
+
#
|
464
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-instance-protection.html
|
458
465
|
# @return [Boolean]
|
459
466
|
#
|
460
467
|
# @!attribute [rw] service_linked_role_arn
|
@@ -8160,13 +8167,21 @@ module Aws::AutoScaling
|
|
8160
8167
|
# @return [Integer]
|
8161
8168
|
#
|
8162
8169
|
# @!attribute [rw] capacity_rebalance
|
8163
|
-
# Enables or disables Capacity Rebalancing.
|
8164
|
-
#
|
8165
|
-
#
|
8170
|
+
# Enables or disables Capacity Rebalancing. If Capacity Rebalancing is
|
8171
|
+
# disabled, proactive replacement of at-risk Spot Instances does not
|
8172
|
+
# occur. For more information, see [Capacity Rebalancing in Auto
|
8173
|
+
# Scaling to replace at-risk Spot Instances][1] in the *Amazon EC2
|
8174
|
+
# Auto Scaling User Guide*.
|
8175
|
+
#
|
8176
|
+
# <note markdown="1"> To suspend rebalancing across Availability Zones, use the
|
8177
|
+
# [SuspendProcesses][2] API.
|
8178
|
+
#
|
8179
|
+
# </note>
|
8166
8180
|
#
|
8167
8181
|
#
|
8168
8182
|
#
|
8169
8183
|
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-capacity-rebalancing.html
|
8184
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_SuspendedProcess.html
|
8170
8185
|
# @return [Boolean]
|
8171
8186
|
#
|
8172
8187
|
# @!attribute [rw] context
|
data/lib/aws-sdk-autoscaling.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-autoscaling
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.133.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-04-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|