aws-sdk-cognitoidentity 1.51.0 → 1.52.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cognitoidentity/client.rb +1 -1
- data/lib/aws-sdk-cognitoidentity/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-cognitoidentity.rb +1 -1
- data/sig/client.rbs +411 -0
- data/sig/errors.rbs +49 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +373 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: da9e2ecf1f8f111bbd51942d3434a3bbeaa359db2b137d27fb4c7b45b3ecb12d
|
4
|
+
data.tar.gz: 4ecaec2fe62016eb76f8f6f5dd3006dce3624bbf06644438af0234f4ed12c803
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1117216a017fef53d7bd339bedb6b7909d68272e52c62e388a6b0bf1b4963ce91836d46efce3503e9acce7b9ad345ad6a48e7683599fc62901724cae6378ec8e
|
7
|
+
data.tar.gz: 4affa74530c400c2c9c14b8c0cb1339c01a0cfdb7e98f9a0df85d209fa0db0ef6c63b94b5d0c589fe5c4674cd7154091473d332ac9989ece6e0d2f3cbcc102be
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.52.0
|
@@ -1668,7 +1668,7 @@ module Aws::CognitoIdentity
|
|
1668
1668
|
params: params,
|
1669
1669
|
config: config)
|
1670
1670
|
context[:gem_name] = 'aws-sdk-cognitoidentity'
|
1671
|
-
context[:gem_version] = '1.
|
1671
|
+
context[:gem_version] = '1.52.0'
|
1672
1672
|
Seahorse::Client::Request.new(handlers, context)
|
1673
1673
|
end
|
1674
1674
|
|
@@ -14,6 +14,7 @@ module Aws::CognitoIdentity
|
|
14
14
|
option(
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::CognitoIdentity::EndpointProvider',
|
17
|
+
rbs_type: 'untyped',
|
17
18
|
docstring: 'The endpoint provider used to resolve endpoints. Any '\
|
18
19
|
'object that responds to `#resolve_endpoint(parameters)` '\
|
19
20
|
'where `parameters` is a Struct similar to '\
|
data/sig/client.rbs
ADDED
@@ -0,0 +1,411 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module CognitoIdentity
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CognitoIdentity/Client.html#initialize-instance_method
|
14
|
+
def self.new: (
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?simple_json: bool,
|
52
|
+
?stub_responses: untyped,
|
53
|
+
?token_provider: untyped,
|
54
|
+
?use_dualstack_endpoint: bool,
|
55
|
+
?use_fips_endpoint: bool,
|
56
|
+
?validate_params: bool,
|
57
|
+
?endpoint_provider: untyped,
|
58
|
+
?http_proxy: String,
|
59
|
+
?http_open_timeout: (Float | Integer),
|
60
|
+
?http_read_timeout: (Float | Integer),
|
61
|
+
?http_idle_timeout: (Float | Integer),
|
62
|
+
?http_continue_timeout: (Float | Integer),
|
63
|
+
?ssl_timeout: (Float | Integer | nil),
|
64
|
+
?http_wire_trace: bool,
|
65
|
+
?ssl_verify_peer: bool,
|
66
|
+
?ssl_ca_bundle: String,
|
67
|
+
?ssl_ca_directory: String,
|
68
|
+
?ssl_ca_store: String,
|
69
|
+
?on_chunk_received: Proc,
|
70
|
+
?on_chunk_sent: Proc,
|
71
|
+
?raise_response_errors: bool
|
72
|
+
) -> instance
|
73
|
+
| (?Hash[Symbol, untyped]) -> instance
|
74
|
+
|
75
|
+
|
76
|
+
interface _CreateIdentityPoolResponseSuccess
|
77
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::IdentityPool]
|
78
|
+
def identity_pool_id: () -> ::String
|
79
|
+
def identity_pool_name: () -> ::String
|
80
|
+
def allow_unauthenticated_identities: () -> bool
|
81
|
+
def allow_classic_flow: () -> bool
|
82
|
+
def supported_login_providers: () -> ::Hash[::String, ::String]
|
83
|
+
def developer_provider_name: () -> ::String
|
84
|
+
def open_id_connect_provider_arns: () -> ::Array[::String]
|
85
|
+
def cognito_identity_providers: () -> ::Array[Types::CognitoIdentityProvider]
|
86
|
+
def saml_provider_arns: () -> ::Array[::String]
|
87
|
+
def identity_pool_tags: () -> ::Hash[::String, ::String]
|
88
|
+
end
|
89
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CognitoIdentity/Client.html#create_identity_pool-instance_method
|
90
|
+
def create_identity_pool: (
|
91
|
+
identity_pool_name: ::String,
|
92
|
+
allow_unauthenticated_identities: bool,
|
93
|
+
?allow_classic_flow: bool,
|
94
|
+
?supported_login_providers: Hash[::String, ::String],
|
95
|
+
?developer_provider_name: ::String,
|
96
|
+
?open_id_connect_provider_arns: Array[::String],
|
97
|
+
?cognito_identity_providers: Array[
|
98
|
+
{
|
99
|
+
provider_name: ::String?,
|
100
|
+
client_id: ::String?,
|
101
|
+
server_side_token_check: bool?
|
102
|
+
},
|
103
|
+
],
|
104
|
+
?saml_provider_arns: Array[::String],
|
105
|
+
?identity_pool_tags: Hash[::String, ::String]
|
106
|
+
) -> _CreateIdentityPoolResponseSuccess
|
107
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateIdentityPoolResponseSuccess
|
108
|
+
|
109
|
+
interface _DeleteIdentitiesResponseSuccess
|
110
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteIdentitiesResponse]
|
111
|
+
def unprocessed_identity_ids: () -> ::Array[Types::UnprocessedIdentityId]
|
112
|
+
end
|
113
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CognitoIdentity/Client.html#delete_identities-instance_method
|
114
|
+
def delete_identities: (
|
115
|
+
identity_ids_to_delete: Array[::String]
|
116
|
+
) -> _DeleteIdentitiesResponseSuccess
|
117
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteIdentitiesResponseSuccess
|
118
|
+
|
119
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CognitoIdentity/Client.html#delete_identity_pool-instance_method
|
120
|
+
def delete_identity_pool: (
|
121
|
+
identity_pool_id: ::String
|
122
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
123
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
124
|
+
|
125
|
+
interface _DescribeIdentityResponseSuccess
|
126
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::IdentityDescription]
|
127
|
+
def identity_id: () -> ::String
|
128
|
+
def logins: () -> ::Array[::String]
|
129
|
+
def creation_date: () -> ::Time
|
130
|
+
def last_modified_date: () -> ::Time
|
131
|
+
end
|
132
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CognitoIdentity/Client.html#describe_identity-instance_method
|
133
|
+
def describe_identity: (
|
134
|
+
identity_id: ::String
|
135
|
+
) -> _DescribeIdentityResponseSuccess
|
136
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeIdentityResponseSuccess
|
137
|
+
|
138
|
+
interface _DescribeIdentityPoolResponseSuccess
|
139
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::IdentityPool]
|
140
|
+
def identity_pool_id: () -> ::String
|
141
|
+
def identity_pool_name: () -> ::String
|
142
|
+
def allow_unauthenticated_identities: () -> bool
|
143
|
+
def allow_classic_flow: () -> bool
|
144
|
+
def supported_login_providers: () -> ::Hash[::String, ::String]
|
145
|
+
def developer_provider_name: () -> ::String
|
146
|
+
def open_id_connect_provider_arns: () -> ::Array[::String]
|
147
|
+
def cognito_identity_providers: () -> ::Array[Types::CognitoIdentityProvider]
|
148
|
+
def saml_provider_arns: () -> ::Array[::String]
|
149
|
+
def identity_pool_tags: () -> ::Hash[::String, ::String]
|
150
|
+
end
|
151
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CognitoIdentity/Client.html#describe_identity_pool-instance_method
|
152
|
+
def describe_identity_pool: (
|
153
|
+
identity_pool_id: ::String
|
154
|
+
) -> _DescribeIdentityPoolResponseSuccess
|
155
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeIdentityPoolResponseSuccess
|
156
|
+
|
157
|
+
interface _GetCredentialsForIdentityResponseSuccess
|
158
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetCredentialsForIdentityResponse]
|
159
|
+
def identity_id: () -> ::String
|
160
|
+
def credentials: () -> Types::Credentials
|
161
|
+
end
|
162
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CognitoIdentity/Client.html#get_credentials_for_identity-instance_method
|
163
|
+
def get_credentials_for_identity: (
|
164
|
+
identity_id: ::String,
|
165
|
+
?logins: Hash[::String, ::String],
|
166
|
+
?custom_role_arn: ::String
|
167
|
+
) -> _GetCredentialsForIdentityResponseSuccess
|
168
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCredentialsForIdentityResponseSuccess
|
169
|
+
|
170
|
+
interface _GetIdResponseSuccess
|
171
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetIdResponse]
|
172
|
+
def identity_id: () -> ::String
|
173
|
+
end
|
174
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CognitoIdentity/Client.html#get_id-instance_method
|
175
|
+
def get_id: (
|
176
|
+
?account_id: ::String,
|
177
|
+
identity_pool_id: ::String,
|
178
|
+
?logins: Hash[::String, ::String]
|
179
|
+
) -> _GetIdResponseSuccess
|
180
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetIdResponseSuccess
|
181
|
+
|
182
|
+
interface _GetIdentityPoolRolesResponseSuccess
|
183
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetIdentityPoolRolesResponse]
|
184
|
+
def identity_pool_id: () -> ::String
|
185
|
+
def roles: () -> ::Hash[::String, ::String]
|
186
|
+
def role_mappings: () -> ::Hash[::String, Types::RoleMapping]
|
187
|
+
end
|
188
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CognitoIdentity/Client.html#get_identity_pool_roles-instance_method
|
189
|
+
def get_identity_pool_roles: (
|
190
|
+
identity_pool_id: ::String
|
191
|
+
) -> _GetIdentityPoolRolesResponseSuccess
|
192
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetIdentityPoolRolesResponseSuccess
|
193
|
+
|
194
|
+
interface _GetOpenIdTokenResponseSuccess
|
195
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetOpenIdTokenResponse]
|
196
|
+
def identity_id: () -> ::String
|
197
|
+
def token: () -> ::String
|
198
|
+
end
|
199
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CognitoIdentity/Client.html#get_open_id_token-instance_method
|
200
|
+
def get_open_id_token: (
|
201
|
+
identity_id: ::String,
|
202
|
+
?logins: Hash[::String, ::String]
|
203
|
+
) -> _GetOpenIdTokenResponseSuccess
|
204
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetOpenIdTokenResponseSuccess
|
205
|
+
|
206
|
+
interface _GetOpenIdTokenForDeveloperIdentityResponseSuccess
|
207
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetOpenIdTokenForDeveloperIdentityResponse]
|
208
|
+
def identity_id: () -> ::String
|
209
|
+
def token: () -> ::String
|
210
|
+
end
|
211
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CognitoIdentity/Client.html#get_open_id_token_for_developer_identity-instance_method
|
212
|
+
def get_open_id_token_for_developer_identity: (
|
213
|
+
identity_pool_id: ::String,
|
214
|
+
?identity_id: ::String,
|
215
|
+
logins: Hash[::String, ::String],
|
216
|
+
?principal_tags: Hash[::String, ::String],
|
217
|
+
?token_duration: ::Integer
|
218
|
+
) -> _GetOpenIdTokenForDeveloperIdentityResponseSuccess
|
219
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetOpenIdTokenForDeveloperIdentityResponseSuccess
|
220
|
+
|
221
|
+
interface _GetPrincipalTagAttributeMapResponseSuccess
|
222
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetPrincipalTagAttributeMapResponse]
|
223
|
+
def identity_pool_id: () -> ::String
|
224
|
+
def identity_provider_name: () -> ::String
|
225
|
+
def use_defaults: () -> bool
|
226
|
+
def principal_tags: () -> ::Hash[::String, ::String]
|
227
|
+
end
|
228
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CognitoIdentity/Client.html#get_principal_tag_attribute_map-instance_method
|
229
|
+
def get_principal_tag_attribute_map: (
|
230
|
+
identity_pool_id: ::String,
|
231
|
+
identity_provider_name: ::String
|
232
|
+
) -> _GetPrincipalTagAttributeMapResponseSuccess
|
233
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPrincipalTagAttributeMapResponseSuccess
|
234
|
+
|
235
|
+
interface _ListIdentitiesResponseSuccess
|
236
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListIdentitiesResponse]
|
237
|
+
def identity_pool_id: () -> ::String
|
238
|
+
def identities: () -> ::Array[Types::IdentityDescription]
|
239
|
+
def next_token: () -> ::String
|
240
|
+
end
|
241
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CognitoIdentity/Client.html#list_identities-instance_method
|
242
|
+
def list_identities: (
|
243
|
+
identity_pool_id: ::String,
|
244
|
+
max_results: ::Integer,
|
245
|
+
?next_token: ::String,
|
246
|
+
?hide_disabled: bool
|
247
|
+
) -> _ListIdentitiesResponseSuccess
|
248
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListIdentitiesResponseSuccess
|
249
|
+
|
250
|
+
interface _ListIdentityPoolsResponseSuccess
|
251
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListIdentityPoolsResponse]
|
252
|
+
def identity_pools: () -> ::Array[Types::IdentityPoolShortDescription]
|
253
|
+
def next_token: () -> ::String
|
254
|
+
end
|
255
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CognitoIdentity/Client.html#list_identity_pools-instance_method
|
256
|
+
def list_identity_pools: (
|
257
|
+
max_results: ::Integer,
|
258
|
+
?next_token: ::String
|
259
|
+
) -> _ListIdentityPoolsResponseSuccess
|
260
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListIdentityPoolsResponseSuccess
|
261
|
+
|
262
|
+
interface _ListTagsForResourceResponseSuccess
|
263
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
|
264
|
+
def tags: () -> ::Hash[::String, ::String]
|
265
|
+
end
|
266
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CognitoIdentity/Client.html#list_tags_for_resource-instance_method
|
267
|
+
def list_tags_for_resource: (
|
268
|
+
resource_arn: ::String
|
269
|
+
) -> _ListTagsForResourceResponseSuccess
|
270
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
271
|
+
|
272
|
+
interface _LookupDeveloperIdentityResponseSuccess
|
273
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::LookupDeveloperIdentityResponse]
|
274
|
+
def identity_id: () -> ::String
|
275
|
+
def developer_user_identifier_list: () -> ::Array[::String]
|
276
|
+
def next_token: () -> ::String
|
277
|
+
end
|
278
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CognitoIdentity/Client.html#lookup_developer_identity-instance_method
|
279
|
+
def lookup_developer_identity: (
|
280
|
+
identity_pool_id: ::String,
|
281
|
+
?identity_id: ::String,
|
282
|
+
?developer_user_identifier: ::String,
|
283
|
+
?max_results: ::Integer,
|
284
|
+
?next_token: ::String
|
285
|
+
) -> _LookupDeveloperIdentityResponseSuccess
|
286
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _LookupDeveloperIdentityResponseSuccess
|
287
|
+
|
288
|
+
interface _MergeDeveloperIdentitiesResponseSuccess
|
289
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::MergeDeveloperIdentitiesResponse]
|
290
|
+
def identity_id: () -> ::String
|
291
|
+
end
|
292
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CognitoIdentity/Client.html#merge_developer_identities-instance_method
|
293
|
+
def merge_developer_identities: (
|
294
|
+
source_user_identifier: ::String,
|
295
|
+
destination_user_identifier: ::String,
|
296
|
+
developer_provider_name: ::String,
|
297
|
+
identity_pool_id: ::String
|
298
|
+
) -> _MergeDeveloperIdentitiesResponseSuccess
|
299
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _MergeDeveloperIdentitiesResponseSuccess
|
300
|
+
|
301
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CognitoIdentity/Client.html#set_identity_pool_roles-instance_method
|
302
|
+
def set_identity_pool_roles: (
|
303
|
+
identity_pool_id: ::String,
|
304
|
+
roles: Hash[::String, ::String],
|
305
|
+
?role_mappings: Hash[::String, {
|
306
|
+
type: ("Token" | "Rules"),
|
307
|
+
ambiguous_role_resolution: ("AuthenticatedRole" | "Deny")?,
|
308
|
+
rules_configuration: {
|
309
|
+
rules: Array[
|
310
|
+
{
|
311
|
+
claim: ::String,
|
312
|
+
match_type: ("Equals" | "Contains" | "StartsWith" | "NotEqual"),
|
313
|
+
value: ::String,
|
314
|
+
role_arn: ::String
|
315
|
+
},
|
316
|
+
]
|
317
|
+
}?
|
318
|
+
}]
|
319
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
320
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
321
|
+
|
322
|
+
interface _SetPrincipalTagAttributeMapResponseSuccess
|
323
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::SetPrincipalTagAttributeMapResponse]
|
324
|
+
def identity_pool_id: () -> ::String
|
325
|
+
def identity_provider_name: () -> ::String
|
326
|
+
def use_defaults: () -> bool
|
327
|
+
def principal_tags: () -> ::Hash[::String, ::String]
|
328
|
+
end
|
329
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CognitoIdentity/Client.html#set_principal_tag_attribute_map-instance_method
|
330
|
+
def set_principal_tag_attribute_map: (
|
331
|
+
identity_pool_id: ::String,
|
332
|
+
identity_provider_name: ::String,
|
333
|
+
?use_defaults: bool,
|
334
|
+
?principal_tags: Hash[::String, ::String]
|
335
|
+
) -> _SetPrincipalTagAttributeMapResponseSuccess
|
336
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SetPrincipalTagAttributeMapResponseSuccess
|
337
|
+
|
338
|
+
interface _TagResourceResponseSuccess
|
339
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
|
340
|
+
end
|
341
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CognitoIdentity/Client.html#tag_resource-instance_method
|
342
|
+
def tag_resource: (
|
343
|
+
resource_arn: ::String,
|
344
|
+
tags: Hash[::String, ::String]
|
345
|
+
) -> _TagResourceResponseSuccess
|
346
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
|
347
|
+
|
348
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CognitoIdentity/Client.html#unlink_developer_identity-instance_method
|
349
|
+
def unlink_developer_identity: (
|
350
|
+
identity_id: ::String,
|
351
|
+
identity_pool_id: ::String,
|
352
|
+
developer_provider_name: ::String,
|
353
|
+
developer_user_identifier: ::String
|
354
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
355
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
356
|
+
|
357
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CognitoIdentity/Client.html#unlink_identity-instance_method
|
358
|
+
def unlink_identity: (
|
359
|
+
identity_id: ::String,
|
360
|
+
logins: Hash[::String, ::String],
|
361
|
+
logins_to_remove: Array[::String]
|
362
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
363
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
364
|
+
|
365
|
+
interface _UntagResourceResponseSuccess
|
366
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
|
367
|
+
end
|
368
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CognitoIdentity/Client.html#untag_resource-instance_method
|
369
|
+
def untag_resource: (
|
370
|
+
resource_arn: ::String,
|
371
|
+
tag_keys: Array[::String]
|
372
|
+
) -> _UntagResourceResponseSuccess
|
373
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
|
374
|
+
|
375
|
+
interface _UpdateIdentityPoolResponseSuccess
|
376
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::IdentityPool]
|
377
|
+
def identity_pool_id: () -> ::String
|
378
|
+
def identity_pool_name: () -> ::String
|
379
|
+
def allow_unauthenticated_identities: () -> bool
|
380
|
+
def allow_classic_flow: () -> bool
|
381
|
+
def supported_login_providers: () -> ::Hash[::String, ::String]
|
382
|
+
def developer_provider_name: () -> ::String
|
383
|
+
def open_id_connect_provider_arns: () -> ::Array[::String]
|
384
|
+
def cognito_identity_providers: () -> ::Array[Types::CognitoIdentityProvider]
|
385
|
+
def saml_provider_arns: () -> ::Array[::String]
|
386
|
+
def identity_pool_tags: () -> ::Hash[::String, ::String]
|
387
|
+
end
|
388
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CognitoIdentity/Client.html#update_identity_pool-instance_method
|
389
|
+
def update_identity_pool: (
|
390
|
+
identity_pool_id: ::String,
|
391
|
+
identity_pool_name: ::String,
|
392
|
+
allow_unauthenticated_identities: bool,
|
393
|
+
?allow_classic_flow: bool,
|
394
|
+
?supported_login_providers: Hash[::String, ::String],
|
395
|
+
?developer_provider_name: ::String,
|
396
|
+
?open_id_connect_provider_arns: Array[::String],
|
397
|
+
?cognito_identity_providers: Array[
|
398
|
+
{
|
399
|
+
provider_name: ::String?,
|
400
|
+
client_id: ::String?,
|
401
|
+
server_side_token_check: bool?
|
402
|
+
},
|
403
|
+
],
|
404
|
+
?saml_provider_arns: Array[::String],
|
405
|
+
?identity_pool_tags: Hash[::String, ::String]
|
406
|
+
) -> _UpdateIdentityPoolResponseSuccess
|
407
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateIdentityPoolResponseSuccess
|
408
|
+
end
|
409
|
+
end
|
410
|
+
end
|
411
|
+
|
data/sig/errors.rbs
ADDED
@@ -0,0 +1,49 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module CognitoIdentity
|
10
|
+
module Errors
|
11
|
+
class ServiceError < ::Aws::Errors::ServiceError
|
12
|
+
end
|
13
|
+
|
14
|
+
class ConcurrentModificationException < ::Aws::Errors::ServiceError
|
15
|
+
def message: () -> ::String
|
16
|
+
end
|
17
|
+
class DeveloperUserAlreadyRegisteredException < ::Aws::Errors::ServiceError
|
18
|
+
def message: () -> ::String
|
19
|
+
end
|
20
|
+
class ExternalServiceException < ::Aws::Errors::ServiceError
|
21
|
+
def message: () -> ::String
|
22
|
+
end
|
23
|
+
class InternalErrorException < ::Aws::Errors::ServiceError
|
24
|
+
def message: () -> ::String
|
25
|
+
end
|
26
|
+
class InvalidIdentityPoolConfigurationException < ::Aws::Errors::ServiceError
|
27
|
+
def message: () -> ::String
|
28
|
+
end
|
29
|
+
class InvalidParameterException < ::Aws::Errors::ServiceError
|
30
|
+
def message: () -> ::String
|
31
|
+
end
|
32
|
+
class LimitExceededException < ::Aws::Errors::ServiceError
|
33
|
+
def message: () -> ::String
|
34
|
+
end
|
35
|
+
class NotAuthorizedException < ::Aws::Errors::ServiceError
|
36
|
+
def message: () -> ::String
|
37
|
+
end
|
38
|
+
class ResourceConflictException < ::Aws::Errors::ServiceError
|
39
|
+
def message: () -> ::String
|
40
|
+
end
|
41
|
+
class ResourceNotFoundException < ::Aws::Errors::ServiceError
|
42
|
+
def message: () -> ::String
|
43
|
+
end
|
44
|
+
class TooManyRequestsException < ::Aws::Errors::ServiceError
|
45
|
+
def message: () -> ::String
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
data/sig/resource.rbs
ADDED
@@ -0,0 +1,80 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module CognitoIdentity
|
10
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CognitoIdentity/Resource.html
|
11
|
+
class Resource
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CognitoIdentity/Resource.html#initialize-instance_method
|
13
|
+
def initialize: (
|
14
|
+
?client: Client,
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?simple_json: bool,
|
52
|
+
?stub_responses: untyped,
|
53
|
+
?token_provider: untyped,
|
54
|
+
?use_dualstack_endpoint: bool,
|
55
|
+
?use_fips_endpoint: bool,
|
56
|
+
?validate_params: bool,
|
57
|
+
?endpoint_provider: untyped,
|
58
|
+
?http_proxy: String,
|
59
|
+
?http_open_timeout: (Float | Integer),
|
60
|
+
?http_read_timeout: (Float | Integer),
|
61
|
+
?http_idle_timeout: (Float | Integer),
|
62
|
+
?http_continue_timeout: (Float | Integer),
|
63
|
+
?ssl_timeout: (Float | Integer | nil),
|
64
|
+
?http_wire_trace: bool,
|
65
|
+
?ssl_verify_peer: bool,
|
66
|
+
?ssl_ca_bundle: String,
|
67
|
+
?ssl_ca_directory: String,
|
68
|
+
?ssl_ca_store: String,
|
69
|
+
?on_chunk_received: Proc,
|
70
|
+
?on_chunk_sent: Proc,
|
71
|
+
?raise_response_errors: bool
|
72
|
+
) -> void
|
73
|
+
| (?Hash[Symbol, untyped]) -> void
|
74
|
+
|
75
|
+
def client: () -> Client
|
76
|
+
|
77
|
+
|
78
|
+
end
|
79
|
+
end
|
80
|
+
end
|
data/sig/types.rbs
ADDED
@@ -0,0 +1,373 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::CognitoIdentity
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class CognitoIdentityProvider
|
12
|
+
attr_accessor provider_name: ::String
|
13
|
+
attr_accessor client_id: ::String
|
14
|
+
attr_accessor server_side_token_check: bool
|
15
|
+
SENSITIVE: []
|
16
|
+
end
|
17
|
+
|
18
|
+
class ConcurrentModificationException
|
19
|
+
attr_accessor message: ::String
|
20
|
+
SENSITIVE: []
|
21
|
+
end
|
22
|
+
|
23
|
+
class CreateIdentityPoolInput
|
24
|
+
attr_accessor identity_pool_name: ::String
|
25
|
+
attr_accessor allow_unauthenticated_identities: bool
|
26
|
+
attr_accessor allow_classic_flow: bool
|
27
|
+
attr_accessor supported_login_providers: ::Hash[::String, ::String]
|
28
|
+
attr_accessor developer_provider_name: ::String
|
29
|
+
attr_accessor open_id_connect_provider_arns: ::Array[::String]
|
30
|
+
attr_accessor cognito_identity_providers: ::Array[Types::CognitoIdentityProvider]
|
31
|
+
attr_accessor saml_provider_arns: ::Array[::String]
|
32
|
+
attr_accessor identity_pool_tags: ::Hash[::String, ::String]
|
33
|
+
SENSITIVE: []
|
34
|
+
end
|
35
|
+
|
36
|
+
class Credentials
|
37
|
+
attr_accessor access_key_id: ::String
|
38
|
+
attr_accessor secret_key: ::String
|
39
|
+
attr_accessor session_token: ::String
|
40
|
+
attr_accessor expiration: ::Time
|
41
|
+
SENSITIVE: []
|
42
|
+
end
|
43
|
+
|
44
|
+
class DeleteIdentitiesInput
|
45
|
+
attr_accessor identity_ids_to_delete: ::Array[::String]
|
46
|
+
SENSITIVE: []
|
47
|
+
end
|
48
|
+
|
49
|
+
class DeleteIdentitiesResponse
|
50
|
+
attr_accessor unprocessed_identity_ids: ::Array[Types::UnprocessedIdentityId]
|
51
|
+
SENSITIVE: []
|
52
|
+
end
|
53
|
+
|
54
|
+
class DeleteIdentityPoolInput
|
55
|
+
attr_accessor identity_pool_id: ::String
|
56
|
+
SENSITIVE: []
|
57
|
+
end
|
58
|
+
|
59
|
+
class DescribeIdentityInput
|
60
|
+
attr_accessor identity_id: ::String
|
61
|
+
SENSITIVE: []
|
62
|
+
end
|
63
|
+
|
64
|
+
class DescribeIdentityPoolInput
|
65
|
+
attr_accessor identity_pool_id: ::String
|
66
|
+
SENSITIVE: []
|
67
|
+
end
|
68
|
+
|
69
|
+
class DeveloperUserAlreadyRegisteredException
|
70
|
+
attr_accessor message: ::String
|
71
|
+
SENSITIVE: []
|
72
|
+
end
|
73
|
+
|
74
|
+
class ExternalServiceException
|
75
|
+
attr_accessor message: ::String
|
76
|
+
SENSITIVE: []
|
77
|
+
end
|
78
|
+
|
79
|
+
class GetCredentialsForIdentityInput
|
80
|
+
attr_accessor identity_id: ::String
|
81
|
+
attr_accessor logins: ::Hash[::String, ::String]
|
82
|
+
attr_accessor custom_role_arn: ::String
|
83
|
+
SENSITIVE: []
|
84
|
+
end
|
85
|
+
|
86
|
+
class GetCredentialsForIdentityResponse
|
87
|
+
attr_accessor identity_id: ::String
|
88
|
+
attr_accessor credentials: Types::Credentials
|
89
|
+
SENSITIVE: []
|
90
|
+
end
|
91
|
+
|
92
|
+
class GetIdInput
|
93
|
+
attr_accessor account_id: ::String
|
94
|
+
attr_accessor identity_pool_id: ::String
|
95
|
+
attr_accessor logins: ::Hash[::String, ::String]
|
96
|
+
SENSITIVE: []
|
97
|
+
end
|
98
|
+
|
99
|
+
class GetIdResponse
|
100
|
+
attr_accessor identity_id: ::String
|
101
|
+
SENSITIVE: []
|
102
|
+
end
|
103
|
+
|
104
|
+
class GetIdentityPoolRolesInput
|
105
|
+
attr_accessor identity_pool_id: ::String
|
106
|
+
SENSITIVE: []
|
107
|
+
end
|
108
|
+
|
109
|
+
class GetIdentityPoolRolesResponse
|
110
|
+
attr_accessor identity_pool_id: ::String
|
111
|
+
attr_accessor roles: ::Hash[::String, ::String]
|
112
|
+
attr_accessor role_mappings: ::Hash[::String, Types::RoleMapping]
|
113
|
+
SENSITIVE: []
|
114
|
+
end
|
115
|
+
|
116
|
+
class GetOpenIdTokenForDeveloperIdentityInput
|
117
|
+
attr_accessor identity_pool_id: ::String
|
118
|
+
attr_accessor identity_id: ::String
|
119
|
+
attr_accessor logins: ::Hash[::String, ::String]
|
120
|
+
attr_accessor principal_tags: ::Hash[::String, ::String]
|
121
|
+
attr_accessor token_duration: ::Integer
|
122
|
+
SENSITIVE: []
|
123
|
+
end
|
124
|
+
|
125
|
+
class GetOpenIdTokenForDeveloperIdentityResponse
|
126
|
+
attr_accessor identity_id: ::String
|
127
|
+
attr_accessor token: ::String
|
128
|
+
SENSITIVE: []
|
129
|
+
end
|
130
|
+
|
131
|
+
class GetOpenIdTokenInput
|
132
|
+
attr_accessor identity_id: ::String
|
133
|
+
attr_accessor logins: ::Hash[::String, ::String]
|
134
|
+
SENSITIVE: []
|
135
|
+
end
|
136
|
+
|
137
|
+
class GetOpenIdTokenResponse
|
138
|
+
attr_accessor identity_id: ::String
|
139
|
+
attr_accessor token: ::String
|
140
|
+
SENSITIVE: []
|
141
|
+
end
|
142
|
+
|
143
|
+
class GetPrincipalTagAttributeMapInput
|
144
|
+
attr_accessor identity_pool_id: ::String
|
145
|
+
attr_accessor identity_provider_name: ::String
|
146
|
+
SENSITIVE: []
|
147
|
+
end
|
148
|
+
|
149
|
+
class GetPrincipalTagAttributeMapResponse
|
150
|
+
attr_accessor identity_pool_id: ::String
|
151
|
+
attr_accessor identity_provider_name: ::String
|
152
|
+
attr_accessor use_defaults: bool
|
153
|
+
attr_accessor principal_tags: ::Hash[::String, ::String]
|
154
|
+
SENSITIVE: []
|
155
|
+
end
|
156
|
+
|
157
|
+
class IdentityDescription
|
158
|
+
attr_accessor identity_id: ::String
|
159
|
+
attr_accessor logins: ::Array[::String]
|
160
|
+
attr_accessor creation_date: ::Time
|
161
|
+
attr_accessor last_modified_date: ::Time
|
162
|
+
SENSITIVE: []
|
163
|
+
end
|
164
|
+
|
165
|
+
class IdentityPool
|
166
|
+
attr_accessor identity_pool_id: ::String
|
167
|
+
attr_accessor identity_pool_name: ::String
|
168
|
+
attr_accessor allow_unauthenticated_identities: bool
|
169
|
+
attr_accessor allow_classic_flow: bool
|
170
|
+
attr_accessor supported_login_providers: ::Hash[::String, ::String]
|
171
|
+
attr_accessor developer_provider_name: ::String
|
172
|
+
attr_accessor open_id_connect_provider_arns: ::Array[::String]
|
173
|
+
attr_accessor cognito_identity_providers: ::Array[Types::CognitoIdentityProvider]
|
174
|
+
attr_accessor saml_provider_arns: ::Array[::String]
|
175
|
+
attr_accessor identity_pool_tags: ::Hash[::String, ::String]
|
176
|
+
SENSITIVE: []
|
177
|
+
end
|
178
|
+
|
179
|
+
class IdentityPoolShortDescription
|
180
|
+
attr_accessor identity_pool_id: ::String
|
181
|
+
attr_accessor identity_pool_name: ::String
|
182
|
+
SENSITIVE: []
|
183
|
+
end
|
184
|
+
|
185
|
+
class InternalErrorException
|
186
|
+
attr_accessor message: ::String
|
187
|
+
SENSITIVE: []
|
188
|
+
end
|
189
|
+
|
190
|
+
class InvalidIdentityPoolConfigurationException
|
191
|
+
attr_accessor message: ::String
|
192
|
+
SENSITIVE: []
|
193
|
+
end
|
194
|
+
|
195
|
+
class InvalidParameterException
|
196
|
+
attr_accessor message: ::String
|
197
|
+
SENSITIVE: []
|
198
|
+
end
|
199
|
+
|
200
|
+
class LimitExceededException
|
201
|
+
attr_accessor message: ::String
|
202
|
+
SENSITIVE: []
|
203
|
+
end
|
204
|
+
|
205
|
+
class ListIdentitiesInput
|
206
|
+
attr_accessor identity_pool_id: ::String
|
207
|
+
attr_accessor max_results: ::Integer
|
208
|
+
attr_accessor next_token: ::String
|
209
|
+
attr_accessor hide_disabled: bool
|
210
|
+
SENSITIVE: []
|
211
|
+
end
|
212
|
+
|
213
|
+
class ListIdentitiesResponse
|
214
|
+
attr_accessor identity_pool_id: ::String
|
215
|
+
attr_accessor identities: ::Array[Types::IdentityDescription]
|
216
|
+
attr_accessor next_token: ::String
|
217
|
+
SENSITIVE: []
|
218
|
+
end
|
219
|
+
|
220
|
+
class ListIdentityPoolsInput
|
221
|
+
attr_accessor max_results: ::Integer
|
222
|
+
attr_accessor next_token: ::String
|
223
|
+
SENSITIVE: []
|
224
|
+
end
|
225
|
+
|
226
|
+
class ListIdentityPoolsResponse
|
227
|
+
attr_accessor identity_pools: ::Array[Types::IdentityPoolShortDescription]
|
228
|
+
attr_accessor next_token: ::String
|
229
|
+
SENSITIVE: []
|
230
|
+
end
|
231
|
+
|
232
|
+
class ListTagsForResourceInput
|
233
|
+
attr_accessor resource_arn: ::String
|
234
|
+
SENSITIVE: []
|
235
|
+
end
|
236
|
+
|
237
|
+
class ListTagsForResourceResponse
|
238
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
239
|
+
SENSITIVE: []
|
240
|
+
end
|
241
|
+
|
242
|
+
class LookupDeveloperIdentityInput
|
243
|
+
attr_accessor identity_pool_id: ::String
|
244
|
+
attr_accessor identity_id: ::String
|
245
|
+
attr_accessor developer_user_identifier: ::String
|
246
|
+
attr_accessor max_results: ::Integer
|
247
|
+
attr_accessor next_token: ::String
|
248
|
+
SENSITIVE: []
|
249
|
+
end
|
250
|
+
|
251
|
+
class LookupDeveloperIdentityResponse
|
252
|
+
attr_accessor identity_id: ::String
|
253
|
+
attr_accessor developer_user_identifier_list: ::Array[::String]
|
254
|
+
attr_accessor next_token: ::String
|
255
|
+
SENSITIVE: []
|
256
|
+
end
|
257
|
+
|
258
|
+
class MappingRule
|
259
|
+
attr_accessor claim: ::String
|
260
|
+
attr_accessor match_type: ("Equals" | "Contains" | "StartsWith" | "NotEqual")
|
261
|
+
attr_accessor value: ::String
|
262
|
+
attr_accessor role_arn: ::String
|
263
|
+
SENSITIVE: []
|
264
|
+
end
|
265
|
+
|
266
|
+
class MergeDeveloperIdentitiesInput
|
267
|
+
attr_accessor source_user_identifier: ::String
|
268
|
+
attr_accessor destination_user_identifier: ::String
|
269
|
+
attr_accessor developer_provider_name: ::String
|
270
|
+
attr_accessor identity_pool_id: ::String
|
271
|
+
SENSITIVE: []
|
272
|
+
end
|
273
|
+
|
274
|
+
class MergeDeveloperIdentitiesResponse
|
275
|
+
attr_accessor identity_id: ::String
|
276
|
+
SENSITIVE: []
|
277
|
+
end
|
278
|
+
|
279
|
+
class NotAuthorizedException
|
280
|
+
attr_accessor message: ::String
|
281
|
+
SENSITIVE: []
|
282
|
+
end
|
283
|
+
|
284
|
+
class ResourceConflictException
|
285
|
+
attr_accessor message: ::String
|
286
|
+
SENSITIVE: []
|
287
|
+
end
|
288
|
+
|
289
|
+
class ResourceNotFoundException
|
290
|
+
attr_accessor message: ::String
|
291
|
+
SENSITIVE: []
|
292
|
+
end
|
293
|
+
|
294
|
+
class RoleMapping
|
295
|
+
attr_accessor type: ("Token" | "Rules")
|
296
|
+
attr_accessor ambiguous_role_resolution: ("AuthenticatedRole" | "Deny")
|
297
|
+
attr_accessor rules_configuration: Types::RulesConfigurationType
|
298
|
+
SENSITIVE: []
|
299
|
+
end
|
300
|
+
|
301
|
+
class RulesConfigurationType
|
302
|
+
attr_accessor rules: ::Array[Types::MappingRule]
|
303
|
+
SENSITIVE: []
|
304
|
+
end
|
305
|
+
|
306
|
+
class SetIdentityPoolRolesInput
|
307
|
+
attr_accessor identity_pool_id: ::String
|
308
|
+
attr_accessor roles: ::Hash[::String, ::String]
|
309
|
+
attr_accessor role_mappings: ::Hash[::String, Types::RoleMapping]
|
310
|
+
SENSITIVE: []
|
311
|
+
end
|
312
|
+
|
313
|
+
class SetPrincipalTagAttributeMapInput
|
314
|
+
attr_accessor identity_pool_id: ::String
|
315
|
+
attr_accessor identity_provider_name: ::String
|
316
|
+
attr_accessor use_defaults: bool
|
317
|
+
attr_accessor principal_tags: ::Hash[::String, ::String]
|
318
|
+
SENSITIVE: []
|
319
|
+
end
|
320
|
+
|
321
|
+
class SetPrincipalTagAttributeMapResponse
|
322
|
+
attr_accessor identity_pool_id: ::String
|
323
|
+
attr_accessor identity_provider_name: ::String
|
324
|
+
attr_accessor use_defaults: bool
|
325
|
+
attr_accessor principal_tags: ::Hash[::String, ::String]
|
326
|
+
SENSITIVE: []
|
327
|
+
end
|
328
|
+
|
329
|
+
class TagResourceInput
|
330
|
+
attr_accessor resource_arn: ::String
|
331
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
332
|
+
SENSITIVE: []
|
333
|
+
end
|
334
|
+
|
335
|
+
class TagResourceResponse < Aws::EmptyStructure
|
336
|
+
end
|
337
|
+
|
338
|
+
class TooManyRequestsException
|
339
|
+
attr_accessor message: ::String
|
340
|
+
SENSITIVE: []
|
341
|
+
end
|
342
|
+
|
343
|
+
class UnlinkDeveloperIdentityInput
|
344
|
+
attr_accessor identity_id: ::String
|
345
|
+
attr_accessor identity_pool_id: ::String
|
346
|
+
attr_accessor developer_provider_name: ::String
|
347
|
+
attr_accessor developer_user_identifier: ::String
|
348
|
+
SENSITIVE: []
|
349
|
+
end
|
350
|
+
|
351
|
+
class UnlinkIdentityInput
|
352
|
+
attr_accessor identity_id: ::String
|
353
|
+
attr_accessor logins: ::Hash[::String, ::String]
|
354
|
+
attr_accessor logins_to_remove: ::Array[::String]
|
355
|
+
SENSITIVE: []
|
356
|
+
end
|
357
|
+
|
358
|
+
class UnprocessedIdentityId
|
359
|
+
attr_accessor identity_id: ::String
|
360
|
+
attr_accessor error_code: ("AccessDenied" | "InternalServerError")
|
361
|
+
SENSITIVE: []
|
362
|
+
end
|
363
|
+
|
364
|
+
class UntagResourceInput
|
365
|
+
attr_accessor resource_arn: ::String
|
366
|
+
attr_accessor tag_keys: ::Array[::String]
|
367
|
+
SENSITIVE: []
|
368
|
+
end
|
369
|
+
|
370
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
371
|
+
end
|
372
|
+
end
|
373
|
+
end
|
data/sig/waiters.rbs
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module CognitoIdentity
|
10
|
+
module Waiters
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
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.
|
4
|
+
version: 1.52.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-01-26 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.
|
22
|
+
version: 3.191.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.
|
32
|
+
version: 3.191.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -67,13 +67,18 @@ files:
|
|
67
67
|
- lib/aws-sdk-cognitoidentity/plugins/endpoints.rb
|
68
68
|
- lib/aws-sdk-cognitoidentity/resource.rb
|
69
69
|
- lib/aws-sdk-cognitoidentity/types.rb
|
70
|
+
- sig/client.rbs
|
71
|
+
- sig/errors.rbs
|
72
|
+
- sig/resource.rbs
|
73
|
+
- sig/types.rbs
|
74
|
+
- sig/waiters.rbs
|
70
75
|
homepage: https://github.com/aws/aws-sdk-ruby
|
71
76
|
licenses:
|
72
77
|
- Apache-2.0
|
73
78
|
metadata:
|
74
79
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-cognitoidentity
|
75
80
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-cognitoidentity/CHANGELOG.md
|
76
|
-
post_install_message:
|
81
|
+
post_install_message:
|
77
82
|
rdoc_options: []
|
78
83
|
require_paths:
|
79
84
|
- lib
|
@@ -88,8 +93,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
88
93
|
- !ruby/object:Gem::Version
|
89
94
|
version: '0'
|
90
95
|
requirements: []
|
91
|
-
rubygems_version: 3.
|
92
|
-
signing_key:
|
96
|
+
rubygems_version: 3.4.10
|
97
|
+
signing_key:
|
93
98
|
specification_version: 4
|
94
99
|
summary: AWS SDK for Ruby - Amazon Cognito Identity
|
95
100
|
test_files: []
|