aws-sdk-cognitoidentityprovider 1.106.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cognitoidentityprovider/client.rb +1 -3
- data/lib/aws-sdk-cognitoidentityprovider/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-cognitoidentityprovider/endpoints.rb +2 -1131
- data/lib/aws-sdk-cognitoidentityprovider/plugins/endpoints.rb +1 -212
- data/lib/aws-sdk-cognitoidentityprovider.rb +3 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c171f3e9e80ad5f52b04997c2329265cefb59f8f531873aa81873fc8b64da168
|
4
|
+
data.tar.gz: a22ff8246c7897825980f35f0c0e8b454689fb8b1764c57308b53ee5722f243d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a20e6919f67e8b6a502eb7349863c5408c3dbd94e83d713f44abdb6ae73ab8f64fe1f5edcc5083c61fbd864f2c08014e1a16f3ab86d2a7c0dbfde565d028e399
|
7
|
+
data.tar.gz: cbd3ffdb36d003c6ac6221937b1fe7ed3366af9cdf4eefe8dae332d097c81b27a956611b9294f9dfc7e2cdfb5909dbd607eef4e794a06c5c7bcebc8d46677670
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.108.0 (2024-10-18)
|
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-24)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.106.0 (2024-09-23)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.108.0
|
@@ -36,8 +36,6 @@ require 'aws-sdk-core/plugins/telemetry.rb'
|
|
36
36
|
require 'aws-sdk-core/plugins/sign.rb'
|
37
37
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
38
38
|
|
39
|
-
Aws::Plugins::GlobalConfiguration.add_identifier(:cognitoidentityprovider)
|
40
|
-
|
41
39
|
module Aws::CognitoIdentityProvider
|
42
40
|
# An API client for CognitoIdentityProvider. To construct a client, you need to configure a `:region` and `:credentials`.
|
43
41
|
#
|
@@ -10939,7 +10937,7 @@ module Aws::CognitoIdentityProvider
|
|
10939
10937
|
tracer: tracer
|
10940
10938
|
)
|
10941
10939
|
context[:gem_name] = 'aws-sdk-cognitoidentityprovider'
|
10942
|
-
context[:gem_version] = '1.
|
10940
|
+
context[:gem_version] = '1.108.0'
|
10943
10941
|
Seahorse::Client::Request.new(handlers, context)
|
10944
10942
|
end
|
10945
10943
|
|
@@ -52,15 +52,18 @@ module Aws::CognitoIdentityProvider
|
|
52
52
|
self[:region] = options[:region]
|
53
53
|
self[:use_dual_stack] = options[:use_dual_stack]
|
54
54
|
self[:use_dual_stack] = false if self[:use_dual_stack].nil?
|
55
|
-
if self[:use_dual_stack].nil?
|
56
|
-
raise ArgumentError, "Missing required EndpointParameter: :use_dual_stack"
|
57
|
-
end
|
58
55
|
self[:use_fips] = options[:use_fips]
|
59
56
|
self[:use_fips] = false if self[:use_fips].nil?
|
60
|
-
if self[:use_fips].nil?
|
61
|
-
raise ArgumentError, "Missing required EndpointParameter: :use_fips"
|
62
|
-
end
|
63
57
|
self[:endpoint] = options[:endpoint]
|
64
58
|
end
|
59
|
+
|
60
|
+
def self.create(config, options={})
|
61
|
+
new({
|
62
|
+
region: config.region,
|
63
|
+
use_dual_stack: config.use_dualstack_endpoint,
|
64
|
+
use_fips: config.use_fips_endpoint,
|
65
|
+
endpoint: (config.endpoint.to_s unless config.regional_endpoint),
|
66
|
+
}.merge(options))
|
67
|
+
end
|
65
68
|
end
|
66
69
|
end
|