aws-sdk-cognitoidentity 1.59.0 → 1.61.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: 9a1dc71f2185c3f6d86c4745de6cac48e1cfdf55c3b4f695c206a3226f94d2fc
4
- data.tar.gz: 2776f9790aeb00b235c6f8a9a85bd08b576f5581a971c234c4e3d62cc5f1e3d5
3
+ metadata.gz: 242cb8e38c9187e98c6b46f0270fc4b6ed4561f878cf4d53462d0e5ac05946d2
4
+ data.tar.gz: 78bf27289f2f0ef1d2695a0f25a70dbd80b13cb427e81bc940fe982b6eff8b8d
5
5
  SHA512:
6
- metadata.gz: 54bb7090e1c0d7a8a2b2d8e9045dceb26f4e8a3db7a51f155b188c3072e493875d832ac3453a1e813760ebd214b26bd6ffd5a882a4f0fc6f9a691d19d0bb70a2
7
- data.tar.gz: 48995165f744ab0f715945a1f21e75e5e2c296946c556c43f62a755cd2417bcbca09a85252e85e0d7dbfe2a8b1819f0c142242729cf982bb8c27108a3aef9b6a
6
+ metadata.gz: cab9f4ff69b73d0511db7eab38adf1ff75a9ce08d2cbb797c728638b083017f7c2b93a3e81f053d7e7ce7c91687cc4c2d48c4ebc9569c2c85f7e90ca3e29aa4c
7
+ data.tar.gz: a0d8e8c1fe8ee075579acf28f22077d6f86dd7f7bb57d0fd95455c7e406a6475060339dda2cb91c7940bed7554480085c5652a5aa0b36f7bd533ce5e3f78d861
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.61.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.60.0 (2024-07-02)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.59.0 (2024-07-01)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.59.0
1
+ 1.61.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/json_rpc.rb'
37
38
 
@@ -83,6 +84,7 @@ module Aws::CognitoIdentity
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::JsonRpc)
88
90
  add_plugin(Aws::CognitoIdentity::Plugins::Endpoints)
@@ -312,6 +314,15 @@ module Aws::CognitoIdentity
312
314
  #
313
315
  # @option options [String] :session_token
314
316
  #
317
+ # @option options [Array] :sigv4a_signing_region_set
318
+ # A list of regions that should be signed with SigV4a signing. When
319
+ # not passed, a default `:sigv4a_signing_region_set` is searched for
320
+ # in the following locations:
321
+ #
322
+ # * `Aws.config[:sigv4a_signing_region_set]`
323
+ # * `ENV['AWS_SIGV4A_SIGNING_REGION_SET']`
324
+ # * `~/.aws/config`
325
+ #
315
326
  # @option options [Boolean] :simple_json (false)
316
327
  # Disables request parameter conversion, validation, and formatting.
317
328
  # Also disables response data type conversions. The request parameters
@@ -328,6 +339,16 @@ module Aws::CognitoIdentity
328
339
  # ** Please note ** When response stubbing is enabled, no HTTP
329
340
  # requests are made, and retries are disabled.
330
341
  #
342
+ # @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
343
+ # Allows you to provide a telemetry provider, which is used to
344
+ # emit telemetry data. By default, uses `NoOpTelemetryProvider` which
345
+ # will not record or emit any telemetry data. The SDK supports the
346
+ # following telemetry providers:
347
+ #
348
+ # * OpenTelemetry (OTel) - To use the OTel provider, install and require the
349
+ # `opentelemetry-sdk` gem and then, pass in an instance of a
350
+ # `Aws::Telemetry::OTelProvider` for telemetry provider.
351
+ #
331
352
  # @option options [Aws::TokenProvider] :token_provider
332
353
  # A Bearer Token Provider. This can be an instance of any one of the
333
354
  # following classes:
@@ -1686,14 +1707,19 @@ module Aws::CognitoIdentity
1686
1707
  # @api private
1687
1708
  def build_request(operation_name, params = {})
1688
1709
  handlers = @handlers.for(operation_name)
1710
+ tracer = config.telemetry_provider.tracer_provider.tracer(
1711
+ Aws::Telemetry.module_to_tracer_name('Aws::CognitoIdentity')
1712
+ )
1689
1713
  context = Seahorse::Client::RequestContext.new(
1690
1714
  operation_name: operation_name,
1691
1715
  operation: config.api.operation(operation_name),
1692
1716
  client: self,
1693
1717
  params: params,
1694
- config: config)
1718
+ config: config,
1719
+ tracer: tracer
1720
+ )
1695
1721
  context[:gem_name] = 'aws-sdk-cognitoidentity'
1696
- context[:gem_version] = '1.59.0'
1722
+ context[:gem_version] = '1.61.0'
1697
1723
  Seahorse::Client::Request.new(handlers, context)
1698
1724
  end
1699
1725
 
@@ -504,6 +504,7 @@ module Aws::CognitoIdentity
504
504
  o.http_method = "POST"
505
505
  o.http_request_uri = "/"
506
506
  o['authtype'] = "none"
507
+ o['auth'] = ["smithy.api#noAuth"]
507
508
  o.input = Shapes::ShapeRef.new(shape: GetCredentialsForIdentityInput)
508
509
  o.output = Shapes::ShapeRef.new(shape: GetCredentialsForIdentityResponse)
509
510
  o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
@@ -521,6 +522,7 @@ module Aws::CognitoIdentity
521
522
  o.http_method = "POST"
522
523
  o.http_request_uri = "/"
523
524
  o['authtype'] = "none"
525
+ o['auth'] = ["smithy.api#noAuth"]
524
526
  o.input = Shapes::ShapeRef.new(shape: GetIdInput)
525
527
  o.output = Shapes::ShapeRef.new(shape: GetIdResponse)
526
528
  o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
@@ -552,6 +554,7 @@ module Aws::CognitoIdentity
552
554
  o.http_method = "POST"
553
555
  o.http_request_uri = "/"
554
556
  o['authtype'] = "none"
557
+ o['auth'] = ["smithy.api#noAuth"]
555
558
  o.input = Shapes::ShapeRef.new(shape: GetOpenIdTokenInput)
556
559
  o.output = Shapes::ShapeRef.new(shape: GetOpenIdTokenResponse)
557
560
  o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
@@ -724,6 +727,7 @@ module Aws::CognitoIdentity
724
727
  o.http_method = "POST"
725
728
  o.http_request_uri = "/"
726
729
  o['authtype'] = "none"
730
+ o['auth'] = ["smithy.api#noAuth"]
727
731
  o.input = Shapes::ShapeRef.new(shape: UnlinkIdentityInput)
728
732
  o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
729
733
  o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-cognitoidentity/customizations'
52
52
  # @!group service
53
53
  module Aws::CognitoIdentity
54
54
 
55
- GEM_VERSION = '1.59.0'
55
+ GEM_VERSION = '1.61.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -48,8 +48,10 @@ module Aws
48
48
  ?sdk_ua_app_id: String,
49
49
  ?secret_access_key: String,
50
50
  ?session_token: String,
51
+ ?sigv4a_signing_region_set: Array[String],
51
52
  ?simple_json: bool,
52
53
  ?stub_responses: untyped,
54
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
53
55
  ?token_provider: untyped,
54
56
  ?use_dualstack_endpoint: bool,
55
57
  ?use_fips_endpoint: bool,
data/sig/resource.rbs CHANGED
@@ -48,8 +48,10 @@ module Aws
48
48
  ?sdk_ua_app_id: String,
49
49
  ?secret_access_key: String,
50
50
  ?session_token: String,
51
+ ?sigv4a_signing_region_set: Array[String],
51
52
  ?simple_json: bool,
52
53
  ?stub_responses: untyped,
54
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
53
55
  ?token_provider: untyped,
54
56
  ?use_dualstack_endpoint: bool,
55
57
  ?use_fips_endpoint: bool,
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cognitoidentity
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.59.0
4
+ version: 1.61.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-01 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.199.0
22
+ version: 3.203.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,21 +29,21 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.199.0
32
+ version: 3.203.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: '1.1'
39
+ version: '1.5'
40
40
  type: :runtime
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: '1.1'
46
+ version: '1.5'
47
47
  description: Official AWS Ruby gem for Amazon Cognito Identity. This gem is part of
48
48
  the AWS SDK for Ruby.
49
49
  email: