aws-sdk-autoscaling 1.114.0 → 1.116.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: 2fea933c10bad63585719a3ef6aca34f884121af63c1edfe3ab10be8f8c1a644
4
- data.tar.gz: ad851b03712e4d17eb00688293b8f90d4f4ff76b25c3b35bfe520bb2d78cc214
3
+ metadata.gz: b7ff17de052cf26159ef91166f3ab965e41453ccfe353c19e8de450b2907ef4a
4
+ data.tar.gz: 73a60a434e6335d448d58f46da232a30734728a245c0e2016efcbf65b94a0b91
5
5
  SHA512:
6
- metadata.gz: 3bc9228bf94e955c30e64824f1fd209c5683769ff71b87bf534619fca630296ce67717d9c8ac19ecb46b4fef60dd263753751ef498cfb6f2c073026f5cc91fa9
7
- data.tar.gz: 816a5cddf930c5fd2ae39a51acd16d79c32ec0e54d203b4b0cea55184e34eb821b41f7bb3929aecd5d3b4e388a857fb3c699faf03ab4d1701beccefb2fcb7b2e
6
+ metadata.gz: f8a74e4740a13cc051d532fd324f6524d39f4b27b83078b2d56ade3b4917d462b7198380b0f541fd09ae4f21399d869707ec28d9978dfb36006857d8defd1aad
7
+ data.tar.gz: 14ba883f9323864c7341de2a3439a8a2275b4cbbfde91713c67e77cd14c8c7b4b2db97361d0e69b89697b0221da8d5a12ad3c6ffa385e85a567c0594b3635560
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.116.0 (2024-09-03)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.115.0 (2024-08-22)
10
+ ------------------
11
+
12
+ * Feature - Amazon EC2 Auto Scaling now provides EBS health check to manage EC2 instance replacement
13
+
4
14
  1.114.0 (2024-07-30)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.114.0
1
+ 1.116.0
@@ -1322,9 +1322,9 @@ module Aws::AutoScaling
1322
1322
  # @option options [String] :health_check_type
1323
1323
  # A comma-separated value string of one or more health check types.
1324
1324
  #
1325
- # The valid values are `EC2`, `ELB`, and `VPC_LATTICE`. `EC2` is the
1326
- # default health check and cannot be disabled. For more information, see
1327
- # [Health checks for instances in an Auto Scaling group][1] in the
1325
+ # The valid values are `EC2`, `EBS`, `ELB`, and `VPC_LATTICE`. `EC2` is
1326
+ # the default health check and cannot be disabled. For more information,
1327
+ # see [Health checks for instances in an Auto Scaling group][1] in the
1328
1328
  # *Amazon EC2 Auto Scaling User Guide*.
1329
1329
  #
1330
1330
  # Only specify `EC2` if you must clear a value that was previously set.
@@ -32,6 +32,7 @@ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
32
32
  require 'aws-sdk-core/plugins/request_compression.rb'
33
33
  require 'aws-sdk-core/plugins/defaults_mode.rb'
34
34
  require 'aws-sdk-core/plugins/recursion_detection.rb'
35
+ require 'aws-sdk-core/plugins/telemetry.rb'
35
36
  require 'aws-sdk-core/plugins/sign.rb'
36
37
  require 'aws-sdk-core/plugins/protocols/query.rb'
37
38
 
@@ -83,6 +84,7 @@ module Aws::AutoScaling
83
84
  add_plugin(Aws::Plugins::RequestCompression)
84
85
  add_plugin(Aws::Plugins::DefaultsMode)
85
86
  add_plugin(Aws::Plugins::RecursionDetection)
87
+ add_plugin(Aws::Plugins::Telemetry)
86
88
  add_plugin(Aws::Plugins::Sign)
87
89
  add_plugin(Aws::Plugins::Protocols::Query)
88
90
  add_plugin(Aws::AutoScaling::Plugins::Endpoints)
@@ -330,6 +332,16 @@ module Aws::AutoScaling
330
332
  # ** Please note ** When response stubbing is enabled, no HTTP
331
333
  # requests are made, and retries are disabled.
332
334
  #
