aws-sdk-iam 1.105.0 → 1.108.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: 6ee368184aeec7a8d94c0e6349915caf6da16bbedc9e51cea6f30a9a0d74f7f3
4
- data.tar.gz: b5d1f989feeeb601d52ea6a7ec9ea5c7fa83dc5c79fa875424fd3641c057af29
3
+ metadata.gz: 9bbd67de9f0d2f0762b649a43737db953a828d911fe4e299c2d10657d68011bc
4
+ data.tar.gz: 429623230de8e28e77e5d1167ab4314086e278c71af8296720916a2551625d28
5
5
  SHA512:
6
- metadata.gz: dfe80835d9e43c1fb99883063011ebe9ca919dbcb3b808c5191e46ca3712c54ce9e186d9f1a9097171e8e5b5e88209b3ac5bc92d27668cb2312ef86f72222a66
7
- data.tar.gz: d007fde74429c6098da8b8a641abbc228872b370cc3d49f53e32523d582e4ff3586ad64b5e4bfddae3e6507d6107d1cf5b4986bb247d3d31c77887c8e5c035ac
6
+ metadata.gz: 6ac0ce280d0f2f7ad573717d53bcbda1ceec52b3e54853beadea5d7840fe6ec65e9248c261a79af88b9e853f24a4d7d5557848c4065648578dbfc0039a881e07
7
+ data.tar.gz: 2cdfd48508202dd8d401679d18d3fae222fe8a86f5b4a6c586a013492a8b9de2dac77090993f770cd64f1e2bb590cd8a8a9a417316622cb2f75032a7bfc0907d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.108.0 (2024-09-11)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.107.0 (2024-09-10)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.106.0 (2024-09-03)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
4
19
  1.105.0 (2024-08-15)
5
20
  ------------------
6
21
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.105.0
1
+ 1.108.0
@@ -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::IAM
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::IAM::Plugins::Endpoints)
@@ -330,6 +332,16 @@ module Aws::IAM
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:
@@ -413,6 +425,12 @@ module Aws::IAM
413
425
  # @option options [String] :ssl_ca_store
414
426
  # Sets the X509::Store to verify peer certificate.
415
427
  #
428
+ # @option options [OpenSSL::X509::Certificate] :ssl_cert
429
+ # Sets a client certificate when creating http connections.
430
+ #
431
+ # @option options [OpenSSL::PKey] :ssl_key
432
+ # Sets a client key when creating http connections.
433
+ #
416
434
  # @option options [Float] :ssl_timeout
417
435
  # Sets the SSL timeout in seconds
418
436
  #
@@ -13503,14 +13521,19 @@ module Aws::IAM
13503
13521
  # @api private
13504
13522
  def build_request(operation_name, params = {})
13505
13523
  handlers = @handlers.for(operation_name)
13524
+ tracer = config.telemetry_provider.tracer_provider.tracer(
13525
+ Aws::Telemetry.module_to_tracer_name('Aws::IAM')
13526
+ )
13506
13527
  context = Seahorse::Client::RequestContext.new(
13507
13528
  operation_name: operation_name,
13508
13529
  operation: config.api.operation(operation_name),
13509
13530
  client: self,
13510
13531
  params: params,
13511
- config: config)
13532
+ config: config,
13533
+ tracer: tracer
13534
+ )
13512
13535
  context[:gem_name] = 'aws-sdk-iam'
13513
- context[:gem_version] = '1.105.0'
13536
+ context[:gem_version] = '1.108.0'
13514
13537
  Seahorse::Client::Request.new(handlers, context)
13515
13538
  end
13516
13539