aws-sdk-identitystore 1.33.0 → 1.34.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-identitystore/client.rb +1 -1
- data/lib/aws-sdk-identitystore/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-identitystore.rb +1 -1
- data/sig/client.rbs +416 -0
- data/sig/errors.rbs +49 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +444 -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: 80966b403b809e3ce262cc0b09a3f26343dbd11f5ca19d3c30b137e2a2008fbb
|
4
|
+
data.tar.gz: 0d2d564aae66cc626651c608319924f2b9d3ef2f4aeef31227f4b022e108df7c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 28f7ec27c0f9294fbb6ca8b691c8009e8f2b878ffacf72784f84a5917c19b9f5e66717e7d0b91fbd19c47de7ee8291dfb2f67f830bb53d43133e7ca04aad66ce
|
7
|
+
data.tar.gz: 5f52b085e110b1e66821142edae959d2f537bff2d617a2580d5213a8d1f59d4d6dedd1b28c65875e6d96e1156ba184e7e1420571ad188a1092b6428afdb7b29b
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.34.0
|
@@ -1524,7 +1524,7 @@ module Aws::IdentityStore
|
|
1524
1524
|
params: params,
|
1525
1525
|
config: config)
|
1526
1526
|
context[:gem_name] = 'aws-sdk-identitystore'
|
1527
|
-
context[:gem_version] = '1.
|
1527
|
+
context[:gem_version] = '1.34.0'
|
1528
1528
|
Seahorse::Client::Request.new(handlers, context)
|
1529
1529
|
end
|
1530
1530
|
|
@@ -14,6 +14,7 @@ module Aws::IdentityStore
|
|
14
14
|
option(
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::IdentityStore::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,416 @@
|
|
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 IdentityStore
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IdentityStore/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 _CreateGroupResponseSuccess
|
77
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateGroupResponse]
|
78
|
+
def group_id: () -> ::String
|
79
|
+
def identity_store_id: () -> ::String
|
80
|
+
end
|
81
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IdentityStore/Client.html#create_group-instance_method
|
82
|
+
def create_group: (
|
83
|
+
identity_store_id: ::String,
|
84
|
+
?display_name: ::String,
|
85
|
+
?description: ::String
|
86
|
+
) -> _CreateGroupResponseSuccess
|
87
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateGroupResponseSuccess
|
88
|
+
|
89
|
+
interface _CreateGroupMembershipResponseSuccess
|
90
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateGroupMembershipResponse]
|
91
|
+
def membership_id: () -> ::String
|
92
|
+
def identity_store_id: () -> ::String
|
93
|
+
end
|
94
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IdentityStore/Client.html#create_group_membership-instance_method
|
95
|
+
def create_group_membership: (
|
96
|
+
identity_store_id: ::String,
|
97
|
+
group_id: ::String,
|
98
|
+
member_id: {
|
99
|
+
user_id: ::String?
|
100
|
+
}
|
101
|
+
) -> _CreateGroupMembershipResponseSuccess
|
102
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateGroupMembershipResponseSuccess
|
103
|
+
|
104
|
+
interface _CreateUserResponseSuccess
|
105
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateUserResponse]
|
106
|
+
def user_id: () -> ::String
|
107
|
+
def identity_store_id: () -> ::String
|
108
|
+
end
|
109
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IdentityStore/Client.html#create_user-instance_method
|
110
|
+
def create_user: (
|
111
|
+
identity_store_id: ::String,
|
112
|
+
?user_name: ::String,
|
113
|
+
?name: {
|
114
|
+
formatted: ::String?,
|
115
|
+
family_name: ::String?,
|
116
|
+
given_name: ::String?,
|
117
|
+
middle_name: ::String?,
|
118
|
+
honorific_prefix: ::String?,
|
119
|
+
honorific_suffix: ::String?
|
120
|
+
},
|
121
|
+
?display_name: ::String,
|
122
|
+
?nick_name: ::String,
|
123
|
+
?profile_url: ::String,
|
124
|
+
?emails: Array[
|
125
|
+
{
|
126
|
+
value: ::String?,
|
127
|
+
type: ::String?,
|
128
|
+
primary: bool?
|
129
|
+
},
|
130
|
+
],
|
131
|
+
?addresses: Array[
|
132
|
+
{
|
133
|
+
street_address: ::String?,
|
134
|
+
locality: ::String?,
|
135
|
+
region: ::String?,
|
136
|
+
postal_code: ::String?,
|
137
|
+
country: ::String?,
|
138
|
+
formatted: ::String?,
|
139
|
+
type: ::String?,
|
140
|
+
primary: bool?
|
141
|
+
},
|
142
|
+
],
|
143
|
+
?phone_numbers: Array[
|
144
|
+
{
|
145
|
+
value: ::String?,
|
146
|
+
type: ::String?,
|
147
|
+
primary: bool?
|
148
|
+
},
|
149
|
+
],
|
150
|
+
?user_type: ::String,
|
151
|
+
?title: ::String,
|
152
|
+
?preferred_language: ::String,
|
153
|
+
?locale: ::String,
|
154
|
+
?timezone: ::String
|
155
|
+
) -> _CreateUserResponseSuccess
|
156
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateUserResponseSuccess
|
157
|
+
|
158
|
+
interface _DeleteGroupResponseSuccess
|
159
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteGroupResponse]
|
160
|
+
end
|
161
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IdentityStore/Client.html#delete_group-instance_method
|
162
|
+
def delete_group: (
|
163
|
+
identity_store_id: ::String,
|
164
|
+
group_id: ::String
|
165
|
+
) -> _DeleteGroupResponseSuccess
|
166
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteGroupResponseSuccess
|
167
|
+
|
168
|
+
interface _DeleteGroupMembershipResponseSuccess
|
169
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteGroupMembershipResponse]
|
170
|
+
end
|
171
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IdentityStore/Client.html#delete_group_membership-instance_method
|
172
|
+
def delete_group_membership: (
|
173
|
+
identity_store_id: ::String,
|
174
|
+
membership_id: ::String
|
175
|
+
) -> _DeleteGroupMembershipResponseSuccess
|
176
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteGroupMembershipResponseSuccess
|
177
|
+
|
178
|
+
interface _DeleteUserResponseSuccess
|
179
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteUserResponse]
|
180
|
+
end
|
181
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IdentityStore/Client.html#delete_user-instance_method
|
182
|
+
def delete_user: (
|
183
|
+
identity_store_id: ::String,
|
184
|
+
user_id: ::String
|
185
|
+
) -> _DeleteUserResponseSuccess
|
186
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteUserResponseSuccess
|
187
|
+
|
188
|
+
interface _DescribeGroupResponseSuccess
|
189
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeGroupResponse]
|
190
|
+
def group_id: () -> ::String
|
191
|
+
def display_name: () -> ::String
|
192
|
+
def external_ids: () -> ::Array[Types::ExternalId]
|
193
|
+
def description: () -> ::String
|
194
|
+
def identity_store_id: () -> ::String
|
195
|
+
end
|
196
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IdentityStore/Client.html#describe_group-instance_method
|
197
|
+
def describe_group: (
|
198
|
+
identity_store_id: ::String,
|
199
|
+
group_id: ::String
|
200
|
+
) -> _DescribeGroupResponseSuccess
|
201
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeGroupResponseSuccess
|
202
|
+
|
203
|
+
interface _DescribeGroupMembershipResponseSuccess
|
204
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeGroupMembershipResponse]
|
205
|
+
def identity_store_id: () -> ::String
|
206
|
+
def membership_id: () -> ::String
|
207
|
+
def group_id: () -> ::String
|
208
|
+
def member_id: () -> Types::MemberId
|
209
|
+
end
|
210
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IdentityStore/Client.html#describe_group_membership-instance_method
|
211
|
+
def describe_group_membership: (
|
212
|
+
identity_store_id: ::String,
|
213
|
+
membership_id: ::String
|
214
|
+
) -> _DescribeGroupMembershipResponseSuccess
|
215
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeGroupMembershipResponseSuccess
|
216
|
+
|
217
|
+
interface _DescribeUserResponseSuccess
|
218
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeUserResponse]
|
219
|
+
def user_name: () -> ::String
|
220
|
+
def user_id: () -> ::String
|
221
|
+
def external_ids: () -> ::Array[Types::ExternalId]
|
222
|
+
def name: () -> Types::Name
|
223
|
+
def display_name: () -> ::String
|
224
|
+
def nick_name: () -> ::String
|
225
|
+
def profile_url: () -> ::String
|
226
|
+
def emails: () -> ::Array[Types::Email]
|
227
|
+
def addresses: () -> ::Array[Types::Address]
|
228
|
+
def phone_numbers: () -> ::Array[Types::PhoneNumber]
|
229
|
+
def user_type: () -> ::String
|
230
|
+
def title: () -> ::String
|
231
|
+
def preferred_language: () -> ::String
|
232
|
+
def locale: () -> ::String
|
233
|
+
def timezone: () -> ::String
|
234
|
+
def identity_store_id: () -> ::String
|
235
|
+
end
|
236
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IdentityStore/Client.html#describe_user-instance_method
|
237
|
+
def describe_user: (
|
238
|
+
identity_store_id: ::String,
|
239
|
+
user_id: ::String
|
240
|
+
) -> _DescribeUserResponseSuccess
|
241
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeUserResponseSuccess
|
242
|
+
|
243
|
+
interface _GetGroupIdResponseSuccess
|
244
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetGroupIdResponse]
|
245
|
+
def group_id: () -> ::String
|
246
|
+
def identity_store_id: () -> ::String
|
247
|
+
end
|
248
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IdentityStore/Client.html#get_group_id-instance_method
|
249
|
+
def get_group_id: (
|
250
|
+
identity_store_id: ::String,
|
251
|
+
alternate_identifier: {
|
252
|
+
external_id: {
|
253
|
+
issuer: ::String,
|
254
|
+
id: ::String
|
255
|
+
}?,
|
256
|
+
unique_attribute: {
|
257
|
+
attribute_path: ::String,
|
258
|
+
attribute_value: untyped
|
259
|
+
}?
|
260
|
+
}
|
261
|
+
) -> _GetGroupIdResponseSuccess
|
262
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetGroupIdResponseSuccess
|
263
|
+
|
264
|
+
interface _GetGroupMembershipIdResponseSuccess
|
265
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetGroupMembershipIdResponse]
|
266
|
+
def membership_id: () -> ::String
|
267
|
+
def identity_store_id: () -> ::String
|
268
|
+
end
|
269
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IdentityStore/Client.html#get_group_membership_id-instance_method
|
270
|
+
def get_group_membership_id: (
|
271
|
+
identity_store_id: ::String,
|
272
|
+
group_id: ::String,
|
273
|
+
member_id: {
|
274
|
+
user_id: ::String?
|
275
|
+
}
|
276
|
+
) -> _GetGroupMembershipIdResponseSuccess
|
277
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetGroupMembershipIdResponseSuccess
|
278
|
+
|
279
|
+
interface _GetUserIdResponseSuccess
|
280
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetUserIdResponse]
|
281
|
+
def user_id: () -> ::String
|
282
|
+
def identity_store_id: () -> ::String
|
283
|
+
end
|
284
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IdentityStore/Client.html#get_user_id-instance_method
|
285
|
+
def get_user_id: (
|
286
|
+
identity_store_id: ::String,
|
287
|
+
alternate_identifier: {
|
288
|
+
external_id: {
|
289
|
+
issuer: ::String,
|
290
|
+
id: ::String
|
291
|
+
}?,
|
292
|
+
unique_attribute: {
|
293
|
+
attribute_path: ::String,
|
294
|
+
attribute_value: untyped
|
295
|
+
}?
|
296
|
+
}
|
297
|
+
) -> _GetUserIdResponseSuccess
|
298
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetUserIdResponseSuccess
|
299
|
+
|
300
|
+
interface _IsMemberInGroupsResponseSuccess
|
301
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::IsMemberInGroupsResponse]
|
302
|
+
def results: () -> ::Array[Types::GroupMembershipExistenceResult]
|
303
|
+
end
|
304
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IdentityStore/Client.html#is_member_in_groups-instance_method
|
305
|
+
def is_member_in_groups: (
|
306
|
+
identity_store_id: ::String,
|
307
|
+
member_id: {
|
308
|
+
user_id: ::String?
|
309
|
+
},
|
310
|
+
group_ids: Array[::String]
|
311
|
+
) -> _IsMemberInGroupsResponseSuccess
|
312
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _IsMemberInGroupsResponseSuccess
|
313
|
+
|
314
|
+
interface _ListGroupMembershipsResponseSuccess
|
315
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListGroupMembershipsResponse]
|
316
|
+
def group_memberships: () -> ::Array[Types::GroupMembership]
|
317
|
+
def next_token: () -> ::String
|
318
|
+
end
|
319
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IdentityStore/Client.html#list_group_memberships-instance_method
|
320
|
+
def list_group_memberships: (
|
321
|
+
identity_store_id: ::String,
|
322
|
+
group_id: ::String,
|
323
|
+
?max_results: ::Integer,
|
324
|
+
?next_token: ::String
|
325
|
+
) -> _ListGroupMembershipsResponseSuccess
|
326
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListGroupMembershipsResponseSuccess
|
327
|
+
|
328
|
+
interface _ListGroupMembershipsForMemberResponseSuccess
|
329
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListGroupMembershipsForMemberResponse]
|
330
|
+
def group_memberships: () -> ::Array[Types::GroupMembership]
|
331
|
+
def next_token: () -> ::String
|
332
|
+
end
|
333
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IdentityStore/Client.html#list_group_memberships_for_member-instance_method
|
334
|
+
def list_group_memberships_for_member: (
|
335
|
+
identity_store_id: ::String,
|
336
|
+
member_id: {
|
337
|
+
user_id: ::String?
|
338
|
+
},
|
339
|
+
?max_results: ::Integer,
|
340
|
+
?next_token: ::String
|
341
|
+
) -> _ListGroupMembershipsForMemberResponseSuccess
|
342
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListGroupMembershipsForMemberResponseSuccess
|
343
|
+
|
344
|
+
interface _ListGroupsResponseSuccess
|
345
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListGroupsResponse]
|
346
|
+
def groups: () -> ::Array[Types::Group]
|
347
|
+
def next_token: () -> ::String
|
348
|
+
end
|
349
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IdentityStore/Client.html#list_groups-instance_method
|
350
|
+
def list_groups: (
|
351
|
+
identity_store_id: ::String,
|
352
|
+
?max_results: ::Integer,
|
353
|
+
?next_token: ::String,
|
354
|
+
?filters: Array[
|
355
|
+
{
|
356
|
+
attribute_path: ::String,
|
357
|
+
attribute_value: ::String
|
358
|
+
},
|
359
|
+
]
|
360
|
+
) -> _ListGroupsResponseSuccess
|
361
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListGroupsResponseSuccess
|
362
|
+
|
363
|
+
interface _ListUsersResponseSuccess
|
364
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListUsersResponse]
|
365
|
+
def users: () -> ::Array[Types::User]
|
366
|
+
def next_token: () -> ::String
|
367
|
+
end
|
368
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IdentityStore/Client.html#list_users-instance_method
|
369
|
+
def list_users: (
|
370
|
+
identity_store_id: ::String,
|
371
|
+
?max_results: ::Integer,
|
372
|
+
?next_token: ::String,
|
373
|
+
?filters: Array[
|
374
|
+
{
|
375
|
+
attribute_path: ::String,
|
376
|
+
attribute_value: ::String
|
377
|
+
},
|
378
|
+
]
|
379
|
+
) -> _ListUsersResponseSuccess
|
380
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListUsersResponseSuccess
|
381
|
+
|
382
|
+
interface _UpdateGroupResponseSuccess
|
383
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateGroupResponse]
|
384
|
+
end
|
385
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IdentityStore/Client.html#update_group-instance_method
|
386
|
+
def update_group: (
|
387
|
+
identity_store_id: ::String,
|
388
|
+
group_id: ::String,
|
389
|
+
operations: Array[
|
390
|
+
{
|
391
|
+
attribute_path: ::String,
|
392
|
+
attribute_value: untyped?
|
393
|
+
},
|
394
|
+
]
|
395
|
+
) -> _UpdateGroupResponseSuccess
|
396
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateGroupResponseSuccess
|
397
|
+
|
398
|
+
interface _UpdateUserResponseSuccess
|
399
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateUserResponse]
|
400
|
+
end
|
401
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IdentityStore/Client.html#update_user-instance_method
|
402
|
+
def update_user: (
|
403
|
+
identity_store_id: ::String,
|
404
|
+
user_id: ::String,
|
405
|
+
operations: Array[
|
406
|
+
{
|
407
|
+
attribute_path: ::String,
|
408
|
+
attribute_value: untyped?
|
409
|
+
},
|
410
|
+
]
|
411
|
+
) -> _UpdateUserResponseSuccess
|
412
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateUserResponseSuccess
|
413
|
+
end
|
414
|
+
end
|
415
|
+
end
|
416
|
+
|
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 IdentityStore
|
10
|
+
module Errors
|
11
|
+
class ServiceError < ::Aws::Errors::ServiceError
|
12
|
+
end
|
13
|
+
|
14
|
+
class AccessDeniedException < ::Aws::Errors::ServiceError
|
15
|
+
def message: () -> ::String
|
16
|
+
def request_id: () -> ::String
|
17
|
+
end
|
18
|
+
class ConflictException < ::Aws::Errors::ServiceError
|
19
|
+
def message: () -> ::String
|
20
|
+
def request_id: () -> ::String
|
21
|
+
def reason: () -> ::String
|
22
|
+
end
|
23
|
+
class InternalServerException < ::Aws::Errors::ServiceError
|
24
|
+
def message: () -> ::String
|
25
|
+
def request_id: () -> ::String
|
26
|
+
def retry_after_seconds: () -> ::String
|
27
|
+
end
|
28
|
+
class ResourceNotFoundException < ::Aws::Errors::ServiceError
|
29
|
+
def resource_type: () -> ::String
|
30
|
+
def resource_id: () -> ::String
|
31
|
+
def message: () -> ::String
|
32
|
+
def request_id: () -> ::String
|
33
|
+
end
|
34
|
+
class ServiceQuotaExceededException < ::Aws::Errors::ServiceError
|
35
|
+
def message: () -> ::String
|
36
|
+
def request_id: () -> ::String
|
37
|
+
end
|
38
|
+
class ThrottlingException < ::Aws::Errors::ServiceError
|
39
|
+
def message: () -> ::String
|
40
|
+
def request_id: () -> ::String
|
41
|
+
def retry_after_seconds: () -> ::String
|
42
|
+
end
|
43
|
+
class ValidationException < ::Aws::Errors::ServiceError
|
44
|
+
def message: () -> ::String
|
45
|
+
def request_id: () -> ::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 IdentityStore
|
10
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IdentityStore/Resource.html
|
11
|
+
class Resource
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IdentityStore/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,444 @@
|
|
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::IdentityStore
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
attr_accessor request_id: ::String
|
14
|
+
SENSITIVE: []
|
15
|
+
end
|
16
|
+
|
17
|
+
class Address
|
18
|
+
attr_accessor street_address: ::String
|
19
|
+
attr_accessor locality: ::String
|
20
|
+
attr_accessor region: ::String
|
21
|
+
attr_accessor postal_code: ::String
|
22
|
+
attr_accessor country: ::String
|
23
|
+
attr_accessor formatted: ::String
|
24
|
+
attr_accessor type: ::String
|
25
|
+
attr_accessor primary: bool
|
26
|
+
SENSITIVE: [:street_address, :locality, :region, :postal_code, :country, :formatted, :type, :primary]
|
27
|
+
end
|
28
|
+
|
29
|
+
class AlternateIdentifier
|
30
|
+
attr_accessor external_id: Types::ExternalId
|
31
|
+
attr_accessor unique_attribute: Types::UniqueAttribute
|
32
|
+
attr_accessor unknown: untyped
|
33
|
+
SENSITIVE: []
|
34
|
+
|
35
|
+
class ExternalId < AlternateIdentifier
|
36
|
+
end
|
37
|
+
class UniqueAttribute < AlternateIdentifier
|
38
|
+
end
|
39
|
+
class Unknown < AlternateIdentifier
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
class AttributeOperation
|
44
|
+
attr_accessor attribute_path: ::String
|
45
|
+
attr_accessor attribute_value: untyped
|
46
|
+
SENSITIVE: []
|
47
|
+
end
|
48
|
+
|
49
|
+
class ConflictException
|
50
|
+
attr_accessor message: ::String
|
51
|
+
attr_accessor request_id: ::String
|
52
|
+
attr_accessor reason: ("UNIQUENESS_CONSTRAINT_VIOLATION" | "CONCURRENT_MODIFICATION")
|
53
|
+
SENSITIVE: []
|
54
|
+
end
|
55
|
+
|
56
|
+
class CreateGroupMembershipRequest
|
57
|
+
attr_accessor identity_store_id: ::String
|
58
|
+
attr_accessor group_id: ::String
|
59
|
+
attr_accessor member_id: Types::MemberId
|
60
|
+
SENSITIVE: []
|
61
|
+
end
|
62
|
+
|
63
|
+
class CreateGroupMembershipResponse
|
64
|
+
attr_accessor membership_id: ::String
|
65
|
+
attr_accessor identity_store_id: ::String
|
66
|
+
SENSITIVE: []
|
67
|
+
end
|
68
|
+
|
69
|
+
class CreateGroupRequest
|
70
|
+
attr_accessor identity_store_id: ::String
|
71
|
+
attr_accessor display_name: ::String
|
72
|
+
attr_accessor description: ::String
|
73
|
+
SENSITIVE: [:display_name, :description]
|
74
|
+
end
|
75
|
+
|
76
|
+
class CreateGroupResponse
|
77
|
+
attr_accessor group_id: ::String
|
78
|
+
attr_accessor identity_store_id: ::String
|
79
|
+
SENSITIVE: []
|
80
|
+
end
|
81
|
+
|
82
|
+
class CreateUserRequest
|
83
|
+
attr_accessor identity_store_id: ::String
|
84
|
+
attr_accessor user_name: ::String
|
85
|
+
attr_accessor name: Types::Name
|
86
|
+
attr_accessor display_name: ::String
|
87
|
+
attr_accessor nick_name: ::String
|
88
|
+
attr_accessor profile_url: ::String
|
89
|
+
attr_accessor emails: ::Array[Types::Email]
|
90
|
+
attr_accessor addresses: ::Array[Types::Address]
|
91
|
+
attr_accessor phone_numbers: ::Array[Types::PhoneNumber]
|
92
|
+
attr_accessor user_type: ::String
|
93
|
+
attr_accessor title: ::String
|
94
|
+
attr_accessor preferred_language: ::String
|
95
|
+
attr_accessor locale: ::String
|
96
|
+
attr_accessor timezone: ::String
|
97
|
+
SENSITIVE: [:user_name, :display_name, :nick_name, :profile_url, :user_type, :title, :preferred_language, :locale, :timezone]
|
98
|
+
end
|
99
|
+
|
100
|
+
class CreateUserResponse
|
101
|
+
attr_accessor user_id: ::String
|
102
|
+
attr_accessor identity_store_id: ::String
|
103
|
+
SENSITIVE: []
|
104
|
+
end
|
105
|
+
|
106
|
+
class DeleteGroupMembershipRequest
|
107
|
+
attr_accessor identity_store_id: ::String
|
108
|
+
attr_accessor membership_id: ::String
|
109
|
+
SENSITIVE: []
|
110
|
+
end
|
111
|
+
|
112
|
+
class DeleteGroupMembershipResponse < Aws::EmptyStructure
|
113
|
+
end
|
114
|
+
|
115
|
+
class DeleteGroupRequest
|
116
|
+
attr_accessor identity_store_id: ::String
|
117
|
+
attr_accessor group_id: ::String
|
118
|
+
SENSITIVE: []
|
119
|
+
end
|
120
|
+
|
121
|
+
class DeleteGroupResponse < Aws::EmptyStructure
|
122
|
+
end
|
123
|
+
|
124
|
+
class DeleteUserRequest
|
125
|
+
attr_accessor identity_store_id: ::String
|
126
|
+
attr_accessor user_id: ::String
|
127
|
+
SENSITIVE: []
|
128
|
+
end
|
129
|
+
|
130
|
+
class DeleteUserResponse < Aws::EmptyStructure
|
131
|
+
end
|
132
|
+
|
133
|
+
class DescribeGroupMembershipRequest
|
134
|
+
attr_accessor identity_store_id: ::String
|
135
|
+
attr_accessor membership_id: ::String
|
136
|
+
SENSITIVE: []
|
137
|
+
end
|
138
|
+
|
139
|
+
class DescribeGroupMembershipResponse
|
140
|
+
attr_accessor identity_store_id: ::String
|
141
|
+
attr_accessor membership_id: ::String
|
142
|
+
attr_accessor group_id: ::String
|
143
|
+
attr_accessor member_id: Types::MemberId
|
144
|
+
SENSITIVE: []
|
145
|
+
end
|
146
|
+
|
147
|
+
class DescribeGroupRequest
|
148
|
+
attr_accessor identity_store_id: ::String
|
149
|
+
attr_accessor group_id: ::String
|
150
|
+
SENSITIVE: []
|
151
|
+
end
|
152
|
+
|
153
|
+
class DescribeGroupResponse
|
154
|
+
attr_accessor group_id: ::String
|
155
|
+
attr_accessor display_name: ::String
|
156
|
+
attr_accessor external_ids: ::Array[Types::ExternalId]
|
157
|
+
attr_accessor description: ::String
|
158
|
+
attr_accessor identity_store_id: ::String
|
159
|
+
SENSITIVE: [:display_name, :description]
|
160
|
+
end
|
161
|
+
|
162
|
+
class DescribeUserRequest
|
163
|
+
attr_accessor identity_store_id: ::String
|
164
|
+
attr_accessor user_id: ::String
|
165
|
+
SENSITIVE: []
|
166
|
+
end
|
167
|
+
|
168
|
+
class DescribeUserResponse
|
169
|
+
attr_accessor user_name: ::String
|
170
|
+
attr_accessor user_id: ::String
|
171
|
+
attr_accessor external_ids: ::Array[Types::ExternalId]
|
172
|
+
attr_accessor name: Types::Name
|
173
|
+
attr_accessor display_name: ::String
|
174
|
+
attr_accessor nick_name: ::String
|
175
|
+
attr_accessor profile_url: ::String
|
176
|
+
attr_accessor emails: ::Array[Types::Email]
|
177
|
+
attr_accessor addresses: ::Array[Types::Address]
|
178
|
+
attr_accessor phone_numbers: ::Array[Types::PhoneNumber]
|
179
|
+
attr_accessor user_type: ::String
|
180
|
+
attr_accessor title: ::String
|
181
|
+
attr_accessor preferred_language: ::String
|
182
|
+
attr_accessor locale: ::String
|
183
|
+
attr_accessor timezone: ::String
|
184
|
+
attr_accessor identity_store_id: ::String
|
185
|
+
SENSITIVE: [:user_name, :display_name, :nick_name, :profile_url, :user_type, :title, :preferred_language, :locale, :timezone]
|
186
|
+
end
|
187
|
+
|
188
|
+
class Email
|
189
|
+
attr_accessor value: ::String
|
190
|
+
attr_accessor type: ::String
|
191
|
+
attr_accessor primary: bool
|
192
|
+
SENSITIVE: [:value, :type, :primary]
|
193
|
+
end
|
194
|
+
|
195
|
+
class ExternalId
|
196
|
+
attr_accessor issuer: ::String
|
197
|
+
attr_accessor id: ::String
|
198
|
+
SENSITIVE: [:issuer, :id]
|
199
|
+
end
|
200
|
+
|
201
|
+
class Filter
|
202
|
+
attr_accessor attribute_path: ::String
|
203
|
+
attr_accessor attribute_value: ::String
|
204
|
+
SENSITIVE: [:attribute_value]
|
205
|
+
end
|
206
|
+
|
207
|
+
class GetGroupIdRequest
|
208
|
+
attr_accessor identity_store_id: ::String
|
209
|
+
attr_accessor alternate_identifier: Types::AlternateIdentifier
|
210
|
+
SENSITIVE: []
|
211
|
+
end
|
212
|
+
|
213
|
+
class GetGroupIdResponse
|
214
|
+
attr_accessor group_id: ::String
|
215
|
+
attr_accessor identity_store_id: ::String
|
216
|
+
SENSITIVE: []
|
217
|
+
end
|
218
|
+
|
219
|
+
class GetGroupMembershipIdRequest
|
220
|
+
attr_accessor identity_store_id: ::String
|
221
|
+
attr_accessor group_id: ::String
|
222
|
+
attr_accessor member_id: Types::MemberId
|
223
|
+
SENSITIVE: []
|
224
|
+
end
|
225
|
+
|
226
|
+
class GetGroupMembershipIdResponse
|
227
|
+
attr_accessor membership_id: ::String
|
228
|
+
attr_accessor identity_store_id: ::String
|
229
|
+
SENSITIVE: []
|
230
|
+
end
|
231
|
+
|
232
|
+
class GetUserIdRequest
|
233
|
+
attr_accessor identity_store_id: ::String
|
234
|
+
attr_accessor alternate_identifier: Types::AlternateIdentifier
|
235
|
+
SENSITIVE: []
|
236
|
+
end
|
237
|
+
|
238
|
+
class GetUserIdResponse
|
239
|
+
attr_accessor user_id: ::String
|
240
|
+
attr_accessor identity_store_id: ::String
|
241
|
+
SENSITIVE: []
|
242
|
+
end
|
243
|
+
|
244
|
+
class Group
|
245
|
+
attr_accessor group_id: ::String
|
246
|
+
attr_accessor display_name: ::String
|
247
|
+
attr_accessor external_ids: ::Array[Types::ExternalId]
|
248
|
+
attr_accessor description: ::String
|
249
|
+
attr_accessor identity_store_id: ::String
|
250
|
+
SENSITIVE: [:display_name, :description]
|
251
|
+
end
|
252
|
+
|
253
|
+
class GroupMembership
|
254
|
+
attr_accessor identity_store_id: ::String
|
255
|
+
attr_accessor membership_id: ::String
|
256
|
+
attr_accessor group_id: ::String
|
257
|
+
attr_accessor member_id: Types::MemberId
|
258
|
+
SENSITIVE: []
|
259
|
+
end
|
260
|
+
|
261
|
+
class GroupMembershipExistenceResult
|
262
|
+
attr_accessor group_id: ::String
|
263
|
+
attr_accessor member_id: Types::MemberId
|
264
|
+
attr_accessor membership_exists: bool
|
265
|
+
SENSITIVE: [:membership_exists]
|
266
|
+
end
|
267
|
+
|
268
|
+
class InternalServerException
|
269
|
+
attr_accessor message: ::String
|
270
|
+
attr_accessor request_id: ::String
|
271
|
+
attr_accessor retry_after_seconds: ::Integer
|
272
|
+
SENSITIVE: []
|
273
|
+
end
|
274
|
+
|
275
|
+
class IsMemberInGroupsRequest
|
276
|
+
attr_accessor identity_store_id: ::String
|
277
|
+
attr_accessor member_id: Types::MemberId
|
278
|
+
attr_accessor group_ids: ::Array[::String]
|
279
|
+
SENSITIVE: []
|
280
|
+
end
|
281
|
+
|
282
|
+
class IsMemberInGroupsResponse
|
283
|
+
attr_accessor results: ::Array[Types::GroupMembershipExistenceResult]
|
284
|
+
SENSITIVE: []
|
285
|
+
end
|
286
|
+
|
287
|
+
class ListGroupMembershipsForMemberRequest
|
288
|
+
attr_accessor identity_store_id: ::String
|
289
|
+
attr_accessor member_id: Types::MemberId
|
290
|
+
attr_accessor max_results: ::Integer
|
291
|
+
attr_accessor next_token: ::String
|
292
|
+
SENSITIVE: []
|
293
|
+
end
|
294
|
+
|
295
|
+
class ListGroupMembershipsForMemberResponse
|
296
|
+
attr_accessor group_memberships: ::Array[Types::GroupMembership]
|
297
|
+
attr_accessor next_token: ::String
|
298
|
+
SENSITIVE: []
|
299
|
+
end
|
300
|
+
|
301
|
+
class ListGroupMembershipsRequest
|
302
|
+
attr_accessor identity_store_id: ::String
|
303
|
+
attr_accessor group_id: ::String
|
304
|
+
attr_accessor max_results: ::Integer
|
305
|
+
attr_accessor next_token: ::String
|
306
|
+
SENSITIVE: []
|
307
|
+
end
|
308
|
+
|
309
|
+
class ListGroupMembershipsResponse
|
310
|
+
attr_accessor group_memberships: ::Array[Types::GroupMembership]
|
311
|
+
attr_accessor next_token: ::String
|
312
|
+
SENSITIVE: []
|
313
|
+
end
|
314
|
+
|
315
|
+
class ListGroupsRequest
|
316
|
+
attr_accessor identity_store_id: ::String
|
317
|
+
attr_accessor max_results: ::Integer
|
318
|
+
attr_accessor next_token: ::String
|
319
|
+
attr_accessor filters: ::Array[Types::Filter]
|
320
|
+
SENSITIVE: []
|
321
|
+
end
|
322
|
+
|
323
|
+
class ListGroupsResponse
|
324
|
+
attr_accessor groups: ::Array[Types::Group]
|
325
|
+
attr_accessor next_token: ::String
|
326
|
+
SENSITIVE: []
|
327
|
+
end
|
328
|
+
|
329
|
+
class ListUsersRequest
|
330
|
+
attr_accessor identity_store_id: ::String
|
331
|
+
attr_accessor max_results: ::Integer
|
332
|
+
attr_accessor next_token: ::String
|
333
|
+
attr_accessor filters: ::Array[Types::Filter]
|
334
|
+
SENSITIVE: []
|
335
|
+
end
|
336
|
+
|
337
|
+
class ListUsersResponse
|
338
|
+
attr_accessor users: ::Array[Types::User]
|
339
|
+
attr_accessor next_token: ::String
|
340
|
+
SENSITIVE: []
|
341
|
+
end
|
342
|
+
|
343
|
+
class MemberId
|
344
|
+
attr_accessor user_id: ::String
|
345
|
+
attr_accessor unknown: untyped
|
346
|
+
SENSITIVE: []
|
347
|
+
|
348
|
+
class UserId < MemberId
|
349
|
+
end
|
350
|
+
class Unknown < MemberId
|
351
|
+
end
|
352
|
+
end
|
353
|
+
|
354
|
+
class Name
|
355
|
+
attr_accessor formatted: ::String
|
356
|
+
attr_accessor family_name: ::String
|
357
|
+
attr_accessor given_name: ::String
|
358
|
+
attr_accessor middle_name: ::String
|
359
|
+
attr_accessor honorific_prefix: ::String
|
360
|
+
attr_accessor honorific_suffix: ::String
|
361
|
+
SENSITIVE: [:formatted, :family_name, :given_name, :middle_name, :honorific_prefix, :honorific_suffix]
|
362
|
+
end
|
363
|
+
|
364
|
+
class PhoneNumber
|
365
|
+
attr_accessor value: ::String
|
366
|
+
attr_accessor type: ::String
|
367
|
+
attr_accessor primary: bool
|
368
|
+
SENSITIVE: [:value, :type, :primary]
|
369
|
+
end
|
370
|
+
|
371
|
+
class ResourceNotFoundException
|
372
|
+
attr_accessor resource_type: ("GROUP" | "USER" | "IDENTITY_STORE" | "GROUP_MEMBERSHIP")
|
373
|
+
attr_accessor resource_id: ::String
|
374
|
+
attr_accessor message: ::String
|
375
|
+
attr_accessor request_id: ::String
|
376
|
+
SENSITIVE: []
|
377
|
+
end
|
378
|
+
|
379
|
+
class ServiceQuotaExceededException
|
380
|
+
attr_accessor message: ::String
|
381
|
+
attr_accessor request_id: ::String
|
382
|
+
SENSITIVE: []
|
383
|
+
end
|
384
|
+
|
385
|
+
class ThrottlingException
|
386
|
+
attr_accessor message: ::String
|
387
|
+
attr_accessor request_id: ::String
|
388
|
+
attr_accessor retry_after_seconds: ::Integer
|
389
|
+
SENSITIVE: []
|
390
|
+
end
|
391
|
+
|
392
|
+
class UniqueAttribute
|
393
|
+
attr_accessor attribute_path: ::String
|
394
|
+
attr_accessor attribute_value: untyped
|
395
|
+
SENSITIVE: []
|
396
|
+
end
|
397
|
+
|
398
|
+
class UpdateGroupRequest
|
399
|
+
attr_accessor identity_store_id: ::String
|
400
|
+
attr_accessor group_id: ::String
|
401
|
+
attr_accessor operations: ::Array[Types::AttributeOperation]
|
402
|
+
SENSITIVE: []
|
403
|
+
end
|
404
|
+
|
405
|
+
class UpdateGroupResponse < Aws::EmptyStructure
|
406
|
+
end
|
407
|
+
|
408
|
+
class UpdateUserRequest
|
409
|
+
attr_accessor identity_store_id: ::String
|
410
|
+
attr_accessor user_id: ::String
|
411
|
+
attr_accessor operations: ::Array[Types::AttributeOperation]
|
412
|
+
SENSITIVE: []
|
413
|
+
end
|
414
|
+
|
415
|
+
class UpdateUserResponse < Aws::EmptyStructure
|
416
|
+
end
|
417
|
+
|
418
|
+
class User
|
419
|
+
attr_accessor user_name: ::String
|
420
|
+
attr_accessor user_id: ::String
|
421
|
+
attr_accessor external_ids: ::Array[Types::ExternalId]
|
422
|
+
attr_accessor name: Types::Name
|
423
|
+
attr_accessor display_name: ::String
|
424
|
+
attr_accessor nick_name: ::String
|
425
|
+
attr_accessor profile_url: ::String
|
426
|
+
attr_accessor emails: ::Array[Types::Email]
|
427
|
+
attr_accessor addresses: ::Array[Types::Address]
|
428
|
+
attr_accessor phone_numbers: ::Array[Types::PhoneNumber]
|
429
|
+
attr_accessor user_type: ::String
|
430
|
+
attr_accessor title: ::String
|
431
|
+
attr_accessor preferred_language: ::String
|
432
|
+
attr_accessor locale: ::String
|
433
|
+
attr_accessor timezone: ::String
|
434
|
+
attr_accessor identity_store_id: ::String
|
435
|
+
SENSITIVE: [:user_name, :display_name, :nick_name, :profile_url, :user_type, :title, :preferred_language, :locale, :timezone]
|
436
|
+
end
|
437
|
+
|
438
|
+
class ValidationException
|
439
|
+
attr_accessor message: ::String
|
440
|
+
attr_accessor request_id: ::String
|
441
|
+
SENSITIVE: []
|
442
|
+
end
|
443
|
+
end
|
444
|
+
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 IdentityStore
|
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-identitystore
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.34.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
|
@@ -66,13 +66,18 @@ files:
|
|
66
66
|
- lib/aws-sdk-identitystore/plugins/endpoints.rb
|
67
67
|
- lib/aws-sdk-identitystore/resource.rb
|
68
68
|
- lib/aws-sdk-identitystore/types.rb
|
69
|
+
- sig/client.rbs
|
70
|
+
- sig/errors.rbs
|
71
|
+
- sig/resource.rbs
|
72
|
+
- sig/types.rbs
|
73
|
+
- sig/waiters.rbs
|
69
74
|
homepage: https://github.com/aws/aws-sdk-ruby
|
70
75
|
licenses:
|
71
76
|
- Apache-2.0
|
72
77
|
metadata:
|
73
78
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-identitystore
|
74
79
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-identitystore/CHANGELOG.md
|
75
|
-
post_install_message:
|
80
|
+
post_install_message:
|
76
81
|
rdoc_options: []
|
77
82
|
require_paths:
|
78
83
|
- lib
|
@@ -87,8 +92,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
87
92
|
- !ruby/object:Gem::Version
|
88
93
|
version: '0'
|
89
94
|
requirements: []
|
90
|
-
rubygems_version: 3.
|
91
|
-
signing_key:
|
95
|
+
rubygems_version: 3.4.10
|
96
|
+
signing_key:
|
92
97
|
specification_version: 4
|
93
98
|
summary: AWS SDK for Ruby - IdentityStore
|
94
99
|
test_files: []
|