aws-sdk-configservice 1.113.0 → 1.120.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 954e9c79bc2935ce77e1870524ba0185f65cf503e39a4a36fef8d576bbb2fd60
4
- data.tar.gz: aba4babdd5569c4d9e847d1daec24f8c2f9c42bbe7465d33e70f9b5d9d70b44c
3
+ metadata.gz: 6bcc34d157f51a0f7ea9a5b6d75bd249368c1bb36a9f1c192fef04c26092747c
4
+ data.tar.gz: 9c90a1e4646fd034260654f67890ed90e1993ef80eda5900e0a1871c000de801
5
5
  SHA512:
6
- metadata.gz: d1fd1b9f8ec85b2c02ee61c2cc96301d294c3af9613da7fba539fb10c5880e201f384e7dbde7ce33451dbb3877af706b063642e4185ed41043dcacdc82a9c9bb
7
- data.tar.gz: bfb60dba6067eaa36b742d32e42616e7fab6eee391dfd5eae483f5e369905bb6475f19e64d09b478d339f6d4f2d4b93f810a50c32d177366160424e39407b3e5
6
+ metadata.gz: fb8d7c471327f2bd2071f6f3491590606423686b7f2515d7a37443a18d20743abb6a4a9d753f7ed28161a9374f99a154b377149e1aa01a49c6d49a6cd7d6acef
7
+ data.tar.gz: 60b36deaf5dff80b4ac9d930e0926a5fddb182e3ce7dd2b6eb0aeb06822b8dad0c02e9711b9884e52fbd8455491598b3aaab6808e0e85a4b33cb79c7979cc782
data/CHANGELOG.md CHANGED
@@ -1,6 +1,41 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.120.0 (2024-09-24)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.119.0 (2024-09-23)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.118.0 (2024-09-20)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.117.0 (2024-09-11)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
24
+ 1.116.0 (2024-09-10)
25
+ ------------------
26
+
27
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
28
+
29
+ 1.115.0 (2024-09-03)
30
+ ------------------
31
+
32
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
33
+
34
+ 1.114.0 (2024-08-12)
35
+ ------------------
36
+
37
+ * Feature - Documentation update for the OrganizationConfigRuleName regex pattern.
38
+
4
39
  1.113.0 (2024-07-02)
5
40
  ------------------
6
41
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.113.0
1
+ 1.120.0
@@ -32,11 +32,10 @@ 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/json_rpc.rb'
37
38
 
38
- Aws::Plugins::GlobalConfiguration.add_identifier(:configservice)
39
-
40
39
  module Aws::ConfigService
41
40
  # An API client for ConfigService. To construct a client, you need to configure a `:region` and `:credentials`.
42
41
  #
@@ -83,6 +82,7 @@ module Aws::ConfigService
83
82
  add_plugin(Aws::Plugins::RequestCompression)
84
83
  add_plugin(Aws::Plugins::DefaultsMode)
85
84
  add_plugin(Aws::Plugins::RecursionDetection)
85
+ add_plugin(Aws::Plugins::Telemetry)
86
86
  add_plugin(Aws::Plugins::Sign)
87
87
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
88
88
  add_plugin(Aws::ConfigService::Plugins::Endpoints)
@@ -128,13 +128,15 @@ module Aws::ConfigService
128
128
  # locations will be searched for credentials:
129
129
  #
130
130
  # * `Aws.config[:credentials]`
131
- # * The `:access_key_id`, `:secret_access_key`, and `:session_token` options.
132
- # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
131
+ # * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
132
+ # `:account_id` options.
133
+ # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
134
+ # ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
133
135
  # * `~/.aws/credentials`
134
136
  # * `~/.aws/config`
135
137
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
136
138
  # are very aggressive. Construct and pass an instance of
137
- # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
139
+ # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
138
140
  # enable retries and extended timeouts. Instance profile credential
139
141
  # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
140
142
  # to true.
@@ -153,6 +155,8 @@ module Aws::ConfigService
153
155
  #
154
156
  # @option options [String] :access_key_id
155
157
  #
158
+ # @option options [String] :account_id
159
+ #
156
160
  # @option options [Boolean] :active_endpoint_cache (false)
157
161
  # When set to `true`, a thread polling for endpoints will be running in
158
162
  # the background every 60 secs (default). Defaults to `false`.
@@ -337,6 +341,16 @@ module Aws::ConfigService
337
341
  # ** Please note ** When response stubbing is enabled, no HTTP
338
342
  # requests are made, and retries are disabled.
339
343
  #
344
+ # @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
345
+ # Allows you to provide a telemetry provider, which is used to
346
+ # emit telemetry data. By default, uses `NoOpTelemetryProvider` which
347
+ # will not record or emit any telemetry data. The SDK supports the
348
+ # following telemetry providers:
349
+ #
350
+ # * OpenTelemetry (OTel) - To use the OTel provider, install and require the
351
+ # `opentelemetry-sdk` gem and then, pass in an instance of a
352
+ # `Aws::Telemetry::OTelProvider` for telemetry provider.
353
+ #
340
354
  # @option options [Aws::TokenProvider] :token_provider
341
355
  # A Bearer Token Provider. This can be an instance of any one of the
342
356
  # following classes:
@@ -364,7 +378,9 @@ module Aws::ConfigService
364
378
  # sending the request.
365
379
  #
366
380
  # @option options [Aws::ConfigService::EndpointProvider] :endpoint_provider
367
- # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::ConfigService::EndpointParameters`
381
+ # The endpoint provider used to resolve endpoints. Any object that responds to
382
+ # `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to
383
+ # `Aws::ConfigService::EndpointParameters`.
368
384
  #
369
385
  # @option options [Float] :http_continue_timeout (1)
370
386
  # The number of seconds to wait for a 100-continue response before sending the
@@ -420,6 +436,12 @@ module Aws::ConfigService
420
436
  # @option options [String] :ssl_ca_store
421
437
  # Sets the X509::Store to verify peer certificate.
422
438
  #
439
+ # @option options [OpenSSL::X509::Certificate] :ssl_cert
440
+ # Sets a client certificate when creating http connections.
441
+ #
442
+ # @option options [OpenSSL::PKey] :ssl_key
443
+ # Sets a client key when creating http connections.
444
+ #
423
445
  # @option options [Float] :ssl_timeout
424
446
  # Sets the SSL timeout in seconds
425
447
  #
@@ -5900,14 +5922,19 @@ module Aws::ConfigService
5900
5922
  # @api private
5901
5923
  def build_request(operation_name, params = {})
5902
5924
  handlers = @handlers.for(operation_name)
5925
+ tracer = config.telemetry_provider.tracer_provider.tracer(
5926
+ Aws::Telemetry.module_to_tracer_name('Aws::ConfigService')
5927
+ )
5903
5928
  context = Seahorse::Client::RequestContext.new(
5904
5929
  operation_name: operation_name,
5905
5930
  operation: config.api.operation(operation_name),
5906
5931
  client: self,
5907
5932
  params: params,
5908
- config: config)
5933
+ config: config,
5934
+ tracer: tracer
5935
+ )
5909
5936
  context[:gem_name] = 'aws-sdk-configservice'
5910
- context[:gem_version] = '1.113.0'
5937
+ context[:gem_version] = '1.120.0'
5911
5938
  Seahorse::Client::Request.new(handlers, context)
5912
5939
  end
5913
5940
 
@@ -7,6 +7,7 @@
7
7
  #
8
8
  # WARNING ABOUT GENERATED CODE
9
9
 
10
+
10
11
  module Aws::ConfigService
11
12
  # @api private
12
13
  module ClientApi