aws-sdk-cognitoidentityprovider 1.116.0 → 1.117.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cognitoidentityprovider/client.rb +1808 -1389
- data/lib/aws-sdk-cognitoidentityprovider/client_api.rb +6 -0
- data/lib/aws-sdk-cognitoidentityprovider/errors.rb +16 -0
- data/lib/aws-sdk-cognitoidentityprovider/types.rb +1949 -2141
- data/lib/aws-sdk-cognitoidentityprovider.rb +1 -1
- data/sig/client.rbs +3 -2
- data/sig/errors.rbs +3 -0
- data/sig/types.rbs +7 -1
- metadata +2 -2
data/sig/client.rbs
CHANGED
@@ -248,6 +248,7 @@ module Aws
|
|
248
248
|
def session: () -> ::String
|
249
249
|
def challenge_parameters: () -> ::Hash[::String, ::String]
|
250
250
|
def authentication_result: () -> Types::AuthenticationResultType
|
251
|
+
def available_challenges: () -> ::Array[("SMS_MFA" | "EMAIL_OTP" | "SOFTWARE_TOKEN_MFA" | "SELECT_MFA_TYPE" | "MFA_SETUP" | "PASSWORD_VERIFIER" | "CUSTOM_CHALLENGE" | "SELECT_CHALLENGE" | "DEVICE_SRP_AUTH" | "DEVICE_PASSWORD_VERIFIER" | "ADMIN_NO_SRP_AUTH" | "NEW_PASSWORD_REQUIRED" | "SMS_OTP" | "PASSWORD" | "WEB_AUTHN" | "PASSWORD_SRP")]
|
251
252
|
end
|
252
253
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CognitoIdentityProvider/Client.html#admin_initiate_auth-instance_method
|
253
254
|
def admin_initiate_auth: (
|
@@ -699,7 +700,7 @@ module Aws
|
|
699
700
|
pre_token_generation: ::String?,
|
700
701
|
user_migration: ::String?,
|
701
702
|
pre_token_generation_config: {
|
702
|
-
lambda_version: ("V1_0" | "V2_0"),
|
703
|
+
lambda_version: ("V1_0" | "V2_0" | "V3_0"),
|
703
704
|
lambda_arn: ::String
|
704
705
|
}?,
|
705
706
|
custom_sms_sender: {
|
@@ -1810,7 +1811,7 @@ module Aws
|
|
1810
1811
|
pre_token_generation: ::String?,
|
1811
1812
|
user_migration: ::String?,
|
1812
1813
|
pre_token_generation_config: {
|
1813
|
-
lambda_version: ("V1_0" | "V2_0"),
|
1814
|
+
lambda_version: ("V1_0" | "V2_0" | "V3_0"),
|
1814
1815
|
lambda_arn: ::String
|
1815
1816
|
}?,
|
1816
1817
|
custom_sms_sender: {
|
data/sig/errors.rbs
CHANGED
@@ -23,6 +23,9 @@ module Aws
|
|
23
23
|
class ConcurrentModificationException < ::Aws::Errors::ServiceError
|
24
24
|
def message: () -> ::String
|
25
25
|
end
|
26
|
+
class DeviceKeyExistsException < ::Aws::Errors::ServiceError
|
27
|
+
def message: () -> ::String
|
28
|
+
end
|
26
29
|
class DuplicateProviderException < ::Aws::Errors::ServiceError
|
27
30
|
def message: () -> ::String
|
28
31
|
end
|
data/sig/types.rbs
CHANGED
@@ -181,6 +181,7 @@ module Aws::CognitoIdentityProvider
|
|
181
181
|
attr_accessor session: ::String
|
182
182
|
attr_accessor challenge_parameters: ::Hash[::String, ::String]
|
183
183
|
attr_accessor authentication_result: Types::AuthenticationResultType
|
184
|
+
attr_accessor available_challenges: ::Array[("SMS_MFA" | "EMAIL_OTP" | "SOFTWARE_TOKEN_MFA" | "SELECT_MFA_TYPE" | "MFA_SETUP" | "PASSWORD_VERIFIER" | "CUSTOM_CHALLENGE" | "SELECT_CHALLENGE" | "DEVICE_SRP_AUTH" | "DEVICE_PASSWORD_VERIFIER" | "ADMIN_NO_SRP_AUTH" | "NEW_PASSWORD_REQUIRED" | "SMS_OTP" | "PASSWORD" | "WEB_AUTHN" | "PASSWORD_SRP")]
|
184
185
|
SENSITIVE: [:session]
|
185
186
|
end
|
186
187
|
|
@@ -874,6 +875,11 @@ module Aws::CognitoIdentityProvider
|
|
874
875
|
SENSITIVE: []
|
875
876
|
end
|
876
877
|
|
878
|
+
class DeviceKeyExistsException
|
879
|
+
attr_accessor message: ::String
|
880
|
+
SENSITIVE: []
|
881
|
+
end
|
882
|
+
|
877
883
|
class DeviceSecretVerifierConfigType
|
878
884
|
attr_accessor password_verifier: ::String
|
879
885
|
attr_accessor salt: ::String
|
@@ -1503,7 +1509,7 @@ module Aws::CognitoIdentityProvider
|
|
1503
1509
|
end
|
1504
1510
|
|
1505
1511
|
class PreTokenGenerationVersionConfigType
|
1506
|
-
attr_accessor lambda_version: ("V1_0" | "V2_0")
|
1512
|
+
attr_accessor lambda_version: ("V1_0" | "V2_0" | "V3_0")
|
1507
1513
|
attr_accessor lambda_arn: ::String
|
1508
1514
|
SENSITIVE: []
|
1509
1515
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-cognitoidentityprovider
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.117.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: 2025-
|
11
|
+
date: 2025-03-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|