aws-sdk-autoscaling 1.137.0 → 1.139.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/client.rb +25 -9
- data/lib/aws-sdk-autoscaling/client_api.rb +2 -0
- data/lib/aws-sdk-autoscaling/errors.rb +0 -1
- data/lib/aws-sdk-autoscaling/resource.rb +5 -0
- data/lib/aws-sdk-autoscaling/types.rb +7 -0
- data/lib/aws-sdk-autoscaling.rb +1 -1
- data/sig/client.rbs +5 -0
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +1 -0
- data/sig/waiters.rbs +3 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f504fa788cd22cce72f6a34cb4dfe5cee756fc8567d6079a874aa9b5b6f4e944
|
4
|
+
data.tar.gz: ed5fa30affd5dfc409cf12933c13a1e2dc91fd6961db73129fb5ee68fc83baef
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 01ee43d9c445d93a3f4726383a019cff459fb620c89412fca8f22f694d90609734508adcb29ddd3dc82538ef0d568f901a6922692342718bac66b37a92db4e6c
|
7
|
+
data.tar.gz: d0ab2af8abd19c27cddc19d80add37d69c79b8c7750232822dbe85d8e4ee8d7e0a22070bd225ea6b41b4197954822dd754937c1de834550765b8d91459dc2b0b
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.139.0 (2025-07-21)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.138.0 (2025-06-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Add IncludeInstances parameter to DescribeAutoScalingGroups API
|
13
|
+
|
4
14
|
1.137.0 (2025-06-02)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.139.0
|
@@ -95,7 +95,7 @@ module Aws::AutoScaling
|
|
95
95
|
# class name or an instance of a plugin class.
|
96
96
|
#
|
97
97
|
# @option options [required, Aws::CredentialProvider] :credentials
|
98
|
-
# Your AWS credentials. This can be an instance of any one of the
|
98
|
+
# Your AWS credentials used for authentication. This can be an instance of any one of the
|
99
99
|
# following classes:
|
100
100
|
#
|
101
101
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
@@ -128,18 +128,23 @@ module Aws::AutoScaling
|
|
128
128
|
# locations will be searched for credentials:
|
129
129
|
#
|
130
130
|
# * `Aws.config[:credentials]`
|
131
|
+
#
|
131
132
|
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
132
133
|
# `:account_id` options.
|
133
|
-
#
|
134
|
-
#
|
134
|
+
#
|
135
|
+
# * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
|
136
|
+
# `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
|
137
|
+
#
|
135
138
|
# * `~/.aws/credentials`
|
139
|
+
#
|
136
140
|
# * `~/.aws/config`
|
141
|
+
#
|
137
142
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
138
143
|
# are very aggressive. Construct and pass an instance of
|
139
144
|
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
140
145
|
# enable retries and extended timeouts. Instance profile credential
|
141
|
-
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
142
|
-
# to true
|
146
|
+
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
147
|
+
# to `true`.
|
143
148
|
#
|
144
149
|
# @option options [required, String] :region
|
145
150
|
# The AWS region to connect to. The configured `:region` is
|
@@ -167,6 +172,11 @@ module Aws::AutoScaling
|
|
167
172
|
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
168
173
|
# not retry instead of sleeping.
|
169
174
|
#
|
175
|
+
# @option options [Array<String>] :auth_scheme_preference
|
176
|
+
# A list of preferred authentication schemes to use when making a request. Supported values are:
|
177
|
+
# `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
|
178
|
+
# shared config as `auth_scheme_preference`, the value should be a comma-separated list.
|
179
|
+
#
|
170
180
|
# @option options [Boolean] :client_side_monitoring (false)
|
171
181
|
# When `true`, client-side metrics will be collected for all API requests from
|
172
182
|
# this client.
|
@@ -253,8 +263,8 @@ module Aws::AutoScaling
|
|
253
263
|
# 4 times. Used in `standard` and `adaptive` retry modes.
|
254
264
|
#
|
255
265
|
# @option options [String] :profile ("default")
|
256
|
-
# Used when loading credentials from the shared credentials file
|
257
|
-
#
|
266
|
+
# Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
|
267
|
+
# When not specified, 'default' is used.
|
258
268
|
#
|
259
269
|
# @option options [String] :request_checksum_calculation ("when_supported")
|
260
270
|
# Determines when a checksum will be calculated for request payloads. Values are:
|
@@ -367,7 +377,7 @@ module Aws::AutoScaling
|
|
367
377
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
368
378
|
#
|
369
379
|
# @option options [Aws::TokenProvider] :token_provider
|
370
|
-
#
|
380
|
+
# Your Bearer token used for authentication. This can be an instance of any one of the
|
371
381
|
# following classes:
|
372
382
|
#
|
373
383
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
@@ -2528,6 +2538,11 @@ module Aws::AutoScaling
|
|
2528
2538
|
#
|
2529
2539
|
# If you omit this property, all Auto Scaling groups are described.
|
2530
2540
|
#
|
2541
|
+
# @option params [Boolean] :include_instances
|
2542
|
+
# Specifies whether to include information about Amazon EC2 instances in
|
2543
|
+
# the response. When set to `true` (default), the response includes
|
2544
|
+
# instance details.
|
2545
|
+
#
|
2531
2546
|
# @option params [String] :next_token
|
2532
2547
|
# The token for the next set of items to return. (You received this
|
2533
2548
|
# token from a previous call.)
|
@@ -2622,6 +2637,7 @@ module Aws::AutoScaling
|
|
2622
2637
|
#
|
2623
2638
|
# resp = client.describe_auto_scaling_groups({
|
2624
2639
|
# auto_scaling_group_names: ["XmlStringMaxLen255"],
|
2640
|
+
# include_instances: false,
|
2625
2641
|
# next_token: "XmlString",
|
2626
2642
|
# max_records: 1,
|
2627
2643
|
# filters: [
|
@@ -7470,7 +7486,7 @@ module Aws::AutoScaling
|
|
7470
7486
|
tracer: tracer
|
7471
7487
|
)
|
7472
7488
|
context[:gem_name] = 'aws-sdk-autoscaling'
|
7473
|
-
context[:gem_version] = '1.
|
7489
|
+
context[:gem_version] = '1.139.0'
|
7474
7490
|
Seahorse::Client::Request.new(handlers, context)
|
7475
7491
|
end
|
7476
7492
|
|
@@ -178,6 +178,7 @@ module Aws::AutoScaling
|
|
178
178
|
HonorCooldown = Shapes::BooleanShape.new(name: 'HonorCooldown')
|
179
179
|
ImpairedZoneHealthCheckBehavior = Shapes::StringShape.new(name: 'ImpairedZoneHealthCheckBehavior')
|
180
180
|
IncludeDeletedGroups = Shapes::BooleanShape.new(name: 'IncludeDeletedGroups')
|
181
|
+
IncludeInstances = Shapes::BooleanShape.new(name: 'IncludeInstances')
|
181
182
|
Instance = Shapes::StructureShape.new(name: 'Instance')
|
182
183
|
InstanceGeneration = Shapes::StringShape.new(name: 'InstanceGeneration')
|
183
184
|
InstanceGenerations = Shapes::ListShape.new(name: 'InstanceGenerations')
|
@@ -544,6 +545,7 @@ module Aws::AutoScaling
|
|
544
545
|
AutoScalingGroupNames.member = Shapes::ShapeRef.new(shape: XmlStringMaxLen255)
|
545
546
|
|
546
547
|
AutoScalingGroupNamesType.add_member(:auto_scaling_group_names, Shapes::ShapeRef.new(shape: AutoScalingGroupNames, location_name: "AutoScalingGroupNames"))
|
548
|
+
AutoScalingGroupNamesType.add_member(:include_instances, Shapes::ShapeRef.new(shape: IncludeInstances, location_name: "IncludeInstances"))
|
547
549
|
AutoScalingGroupNamesType.add_member(:next_token, Shapes::ShapeRef.new(shape: XmlString, location_name: "NextToken"))
|
548
550
|
AutoScalingGroupNamesType.add_member(:max_records, Shapes::ShapeRef.new(shape: MaxRecords, location_name: "MaxRecords"))
|
549
551
|
AutoScalingGroupNamesType.add_member(:filters, Shapes::ShapeRef.new(shape: Filters, location_name: "Filters"))
|
@@ -48,7 +48,6 @@ module Aws::AutoScaling
|
|
48
48
|
#
|
49
49
|
# Additionally, error classes are dynamically generated for service errors based on the error code
|
50
50
|
# if they are not defined above.
|
51
|
-
# Some existing error classes may use a different class name than the one documented.
|
52
51
|
module Errors
|
53
52
|
|
54
53
|
extend Aws::Errors::DynamicErrors
|
@@ -844,6 +844,7 @@ module Aws::AutoScaling
|
|
844
844
|
#
|
845
845
|
# groups = auto_scaling.groups({
|
846
846
|
# auto_scaling_group_names: ["XmlStringMaxLen255"],
|
847
|
+
# include_instances: false,
|
847
848
|
# filters: [
|
848
849
|
# {
|
849
850
|
# name: "XmlString",
|
@@ -858,6 +859,10 @@ module Aws::AutoScaling
|
|
858
859
|
# `MaxRecords` property.
|
859
860
|
#
|
860
861
|
# If you omit this property, all Auto Scaling groups are described.
|
862
|
+
# @option options [Boolean] :include_instances
|
863
|
+
# Specifies whether to include information about Amazon EC2 instances in
|
864
|
+
# the response. When set to `true` (default), the response includes
|
865
|
+
# instance details.
|
861
866
|
# @option options [Array<Types::Filter>] :filters
|
862
867
|
# One or more filters to limit the results based on specific tags.
|
863
868
|
# @return [AutoScalingGroup::Collection]
|
@@ -576,6 +576,12 @@ module Aws::AutoScaling
|
|
576
576
|
# If you omit this property, all Auto Scaling groups are described.
|
577
577
|
# @return [Array<String>]
|
578
578
|
#
|
579
|
+
# @!attribute [rw] include_instances
|
580
|
+
# Specifies whether to include information about Amazon EC2 instances
|
581
|
+
# in the response. When set to `true` (default), the response includes
|
582
|
+
# instance details.
|
583
|
+
# @return [Boolean]
|
584
|
+
#
|
579
585
|
# @!attribute [rw] next_token
|
580
586
|
# The token for the next set of items to return. (You received this
|
581
587
|
# token from a previous call.)
|
@@ -594,6 +600,7 @@ module Aws::AutoScaling
|
|
594
600
|
#
|
595
601
|
class AutoScalingGroupNamesType < Struct.new(
|
596
602
|
:auto_scaling_group_names,
|
603
|
+
:include_instances,
|
597
604
|
:next_token,
|
598
605
|
:max_records,
|
599
606
|
:filters)
|
data/lib/aws-sdk-autoscaling.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
@@ -497,6 +498,7 @@ module Aws
|
|
497
498
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#describe_auto_scaling_groups-instance_method
|
498
499
|
def describe_auto_scaling_groups: (
|
499
500
|
?auto_scaling_group_names: Array[::String],
|
501
|
+
?include_instances: bool,
|
500
502
|
?next_token: ::String,
|
501
503
|
?max_records: ::Integer,
|
502
504
|
?filters: Array[
|
@@ -1401,6 +1403,7 @@ module Aws
|
|
1401
1403
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#wait_until-instance_method
|
1402
1404
|
def wait_until: (:group_exists waiter_name,
|
1403
1405
|
?auto_scaling_group_names: Array[::String],
|
1406
|
+
?include_instances: bool,
|
1404
1407
|
?next_token: ::String,
|
1405
1408
|
?max_records: ::Integer,
|
1406
1409
|
?filters: Array[
|
@@ -1413,6 +1416,7 @@ module Aws
|
|
1413
1416
|
| (:group_exists waiter_name, ?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeAutoScalingGroupsResponseSuccess
|
1414
1417
|
| (:group_in_service waiter_name,
|
1415
1418
|
?auto_scaling_group_names: Array[::String],
|
1419
|
+
?include_instances: bool,
|
1416
1420
|
?next_token: ::String,
|
1417
1421
|
?max_records: ::Integer,
|
1418
1422
|
?filters: Array[
|
@@ -1425,6 +1429,7 @@ module Aws
|
|
1425
1429
|
| (:group_in_service waiter_name, ?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeAutoScalingGroupsResponseSuccess
|
1426
1430
|
| (:group_not_exists waiter_name,
|
1427
1431
|
?auto_scaling_group_names: Array[::String],
|
1432
|
+
?include_instances: bool,
|
1428
1433
|
?next_token: ::String,
|
1429
1434
|
?max_records: ::Integer,
|
1430
1435
|
?filters: Array[
|
data/sig/resource.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
@@ -309,6 +310,7 @@ module Aws
|
|
309
310
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Resource.html#groups-instance_method
|
310
311
|
def groups: (
|
311
312
|
?auto_scaling_group_names: Array[::String],
|
313
|
+
?include_instances: bool,
|
312
314
|
?filters: Array[
|
313
315
|
{
|
314
316
|
name: ::String?,
|
data/sig/types.rbs
CHANGED
@@ -151,6 +151,7 @@ module Aws::AutoScaling
|
|
151
151
|
|
152
152
|
class AutoScalingGroupNamesType
|
153
153
|
attr_accessor auto_scaling_group_names: ::Array[::String]
|
154
|
+
attr_accessor include_instances: bool
|
154
155
|
attr_accessor next_token: ::String
|
155
156
|
attr_accessor max_records: ::Integer
|
156
157
|
attr_accessor filters: ::Array[Types::Filter]
|
data/sig/waiters.rbs
CHANGED
@@ -15,6 +15,7 @@ module Aws
|
|
15
15
|
|
16
16
|
def wait: (
|
17
17
|
?auto_scaling_group_names: Array[::String],
|
18
|
+
?include_instances: bool,
|
18
19
|
?next_token: ::String,
|
19
20
|
?max_records: ::Integer,
|
20
21
|
?filters: Array[
|
@@ -33,6 +34,7 @@ module Aws
|
|
33
34
|
|
34
35
|
def wait: (
|
35
36
|
?auto_scaling_group_names: Array[::String],
|
37
|
+
?include_instances: bool,
|
36
38
|
?next_token: ::String,
|
37
39
|
?max_records: ::Integer,
|
38
40
|
?filters: Array[
|
@@ -51,6 +53,7 @@ module Aws
|
|
51
53
|
|
52
54
|
def wait: (
|
53
55
|
?auto_scaling_group_names: Array[::String],
|
56
|
+
?include_instances: bool,
|
54
57
|
?next_token: ::String,
|
55
58
|
?max_records: ::Integer,
|
56
59
|
?filters: Array[
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.139.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.227.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.227.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|