335
+ # @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
336
+ # Allows you to provide a telemetry provider, which is used to
337
+ # emit telemetry data. By default, uses `NoOpTelemetryProvider` which
338
+ # will not record or emit any telemetry data. The SDK supports the
339
+ # following telemetry providers:
340
+ #
341
+ # * OpenTelemetry (OTel) - To use the OTel provider, install and require the
342
+ # `opentelemetry-sdk` gem and then, pass in an instance of a
343
+ # `Aws::Telemetry::OTelProvider` for telemetry provider.
344
+ #
333
345
  # @option options [Aws::TokenProvider] :token_provider
334
346
  # A Bearer Token Provider. This can be an instance of any one of the
335
347
  # following classes:
@@ -1080,9 +1092,9 @@ module Aws::AutoScaling
1080
1092
  # @option params [String] :health_check_type
1081
1093
  # A comma-separated value string of one or more health check types.
1082
1094
  #
1083
- # The valid values are `EC2`, `ELB`, and `VPC_LATTICE`. `EC2` is the
1084
- # default health check and cannot be disabled. For more information, see
1085
- # [Health checks for instances in an Auto Scaling group][1] in the
1095
+ # The valid values are `EC2`, `EBS`, `ELB`, and `VPC_LATTICE`. `EC2` is
1096
+ # the default health check and cannot be disabled. For more information,
1097
+ # see [Health checks for instances in an Auto Scaling group][1] in the
1086
1098
  # *Amazon EC2 Auto Scaling User Guide*.
1087
1099
  #
1088
1100
  # Only specify `EC2` if you must clear a value that was previously set.
@@ -6268,12 +6280,12 @@ module Aws::AutoScaling
6268
6280
 
6269
6281
  # Sets the health status of the specified instance.
6270
6282
  #
6271
- # For more information, see [Health checks for instances in an Auto
6283
+ # For more information, see [Set up a custom health check for your Auto
6272
6284
  # Scaling group][1] in the *Amazon EC2 Auto Scaling User Guide*.
6273
6285
  #
6274
6286
  #
6275
6287
  #
6276
- # [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-health-checks.html
6288
+ # [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/set-up-a-custom-health-check.html
6277
6289
  #
6278
6290
  # @option params [required, String] :instance_id
6279
6291
  # The ID of the instance.
@@ -6886,9 +6898,9 @@ module Aws::AutoScaling
6886
6898
  # @option params [String] :health_check_type
6887
6899
  # A comma-separated value string of one or more health check types.
6888
6900
  #
6889
- # The valid values are `EC2`, `ELB`, and `VPC_LATTICE`. `EC2` is the
6890
- # default health check and cannot be disabled. For more information, see
6891
- # [Health checks for instances in an Auto Scaling group][1] in the
6901
+ # The valid values are `EC2`, `EBS`, `ELB`, and `VPC_LATTICE`. `EC2` is
6902
+ # the default health check and cannot be disabled. For more information,
6903
+ # see [Health checks for instances in an Auto Scaling group][1] in the
6892
6904
  # *Amazon EC2 Auto Scaling User Guide*.
6893
6905
  #
6894
6906
  # Only specify `EC2` if you must clear a value that was previously set.
@@ -7188,14 +7200,19 @@ module Aws::AutoScaling
7188
7200
  # @api private
7189
7201
  def build_request(operation_name, params = {})
7190
7202
  handlers = @handlers.for(operation_name)
7203
+ tracer = config.telemetry_provider.tracer_provider.tracer(
7204
+ Aws::Telemetry.module_to_tracer_name('Aws::AutoScaling')
7205
+ )
7191
7206
  context = Seahorse::Client::RequestContext.new(
7192
7207
  operation_name: operation_name,
7193
7208
  operation: config.api.operation(operation_name),
7194
7209
  client: self,
7195
7210
  params: params,
7196
- config: config)
7211
+ config: config,
7212
+ tracer: tracer
7213
+ )
7197
7214
  context[:gem_name] = 'aws-sdk-autoscaling'
7198
- context[:gem_version] = '1.114.0'
7215
+ context[:gem_version] = '1.116.0'
7199
7216
  Seahorse::Client::Request.new(handlers, context)
7200
7217
  end
7201
7218
 
@@ -293,9 +293,9 @@ module Aws::AutoScaling
293
293
  # @option options [String] :health_check_type
294
294
  # A comma-separated value string of one or more health check types.
295
295
  #
296
- # The valid values are `EC2`, `ELB`, and `VPC_LATTICE`. `EC2` is the
297
- # default health check and cannot be disabled. For more information, see
298
- # [Health checks for instances in an Auto Scaling group][1] in the
296
+ # The valid values are `EC2`, `EBS`, `ELB`, and `VPC_LATTICE`. `EC2` is
297
+ # the default health check and cannot be disabled. For more information,
298
+ # see [Health checks for instances in an Auto Scaling group][1] in the
299
299
  # *Amazon EC2 Auto Scaling User Guide*.
300
300
  #
301
301
  # Only specify `EC2` if you must clear a value that was previously set.
@@ -1037,10 +1037,10 @@ module Aws::AutoScaling
1037
1037
  # @!attribute [rw] health_check_type
1038
1038
  # A comma-separated value string of one or more health check types.
1039
1039
  #
1040
- # The valid values are `EC2`, `ELB`, and `VPC_LATTICE`. `EC2` is the
1041
- # default health check and cannot be disabled. For more information,
1042
- # see [Health checks for instances in an Auto Scaling group][1] in the
1043
- # *Amazon EC2 Auto Scaling User Guide*.
1040
+ # The valid values are `EC2`, `EBS`, `ELB`, and `VPC_LATTICE`. `EC2`
1041
+ # is the default health check and cannot be disabled. For more
1042
+ # information, see [Health checks for instances in an Auto Scaling
1043
+ # group][1] in the *Amazon EC2 Auto Scaling User Guide*.
1044
1044
  #
1045
1045
  # Only specify `EC2` if you must clear a value that was previously
1046
1046
  # set.
@@ -7667,10 +7667,10 @@ module Aws::AutoScaling
7667
7667
  # @!attribute [rw] health_check_type
7668
7668
  # A comma-separated value string of one or more health check types.
7669
7669
  #
7670
- # The valid values are `EC2`, `ELB`, and `VPC_LATTICE`. `EC2` is the
7671
- # default health check and cannot be disabled. For more information,
7672
- # see [Health checks for instances in an Auto Scaling group][1] in the
7673
- # *Amazon EC2 Auto Scaling User Guide*.
7670
+ # The valid values are `EC2`, `EBS`, `ELB`, and `VPC_LATTICE`. `EC2`
7671
+ # is the default health check and cannot be disabled. For more
7672
+ # information, see [Health checks for instances in an Auto Scaling
7673
+ # group][1] in the *Amazon EC2 Auto Scaling User Guide*.
7674
7674
  #
7675
7675
  # Only specify `EC2` if you must clear a value that was previously
7676
7676
  # set.
@@ -63,6 +63,6 @@ require_relative 'aws-sdk-autoscaling/customizations'
63
63
  # @!group service
64
64
  module Aws::AutoScaling
65
65
 
66
- GEM_VERSION = '1.114.0'
66
+ GEM_VERSION = '1.116.0'
67
67
 
68
68
  end
data/sig/client.rbs CHANGED
@@ -50,6 +50,7 @@ module Aws
50
50
  ?session_token: String,
51
51
  ?sigv4a_signing_region_set: Array[String],
52
52
  ?stub_responses: untyped,
53
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
53
54
  ?token_provider: untyped,
54
55
  ?use_dualstack_endpoint: bool,
55
56
  ?use_fips_endpoint: bool,
data/sig/resource.rbs CHANGED
@@ -50,6 +50,7 @@ module Aws
50
50
  ?session_token: String,
51
51
  ?sigv4a_signing_region_set: Array[String],
52
52
  ?stub_responses: untyped,
53
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
53
54
  ?token_provider: untyped,
54
55
  ?use_dualstack_endpoint: bool,
55
56
  ?use_fips_endpoint: bool,
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.114.0
4
+ version: 1.116.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: 2024-07-30 00:00:00.000000000 Z
11
+ date: 2024-09-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.201.0
22
+ version: 3.203.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.201.0
32
+ version: 3.203.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement