aws-sdk-autoscaling 1.142.0 → 1.144.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: e006e7d3dbeb6cec86c5259962273dc4719273be55aa904c6584ea4245f41547
4
- data.tar.gz: eed47a4e0dff2a228581533f2a90e17d24a760cc6ce6102d4f584eb9aa9a8a65
3
+ metadata.gz: 767fddf1795012a1c78ea646d777da2cd2fb70c214b9dfaed94390fa911ac342
4
+ data.tar.gz: 69c02c5779c6c54e6f6672bea2e82aaa0e3eedf1114248f8cc44d4b58f81ddfc
5
5
  SHA512:
6
- metadata.gz: f7ac8a102c47c59e60f0ce7900ba37080b0ed9f86b51a5bc58c3f90c2dd8c9cfbdf3db0a1fa22c645525c02438d8fcf020f7f4981827edaaadd916ed4f469a77
7
- data.tar.gz: 9fb3caa75d7606f5ba3252753484e38344f4b889b8e590fb44e3094558ddb96700c566263a9518692e4c296bcf47fa674c4a5b8a4e9fc8c591228839df9be5fb
6
+ metadata.gz: a7d1e4061de2de11486ecd363ea36dddee3face0dcae891bba857453538dd39c78e3026ef85b2d8c68cb2927272a20722c79dd8e384325f4fdf999d03afa38a4
7
+ data.tar.gz: 43c3cd88713b745caff86344da812d763d946459e68aab0cb8cbdd89a48f2083d2652c32c48d09717bf29716149d694fe7b9c7f1af97c75f8c30c81aeb9261fc
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.144.0 (2025-09-09)
5
+ ------------------
6
+
7
+ * Feature - Added WaitForTransitioningInstances parameter to the CancelInstanceRefresh API, allowing the caller to cancel an instance refresh without waiting for on-going launches and terminations.
8
+
9
+ 1.143.0 (2025-08-26)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.142.0 (2025-08-25)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.142.0
1
+ 1.144.0
@@ -878,6 +878,15 @@ module Aws::AutoScaling
878
878
  # @option params [required, String] :auto_scaling_group_name
879
879
  # The name of the Auto Scaling group.
880
880
  #
881
+ # @option params [Boolean] :wait_for_transitioning_instances
882
+ # When cancelling an instance refresh, this indicates whether to wait
883
+ # for in-flight launches and terminations to complete. The default is
884
+ # true.
885
+ #
886
+ # When set to false, Amazon EC2 Auto Scaling cancels the instance
887
+ # refresh without waiting for any pending launches or terminations to
888
+ # complete.
889
+ #
881
890
  # @return [Types::CancelInstanceRefreshAnswer] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
882
891
  #
883
892
  # * {Types::CancelInstanceRefreshAnswer#instance_refresh_id #instance_refresh_id} => String
@@ -900,6 +909,7 @@ module Aws::AutoScaling
900
909
  #
901
910
  # resp = client.cancel_instance_refresh({
902
911
  # auto_scaling_group_name: "XmlStringMaxLen255", # required
912
+ # wait_for_transitioning_instances: false,
903
913
  # })
904
914
  #
905
915
  # @example Response structure
@@ -7483,7 +7493,7 @@ module Aws::AutoScaling
7483
7493
  tracer: tracer
7484
7494
  )
7485
7495
  context[:gem_name] = 'aws-sdk-autoscaling'
7486
- context[:gem_version] = '1.142.0'
7496
+ context[:gem_version] = '1.144.0'
7487
7497
  Seahorse::Client::Request.new(handlers, context)
7488
7498
  end
7489
7499
 
@@ -81,6 +81,7 @@ module Aws::AutoScaling
81
81
  BlockDeviceEbsVolumeType = Shapes::StringShape.new(name: 'BlockDeviceEbsVolumeType')
82
82
  BlockDeviceMapping = Shapes::StructureShape.new(name: 'BlockDeviceMapping')
83
83
  BlockDeviceMappings = Shapes::ListShape.new(name: 'BlockDeviceMappings')
84
+ BooleanType = Shapes::BooleanShape.new(name: 'BooleanType')
84
85
  BurstablePerformance = Shapes::StringShape.new(name: 'BurstablePerformance')
85
86
  CancelInstanceRefreshAnswer = Shapes::StructureShape.new(name: 'CancelInstanceRefreshAnswer')
86
87
  CancelInstanceRefreshType = Shapes::StructureShape.new(name: 'CancelInstanceRefreshType')
@@ -619,6 +620,7 @@ module Aws::AutoScaling
619
620
  CancelInstanceRefreshAnswer.struct_class = Types::CancelInstanceRefreshAnswer
620
621
 
621
622
  CancelInstanceRefreshType.add_member(:auto_scaling_group_name, Shapes::ShapeRef.new(shape: XmlStringMaxLen255, required: true, location_name: "AutoScalingGroupName"))
623
+ CancelInstanceRefreshType.add_member(:wait_for_transitioning_instances, Shapes::ShapeRef.new(shape: BooleanType, location_name: "WaitForTransitioningInstances"))
622
624
  CancelInstanceRefreshType.struct_class = Types::CancelInstanceRefreshType
623
625
 
624
626
  CapacityForecast.add_member(:timestamps, Shapes::ShapeRef.new(shape: PredictiveScalingForecastTimestamps, required: true, location_name: "Timestamps"))
@@ -1,8 +0,0 @@
1
- # frozen_string_literal: true
2
- # WARNING ABOUT GENERATED CODE
3
- #
4
- # This file is generated. See the contributing for info on making contributions:
5
- # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
6
- #
7
- # WARNING ABOUT GENERATED CODE
8
-
@@ -962,10 +962,21 @@ module Aws::AutoScaling
962
962
  # The name of the Auto Scaling group.
963
963
  # @return [String]
964
964
  #
965
+ # @!attribute [rw] wait_for_transitioning_instances
966
+ # When cancelling an instance refresh, this indicates whether to wait
967
+ # for in-flight launches and terminations to complete. The default is
968
+ # true.
969
+ #
970
+ # When set to false, Amazon EC2 Auto Scaling cancels the instance
971
+ # refresh without waiting for any pending launches or terminations to
972
+ # complete.
973
+ # @return [Boolean]
974
+ #
965
975
  # @see http://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/CancelInstanceRefreshType AWS API Documentation
966
976
  #
967
977
  class CancelInstanceRefreshType < Struct.new(
968
- :auto_scaling_group_name)
978
+ :auto_scaling_group_name,
979
+ :wait_for_transitioning_instances)
969
980
  SENSITIVE = []
970
981
  include Aws::Structure
971
982
  end
@@ -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.142.0'
68
+ GEM_VERSION = '1.144.0'
69
69
 
70
70
  end
71
71
 
data/sig/client.rbs CHANGED
@@ -160,7 +160,8 @@ module Aws
160
160
  end
161
161
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Client.html#cancel_instance_refresh-instance_method
162
162
  def cancel_instance_refresh: (
163
- auto_scaling_group_name: ::String
163
+ auto_scaling_group_name: ::String,
164
+ ?wait_for_transitioning_instances: bool
164
165
  ) -> _CancelInstanceRefreshResponseSuccess
165
166
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CancelInstanceRefreshResponseSuccess
166
167
 
data/sig/types.rbs CHANGED
@@ -243,6 +243,7 @@ module Aws::AutoScaling
243
243
 
244
244
  class CancelInstanceRefreshType
245
245
  attr_accessor auto_scaling_group_name: ::String
246
+ attr_accessor wait_for_transitioning_instances: bool
246
247
  SENSITIVE: []
247
248
  end
248
249
 
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.142.0
4
+ version: 1.144.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.228.0
21
+ version: 3.231.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.228.0
31
+ version: 3.231.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement