aws-sdk-cognitoidentity 1.60.0 → 1.62.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: '09bd9b86e1cae19e95fa5b587bae8a96a2cdac8fad1c6de71415d619a48436cc'
4
- data.tar.gz: 500d44968228bcaf556bb17a647c2dcc6ba19de16b9a7a57b52cc9d8088f5fa5
3
+ metadata.gz: ec71272c3b486f57476b2fba74bada0bfbb66ceda9319592da4435eeb11d6d90
4
+ data.tar.gz: 02d35001782ce53ea01fdb1d8f6289024763a0441f1d329e2f5c45333cc0c6a2
5
5
  SHA512:
6
- metadata.gz: ce41009c3b80a1ddd733ef8f9426a99c294697e0e892d8a1181888499e684788f5e856415e5f1b1d6e4b1dba78bad9ad0b732a9055d80044cc54a9ac07fef503
7
- data.tar.gz: d405863c4582d2680f0a0b6218b3ccd0ca33b3147ca6020e7646ec58a73d01716000897b499770b811c3486df5a90cea6546fb6088d045b6d7f07d57ce4b8998
6
+ metadata.gz: a6aa57751915d9587cda731dacb465654d5de1a5d6283f0acac48eb2bb415883a0c2a0ceab7a0f8a31b8f53e82445882361c55ba93880fe33ca9117c4d827e4c
7
+ data.tar.gz: a2358173138cbd5bba8d45f36dd1ec6b8e7f1eae3e2f23e01c1f8773e3758a52fb6f851a5dc468ba6b83f49bdf6974838ba8d1aac50b163eef4e88b346a6790d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.62.0 (2024-09-10)
5
+ ------------------
6
+
7
+ * Feature - This release adds sensitive trait to some required shapes.
8
+
9
+ 1.61.0 (2024-09-03)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.60.0 (2024-07-02)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.60.0
1
+ 1.62.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)
@@ -337,6 +339,16 @@ module Aws::CognitoIdentity
337
339
  # ** Please note ** When response stubbing is enabled, no HTTP
338
340
  # requests are made, and retries are disabled.
339
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
+ #
340
352
  # @option options [Aws::TokenProvider] :token_provider
341
353
  # A Bearer Token Provider. This can be an instance of any one of the
342
354
  # following classes:
@@ -420,6 +432,12 @@ module Aws::CognitoIdentity
420
432
  # @option options [String] :ssl_ca_store
421
433
  # Sets the X509::Store to verify peer certificate.
422
434
  #
435
+ # @option options [OpenSSL::X509::Certificate] :ssl_cert
436
+ # Sets a client certificate when creating http connections.
437
+ #
438
+ # @option options [OpenSSL::PKey] :ssl_key
439
+ # Sets a client key when creating http connections.
440
+ #
423
441
  # @option options [Float] :ssl_timeout
424
442
  # Sets the SSL timeout in seconds
425
443
  #
@@ -1695,14 +1713,19 @@ module Aws::CognitoIdentity
1695
1713
  # @api private
1696
1714
  def build_request(operation_name, params = {})
1697
1715
  handlers = @handlers.for(operation_name)
1716
+ tracer = config.telemetry_provider.tracer_provider.tracer(
1717
+ Aws::Telemetry.module_to_tracer_name('Aws::CognitoIdentity')
1718
+ )
1698
1719
  context = Seahorse::Client::RequestContext.new(
1699
1720
  operation_name: operation_name,
1700
1721
  operation: config.api.operation(operation_name),
1701
1722
  client: self,
1702
1723
  params: params,
1703
- config: config)
1724
+ config: config,
1725
+ tracer: tracer
1726
+ )
1704
1727
  context[:gem_name] = 'aws-sdk-cognitoidentity'
1705
- context[:gem_version] = '1.60.0'
1728
+ context[:gem_version] = '1.62.0'
1706
1729
  Seahorse::Client::Request.new(handlers, context)
1707
1730
  end
1708
1731
 
@@ -154,7 +154,7 @@ module Aws::CognitoIdentity
154
154
  :secret_key,
155
155
  :session_token,
156
156
  :expiration)
157
- SENSITIVE = []
157
+ SENSITIVE = [:secret_key]
158
158
  include Aws::Structure
159
159
  end
160
160
 
@@ -297,7 +297,7 @@ module Aws::CognitoIdentity
297
297
  :identity_id,
298
298
  :logins,
299
299
  :custom_role_arn)
300
- SENSITIVE = []
300
+ SENSITIVE = [:logins]
301
301
  include Aws::Structure
302
302
  end
303
303
 
@@ -358,7 +358,7 @@ module Aws::CognitoIdentity
358
358
  :account_id,
359
359
  :identity_pool_id,
360
360
  :logins)
361
- SENSITIVE = []
361
+ SENSITIVE = [:logins]
362
362
  include Aws::Structure
363
363
  end
364
364
 
@@ -471,7 +471,7 @@ module Aws::CognitoIdentity
471
471
  :logins,
472
472
  :principal_tags,
473
473
  :token_duration)
474
- SENSITIVE = []
474
+ SENSITIVE = [:logins]
475
475
  include Aws::Structure
476
476
  end
477
477
 
@@ -491,7 +491,7 @@ module Aws::CognitoIdentity
491
491
  class GetOpenIdTokenForDeveloperIdentityResponse < Struct.new(
492
492
  :identity_id,
493
493
  :token)
494
- SENSITIVE = []
494
+ SENSITIVE = [:token]
495
495
  include Aws::Structure
496
496
  end
497
497
 
@@ -514,7 +514,7 @@ module Aws::CognitoIdentity
514
514
  class GetOpenIdTokenInput < Struct.new(
515
515
  :identity_id,
516
516
  :logins)
517
- SENSITIVE = []
517
+ SENSITIVE = [:logins]
518
518
  include Aws::Structure
519
519
  end
520
520
 
@@ -534,7 +534,7 @@ module Aws::CognitoIdentity
534
534
  class GetOpenIdTokenResponse < Struct.new(
535
535
  :identity_id,
536
536
  :token)
537
- SENSITIVE = []
537
+ SENSITIVE = [:token]
538
538
  include Aws::Structure
539
539
  end
540
540
 
@@ -1312,7 +1312,7 @@ module Aws::CognitoIdentity
1312
1312
  :identity_id,
1313
1313
  :logins,
1314
1314
  :logins_to_remove)
1315
- SENSITIVE = []
1315
+ SENSITIVE = [:logins]
1316
1316
  include Aws::Structure
1317
1317
  end
1318
1318
 
@@ -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.60.0'
55
+ GEM_VERSION = '1.62.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -51,6 +51,7 @@ module Aws
51
51
  ?sigv4a_signing_region_set: Array[String],
52
52
  ?simple_json: bool,
53
53
  ?stub_responses: untyped,
54
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
54
55
  ?token_provider: untyped,
55
56
  ?use_dualstack_endpoint: bool,
56
57
  ?use_fips_endpoint: bool,
data/sig/resource.rbs CHANGED
@@ -51,6 +51,7 @@ module Aws
51
51
  ?sigv4a_signing_region_set: Array[String],
52
52
  ?simple_json: bool,
53
53
  ?stub_responses: untyped,
54
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
54
55
  ?token_provider: untyped,
55
56
  ?use_dualstack_endpoint: bool,
56
57
  ?use_fips_endpoint: bool,
data/sig/types.rbs CHANGED
@@ -38,7 +38,7 @@ module Aws::CognitoIdentity
38
38
  attr_accessor secret_key: ::String
39
39
  attr_accessor session_token: ::String
40
40
  attr_accessor expiration: ::Time
41
- SENSITIVE: []
41
+ SENSITIVE: [:secret_key]
42
42
  end
43
43
 
44
44
  class DeleteIdentitiesInput
@@ -125,7 +125,7 @@ module Aws::CognitoIdentity
125
125
  class GetOpenIdTokenForDeveloperIdentityResponse
126
126
  attr_accessor identity_id: ::String
127
127
  attr_accessor token: ::String
128
- SENSITIVE: []
128
+ SENSITIVE: [:token]
129
129
  end
130
130
 
131
131
  class GetOpenIdTokenInput
@@ -137,7 +137,7 @@ module Aws::CognitoIdentity
137
137
  class GetOpenIdTokenResponse
138
138
  attr_accessor identity_id: ::String
139
139
  attr_accessor token: ::String
140
- SENSITIVE: []
140
+ SENSITIVE: [:token]
141
141
  end
142
142
 
143
143
  class GetPrincipalTagAttributeMapInput
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.60.0
4
+ version: 1.62.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-02 00:00:00.000000000 Z
11
+ date: 2024-09-10 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