aws-sdk-autoscaling 1.137.0 → 1.138.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: df1f81b1a8cf04ba2455cfda14beb54e829d50ff0d903d99b5a8183ae3e3d3e4
4
- data.tar.gz: 16679647b01199a462af9eb30abec486565d396bef715f7c3174c415ccc1d52c
3
+ metadata.gz: 281f2f2b61dba2c1b8a2f183484b7323c04a08f76b166f54ed66f0fb87e9926b
4
+ data.tar.gz: 3a6dc71990162fa691255e2483896573ceabdec3f5d5314c08896a7a0bc44e70
5
5
  SHA512:
6
- metadata.gz: 3e043be5ab48256518cb34a8b97cfa05e68e48fd9b0f6d916115ecc7adf4bab08ff9bcd97ec7a60f9bbe053d1b3acf9cd32dd7b8b17b4df54c933cf0477ffd8f
7
- data.tar.gz: 11bc2363d3fcde6e2b0ee538d57d2f774c67fd7caca0cf4679730531366ffa99989803ab9fae5df808d31fb8b2c47745145c03f40f2613ed9d4b1f64a07c623c
6
+ metadata.gz: 2990ed5dfff1124a79ad6980d6b916ef82db8a18656520aff2452b94677da8d9cf3370eb257aeda5e0f0d5e58c14f3d09db1cbf8612927e523f8bd7b746c96d9
7
+ data.tar.gz: '09f3b26c2131a05964327f1e6b541a70a093e6efb4946ae3fc82ce15887807991fe24ca97ea93868c3cbb0d34146c94240f81eff228b7ae9daf61912a9d119d1'
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.138.0 (2025-06-18)
5
+ ------------------
6
+
7
+ * Feature - Add IncludeInstances parameter to DescribeAutoScalingGroups API
8
+
4
9
  1.137.0 (2025-06-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.137.0
1
+ 1.138.0
@@ -2528,6 +2528,11 @@ module Aws::AutoScaling
2528
2528
  #
2529
2529
  # If you omit this property, all Auto Scaling groups are described.
2530
2530
  #
2531
+ # @option params [Boolean] :include_instances
2532
+ # Specifies whether to include information about Amazon EC2 instances in
2533
+ # the response. When set to `true` (default), the response includes
2534
+ # instance details.
2535
+ #
2531
2536
  # @option params [String] :next_token
2532
2537
  # The token for the next set of items to return. (You received this
2533
2538
  # token from a previous call.)
@@ -2622,6 +2627,7 @@ module Aws::AutoScaling
2622
2627
  #
2623
2628
  # resp = client.describe_auto_scaling_groups({
2624
2629
  # auto_scaling_group_names: ["XmlStringMaxLen255"],
2630
+ # include_instances: false,
2625
2631
  # next_token: "XmlString",
2626
2632
  # max_records: 1,
2627
2633
  # filters: [
@@ -7470,7 +7476,7 @@ module Aws::AutoScaling
7470
7476
  tracer: tracer
7471
7477
  )
7472
7478
  context[:gem_name] = 'aws-sdk-autoscaling'
7473
- context[:gem_version] = '1.137.0'
7479
+ context[:gem_version] = '1.138.0'
7474
7480
  Seahorse::Client::Request.new(handlers, context)
7475
7481
  end
7476
7482
 
@@ -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"))
@@ -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)
@@ -65,7 +65,7 @@ module Aws::AutoScaling
65
65
  autoload :ScheduledAction, 'aws-sdk-autoscaling/scheduled_action'
66
66
  autoload :Tag, 'aws-sdk-autoscaling/tag'
67
67
 
68
- GEM_VERSION = '1.137.0'
68
+ GEM_VERSION = '1.138.0'
69
69
 
70
70
  end
71
71
 
data/sig/client.rbs CHANGED
@@ -497,6 +497,7 @@ module Aws
497
497
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#describe_auto_scaling_groups-instance_method
498
498
  def describe_auto_scaling_groups: (
499
499
  ?auto_scaling_group_names: Array[::String],
500
+ ?include_instances: bool,
500
501
  ?next_token: ::String,
501
502
  ?max_records: ::Integer,
502
503
  ?filters: Array[
@@ -1401,6 +1402,7 @@ module Aws
1401
1402
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#wait_until-instance_method
1402
1403
  def wait_until: (:group_exists waiter_name,
1403
1404
  ?auto_scaling_group_names: Array[::String],
1405
+ ?include_instances: bool,
1404
1406
  ?next_token: ::String,
1405
1407
  ?max_records: ::Integer,
1406
1408
  ?filters: Array[
@@ -1413,6 +1415,7 @@ module Aws
1413
1415
  | (:group_exists waiter_name, ?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeAutoScalingGroupsResponseSuccess
1414
1416
  | (:group_in_service waiter_name,
1415
1417
  ?auto_scaling_group_names: Array[::String],
1418
+ ?include_instances: bool,
1416
1419
  ?next_token: ::String,
1417
1420
  ?max_records: ::Integer,
1418
1421
  ?filters: Array[
@@ -1425,6 +1428,7 @@ module Aws
1425
1428
  | (:group_in_service waiter_name, ?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_DescribeAutoScalingGroupsResponseSuccess
1426
1429
  | (:group_not_exists waiter_name,
1427
1430
  ?auto_scaling_group_names: Array[::String],
1431
+ ?include_instances: bool,
1428
1432
  ?next_token: ::String,
1429
1433
  ?max_records: ::Integer,
1430
1434
  ?filters: Array[
data/sig/resource.rbs CHANGED
@@ -309,6 +309,7 @@ module Aws
309
309
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Resource.html#groups-instance_method
310
310
  def groups: (
311
311
  ?auto_scaling_group_names: Array[::String],
312
+ ?include_instances: bool,
312
313
  ?filters: Array[
313
314
  {
314
315
  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.137.0
4
+ version: 1.138.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services