aws-sdk-cognitoidentity 1.54.0 → 1.60.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: 78b0d6dc141fc14c237b0741c1bc7374d0227a075cc60292c409e6d2a9b0ef22
4
- data.tar.gz: 238de69fcb1788c6c8feeb728264e35ccc67ee3ccc32a13eb48324811944c39d
3
+ metadata.gz: '09bd9b86e1cae19e95fa5b587bae8a96a2cdac8fad1c6de71415d619a48436cc'
4
+ data.tar.gz: 500d44968228bcaf556bb17a647c2dcc6ba19de16b9a7a57b52cc9d8088f5fa5
5
5
  SHA512:
6
- metadata.gz: fee141108e957160efdf36cbb0310c6d24129e9b46d65499b9ed70fc50567d3b4a1b6bed212ad43b8779032e48e08c068128ae80898e49d031678a47bdfb589d
7
- data.tar.gz: 8128f5045abc686e460f49fe5bf964674d53ae93a970336caec41e5cd7bb0eb6b6f77028cd74306f131d749cff091ffc7ae33fc82fe63074622b980b031897b7
6
+ metadata.gz: ce41009c3b80a1ddd733ef8f9426a99c294697e0e892d8a1181888499e684788f5e856415e5f1b1d6e4b1dba78bad9ad0b732a9055d80044cc54a9ac07fef503
7
+ data.tar.gz: d405863c4582d2680f0a0b6218b3ccd0ca33b3147ca6020e7646ec58a73d01716000897b499770b811c3486df5a90cea6546fb6088d045b6d7f07d57ce4b8998
data/CHANGELOG.md CHANGED
@@ -1,6 +1,36 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.60.0 (2024-07-02)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.59.0 (2024-07-01)
10
+ ------------------
11
+
12
+ * Feature - Add v2 smoke tests and smithy smokeTests trait for SDK testing.
13
+
14
+ 1.58.0 (2024-06-28)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.57.0 (2024-06-25)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
24
+ 1.56.0 (2024-06-24)
25
+ ------------------
26
+
27
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
28
+
29
+ 1.55.0 (2024-06-05)
30
+ ------------------
31
+
32
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
33
+
4
34
  1.54.0 (2024-05-13)
5
35
  ------------------
6
36
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.54.0
1
+ 1.60.0
@@ -89,6 +89,11 @@ module Aws::CognitoIdentity
89
89
 
90
90
  # @overload initialize(options)
91
91
  # @param [Hash] options
92
+ #
93
+ # @option options [Array<Seahorse::Client::Plugin>] :plugins ([]])
94
+ # A list of plugins to apply to the client. Each plugin is either a
95
+ # class name or an instance of a plugin class.
96
+ #
92
97
  # @option options [required, Aws::CredentialProvider] :credentials
93
98
  # Your AWS credentials. This can be an instance of any one of the
94
99
  # following classes:
@@ -209,7 +214,6 @@ module Aws::CognitoIdentity
209
214
  # 'https://example.com'
210
215
  # 'http://example.com:123'
211
216
  #
212
- #
213
217
  # @option options [Integer] :endpoint_cache_max_entries (1000)
214
218
  # Used for the maximum size limit of the LRU cache storing endpoints data
215
219
  # for endpoint discovery enabled operations. Defaults to 1000.
@@ -298,7 +302,6 @@ module Aws::CognitoIdentity
298
302
  # throttling. This is a provisional mode that may change behavior
299
303
  # in the future.
300
304
  #
301
- #
302
305
  # @option options [String] :sdk_ua_app_id
303
306
  # A unique and opaque application ID that is appended to the
304
307
  # User-Agent header as app/sdk_ua_app_id. It should have a
@@ -309,15 +312,21 @@ module Aws::CognitoIdentity
309
312
  #
310
313
  # @option options [String] :session_token
311
314
  #
315
+ # @option options [Array] :sigv4a_signing_region_set
316
+ # A list of regions that should be signed with SigV4a signing. When
317
+ # not passed, a default `:sigv4a_signing_region_set` is searched for
318
+ # in the following locations:
319
+ #
320
+ # * `Aws.config[:sigv4a_signing_region_set]`
321
+ # * `ENV['AWS_SIGV4A_SIGNING_REGION_SET']`
322
+ # * `~/.aws/config`
323
+ #
312
324
  # @option options [Boolean] :simple_json (false)
313
325
  # Disables request parameter conversion, validation, and formatting.
314
- # Also disable response data type conversions. This option is useful
315
- # when you want to ensure the highest level of performance by
316
- # avoiding overhead of walking request parameters and response data
317
- # structures.
318
- #
319
- # When `:simple_json` is enabled, the request parameters hash must
320
- # be formatted exactly as the DynamoDB API expects.
326
+ # Also disables response data type conversions. The request parameters
327
+ # hash must be formatted exactly as the API expects.This option is useful
328
+ # when you want to ensure the highest level of performance by avoiding
329
+ # overhead of walking request parameters and response data structures.
321
330
  #
322
331
  # @option options [Boolean] :stub_responses (false)
323
332
  # Causes the client to return stubbed responses. By default
@@ -1693,7 +1702,7 @@ module Aws::CognitoIdentity
1693
1702
  params: params,
1694
1703
  config: config)
1695
1704
  context[:gem_name] = 'aws-sdk-cognitoidentity'
1696
- context[:gem_version] = '1.54.0'
1705
+ context[:gem_version] = '1.60.0'
1697
1706
  Seahorse::Client::Request.new(handlers, context)
1698
1707
  end
1699
1708
 
@@ -423,9 +423,11 @@ module Aws::CognitoIdentity
423
423
 
424
424
  api.metadata = {
425
425
  "apiVersion" => "2014-06-30",
426
+ "auth" => ["aws.auth#sigv4"],
426
427
  "endpointPrefix" => "cognito-identity",
427
428
  "jsonVersion" => "1.1",
428
429
  "protocol" => "json",
430
+ "protocols" => ["json"],
429
431
  "serviceFullName" => "Amazon Cognito Identity",
430
432
  "serviceId" => "Cognito Identity",
431
433
  "signatureVersion" => "v4",
@@ -502,6 +504,7 @@ module Aws::CognitoIdentity
502
504
  o.http_method = "POST"
503
505
  o.http_request_uri = "/"
504
506
  o['authtype'] = "none"
507
+ o['auth'] = ["smithy.api#noAuth"]
505
508
  o.input = Shapes::ShapeRef.new(shape: GetCredentialsForIdentityInput)
506
509
  o.output = Shapes::ShapeRef.new(shape: GetCredentialsForIdentityResponse)
507
510
  o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
@@ -519,6 +522,7 @@ module Aws::CognitoIdentity
519
522
  o.http_method = "POST"
520
523
  o.http_request_uri = "/"
521
524
  o['authtype'] = "none"
525
+ o['auth'] = ["smithy.api#noAuth"]
522
526
  o.input = Shapes::ShapeRef.new(shape: GetIdInput)
523
527
  o.output = Shapes::ShapeRef.new(shape: GetIdResponse)
524
528
  o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
@@ -550,6 +554,7 @@ module Aws::CognitoIdentity
550
554
  o.http_method = "POST"
551
555
  o.http_request_uri = "/"
552
556
  o['authtype'] = "none"
557
+ o['auth'] = ["smithy.api#noAuth"]
553
558
  o.input = Shapes::ShapeRef.new(shape: GetOpenIdTokenInput)
554
559
  o.output = Shapes::ShapeRef.new(shape: GetOpenIdTokenResponse)
555
560
  o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
@@ -722,6 +727,7 @@ module Aws::CognitoIdentity
722
727
  o.http_method = "POST"
723
728
  o.http_request_uri = "/"
724
729
  o['authtype'] = "none"
730
+ o['auth'] = ["smithy.api#noAuth"]
725
731
  o.input = Shapes::ShapeRef.new(shape: UnlinkIdentityInput)
726
732
  o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
727
733
  o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
@@ -32,7 +32,7 @@ module Aws::CognitoIdentity
32
32
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
33
  end
34
34
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
36
36
  return Aws::Endpoints::Endpoint.new(url: "https://cognito-identity-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
37
  end
38
38
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
@@ -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.54.0'
55
+ GEM_VERSION = '1.60.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -48,6 +48,7 @@ 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,
53
54
  ?token_provider: untyped,
data/sig/resource.rbs CHANGED
@@ -48,6 +48,7 @@ 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,
53
54
  ?token_provider: untyped,
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.54.0
4
+ version: 1.60.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-05-13 00:00:00.000000000 Z
11
+ date: 2024-07-02 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.193.0
22
+ version: 3.201.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.193.0
32
+ version: 3.201.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: