aws-sdk-identitystore 1.59.0 → 1.60.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-identitystore/client.rb +189 -82
- data/lib/aws-sdk-identitystore/client_api.rb +68 -10
- data/lib/aws-sdk-identitystore/errors.rb +20 -0
- data/lib/aws-sdk-identitystore/types.rb +350 -78
- data/lib/aws-sdk-identitystore.rb +1 -1
- data/sig/client.rbs +31 -5
- data/sig/errors.rbs +4 -0
- data/sig/types.rbs +56 -9
- metadata +3 -3
data/sig/client.rbs
CHANGED
|
@@ -109,8 +109,8 @@ module Aws
|
|
|
109
109
|
|
|
110
110
|
interface _CreateUserResponseSuccess
|
|
111
111
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateUserResponse]
|
|
112
|
-
def user_id: () -> ::String
|
|
113
112
|
def identity_store_id: () -> ::String
|
|
113
|
+
def user_id: () -> ::String
|
|
114
114
|
end
|
|
115
115
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IdentityStore/Client.html#create_user-instance_method
|
|
116
116
|
def create_user: (
|
|
@@ -157,7 +157,17 @@ module Aws
|
|
|
157
157
|
?title: ::String,
|
|
158
158
|
?preferred_language: ::String,
|
|
159
159
|
?locale: ::String,
|
|
160
|
-
?timezone: ::String
|
|
160
|
+
?timezone: ::String,
|
|
161
|
+
?photos: Array[
|
|
162
|
+
{
|
|
163
|
+
value: ::String,
|
|
164
|
+
type: ::String?,
|
|
165
|
+
display: ::String?,
|
|
166
|
+
primary: bool?
|
|
167
|
+
},
|
|
168
|
+
],
|
|
169
|
+
?website: ::String,
|
|
170
|
+
?birthdate: ::String
|
|
161
171
|
) -> _CreateUserResponseSuccess
|
|
162
172
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateUserResponseSuccess
|
|
163
173
|
|
|
@@ -197,6 +207,10 @@ module Aws
|
|
|
197
207
|
def display_name: () -> ::String
|
|
198
208
|
def external_ids: () -> ::Array[Types::ExternalId]
|
|
199
209
|
def description: () -> ::String
|
|
210
|
+
def created_at: () -> ::Time
|
|
211
|
+
def updated_at: () -> ::Time
|
|
212
|
+
def created_by: () -> ::String
|
|
213
|
+
def updated_by: () -> ::String
|
|
200
214
|
def identity_store_id: () -> ::String
|
|
201
215
|
end
|
|
202
216
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IdentityStore/Client.html#describe_group-instance_method
|
|
@@ -212,6 +226,10 @@ module Aws
|
|
|
212
226
|
def membership_id: () -> ::String
|
|
213
227
|
def group_id: () -> ::String
|
|
214
228
|
def member_id: () -> Types::MemberId
|
|
229
|
+
def created_at: () -> ::Time
|
|
230
|
+
def updated_at: () -> ::Time
|
|
231
|
+
def created_by: () -> ::String
|
|
232
|
+
def updated_by: () -> ::String
|
|
215
233
|
end
|
|
216
234
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IdentityStore/Client.html#describe_group_membership-instance_method
|
|
217
235
|
def describe_group_membership: (
|
|
@@ -222,8 +240,9 @@ module Aws
|
|
|
222
240
|
|
|
223
241
|
interface _DescribeUserResponseSuccess
|
|
224
242
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeUserResponse]
|
|
225
|
-
def
|
|
243
|
+
def identity_store_id: () -> ::String
|
|
226
244
|
def user_id: () -> ::String
|
|
245
|
+
def user_name: () -> ::String
|
|
227
246
|
def external_ids: () -> ::Array[Types::ExternalId]
|
|
228
247
|
def name: () -> Types::Name
|
|
229
248
|
def display_name: () -> ::String
|
|
@@ -237,7 +256,14 @@ module Aws
|
|
|
237
256
|
def preferred_language: () -> ::String
|
|
238
257
|
def locale: () -> ::String
|
|
239
258
|
def timezone: () -> ::String
|
|
240
|
-
def
|
|
259
|
+
def user_status: () -> ("ENABLED" | "DISABLED")
|
|
260
|
+
def photos: () -> ::Array[Types::Photo]
|
|
261
|
+
def website: () -> ::String
|
|
262
|
+
def birthdate: () -> ::String
|
|
263
|
+
def created_at: () -> ::Time
|
|
264
|
+
def created_by: () -> ::String
|
|
265
|
+
def updated_at: () -> ::Time
|
|
266
|
+
def updated_by: () -> ::String
|
|
241
267
|
end
|
|
242
268
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IdentityStore/Client.html#describe_user-instance_method
|
|
243
269
|
def describe_user: (
|
|
@@ -284,8 +310,8 @@ module Aws
|
|
|
284
310
|
|
|
285
311
|
interface _GetUserIdResponseSuccess
|
|
286
312
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetUserIdResponse]
|
|
287
|
-
def user_id: () -> ::String
|
|
288
313
|
def identity_store_id: () -> ::String
|
|
314
|
+
def user_id: () -> ::String
|
|
289
315
|
end
|
|
290
316
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IdentityStore/Client.html#get_user_id-instance_method
|
|
291
317
|
def get_user_id: (
|
data/sig/errors.rbs
CHANGED
|
@@ -14,6 +14,7 @@ module Aws
|
|
|
14
14
|
class AccessDeniedException < ::Aws::Errors::ServiceError
|
|
15
15
|
def message: () -> ::String
|
|
16
16
|
def request_id: () -> ::String
|
|
17
|
+
def reason: () -> ::String
|
|
17
18
|
end
|
|
18
19
|
class ConflictException < ::Aws::Errors::ServiceError
|
|
19
20
|
def message: () -> ::String
|
|
@@ -28,6 +29,7 @@ module Aws
|
|
|
28
29
|
class ResourceNotFoundException < ::Aws::Errors::ServiceError
|
|
29
30
|
def resource_type: () -> ::String
|
|
30
31
|
def resource_id: () -> ::String
|
|
32
|
+
def reason: () -> ::String
|
|
31
33
|
def message: () -> ::String
|
|
32
34
|
def request_id: () -> ::String
|
|
33
35
|
end
|
|
@@ -39,10 +41,12 @@ module Aws
|
|
|
39
41
|
def message: () -> ::String
|
|
40
42
|
def request_id: () -> ::String
|
|
41
43
|
def retry_after_seconds: () -> ::String
|
|
44
|
+
def reason: () -> ::String
|
|
42
45
|
end
|
|
43
46
|
class ValidationException < ::Aws::Errors::ServiceError
|
|
44
47
|
def message: () -> ::String
|
|
45
48
|
def request_id: () -> ::String
|
|
49
|
+
def reason: () -> ::String
|
|
46
50
|
end
|
|
47
51
|
end
|
|
48
52
|
end
|
data/sig/types.rbs
CHANGED
|
@@ -11,6 +11,7 @@ module Aws::IdentityStore
|
|
|
11
11
|
class AccessDeniedException
|
|
12
12
|
attr_accessor message: ::String
|
|
13
13
|
attr_accessor request_id: ::String
|
|
14
|
+
attr_accessor reason: ("KMS_ACCESS_DENIED")
|
|
14
15
|
SENSITIVE: []
|
|
15
16
|
end
|
|
16
17
|
|
|
@@ -94,12 +95,15 @@ module Aws::IdentityStore
|
|
|
94
95
|
attr_accessor preferred_language: ::String
|
|
95
96
|
attr_accessor locale: ::String
|
|
96
97
|
attr_accessor timezone: ::String
|
|
97
|
-
|
|
98
|
+
attr_accessor photos: ::Array[Types::Photo]
|
|
99
|
+
attr_accessor website: ::String
|
|
100
|
+
attr_accessor birthdate: ::String
|
|
101
|
+
SENSITIVE: [:user_name, :display_name, :nick_name, :profile_url, :user_type, :title, :preferred_language, :locale, :timezone, :website, :birthdate]
|
|
98
102
|
end
|
|
99
103
|
|
|
100
104
|
class CreateUserResponse
|
|
101
|
-
attr_accessor user_id: ::String
|
|
102
105
|
attr_accessor identity_store_id: ::String
|
|
106
|
+
attr_accessor user_id: ::String
|
|
103
107
|
SENSITIVE: []
|
|
104
108
|
end
|
|
105
109
|
|
|
@@ -141,6 +145,10 @@ module Aws::IdentityStore
|
|
|
141
145
|
attr_accessor membership_id: ::String
|
|
142
146
|
attr_accessor group_id: ::String
|
|
143
147
|
attr_accessor member_id: Types::MemberId
|
|
148
|
+
attr_accessor created_at: ::Time
|
|
149
|
+
attr_accessor updated_at: ::Time
|
|
150
|
+
attr_accessor created_by: ::String
|
|
151
|
+
attr_accessor updated_by: ::String
|
|
144
152
|
SENSITIVE: []
|
|
145
153
|
end
|
|
146
154
|
|
|
@@ -155,6 +163,10 @@ module Aws::IdentityStore
|
|
|
155
163
|
attr_accessor display_name: ::String
|
|
156
164
|
attr_accessor external_ids: ::Array[Types::ExternalId]
|
|
157
165
|
attr_accessor description: ::String
|
|
166
|
+
attr_accessor created_at: ::Time
|
|
167
|
+
attr_accessor updated_at: ::Time
|
|
168
|
+
attr_accessor created_by: ::String
|
|
169
|
+
attr_accessor updated_by: ::String
|
|
158
170
|
attr_accessor identity_store_id: ::String
|
|
159
171
|
SENSITIVE: [:display_name, :description]
|
|
160
172
|
end
|
|
@@ -166,8 +178,9 @@ module Aws::IdentityStore
|
|
|
166
178
|
end
|
|
167
179
|
|
|
168
180
|
class DescribeUserResponse
|
|
169
|
-
attr_accessor
|
|
181
|
+
attr_accessor identity_store_id: ::String
|
|
170
182
|
attr_accessor user_id: ::String
|
|
183
|
+
attr_accessor user_name: ::String
|
|
171
184
|
attr_accessor external_ids: ::Array[Types::ExternalId]
|
|
172
185
|
attr_accessor name: Types::Name
|
|
173
186
|
attr_accessor display_name: ::String
|
|
@@ -181,8 +194,15 @@ module Aws::IdentityStore
|
|
|
181
194
|
attr_accessor preferred_language: ::String
|
|
182
195
|
attr_accessor locale: ::String
|
|
183
196
|
attr_accessor timezone: ::String
|
|
184
|
-
attr_accessor
|
|
185
|
-
|
|
197
|
+
attr_accessor user_status: ("ENABLED" | "DISABLED")
|
|
198
|
+
attr_accessor photos: ::Array[Types::Photo]
|
|
199
|
+
attr_accessor website: ::String
|
|
200
|
+
attr_accessor birthdate: ::String
|
|
201
|
+
attr_accessor created_at: ::Time
|
|
202
|
+
attr_accessor created_by: ::String
|
|
203
|
+
attr_accessor updated_at: ::Time
|
|
204
|
+
attr_accessor updated_by: ::String
|
|
205
|
+
SENSITIVE: [:user_name, :display_name, :nick_name, :profile_url, :user_type, :title, :preferred_language, :locale, :timezone, :website, :birthdate]
|
|
186
206
|
end
|
|
187
207
|
|
|
188
208
|
class Email
|
|
@@ -236,8 +256,8 @@ module Aws::IdentityStore
|
|
|
236
256
|
end
|
|
237
257
|
|
|
238
258
|
class GetUserIdResponse
|
|
239
|
-
attr_accessor user_id: ::String
|
|
240
259
|
attr_accessor identity_store_id: ::String
|
|
260
|
+
attr_accessor user_id: ::String
|
|
241
261
|
SENSITIVE: []
|
|
242
262
|
end
|
|
243
263
|
|
|
@@ -246,6 +266,10 @@ module Aws::IdentityStore
|
|
|
246
266
|
attr_accessor display_name: ::String
|
|
247
267
|
attr_accessor external_ids: ::Array[Types::ExternalId]
|
|
248
268
|
attr_accessor description: ::String
|
|
269
|
+
attr_accessor created_at: ::Time
|
|
270
|
+
attr_accessor updated_at: ::Time
|
|
271
|
+
attr_accessor created_by: ::String
|
|
272
|
+
attr_accessor updated_by: ::String
|
|
249
273
|
attr_accessor identity_store_id: ::String
|
|
250
274
|
SENSITIVE: [:display_name, :description]
|
|
251
275
|
end
|
|
@@ -255,6 +279,10 @@ module Aws::IdentityStore
|
|
|
255
279
|
attr_accessor membership_id: ::String
|
|
256
280
|
attr_accessor group_id: ::String
|
|
257
281
|
attr_accessor member_id: Types::MemberId
|
|
282
|
+
attr_accessor created_at: ::Time
|
|
283
|
+
attr_accessor updated_at: ::Time
|
|
284
|
+
attr_accessor created_by: ::String
|
|
285
|
+
attr_accessor updated_by: ::String
|
|
258
286
|
SENSITIVE: []
|
|
259
287
|
end
|
|
260
288
|
|
|
@@ -368,9 +396,18 @@ module Aws::IdentityStore
|
|
|
368
396
|
SENSITIVE: [:value, :type, :primary]
|
|
369
397
|
end
|
|
370
398
|
|
|
399
|
+
class Photo
|
|
400
|
+
attr_accessor value: ::String
|
|
401
|
+
attr_accessor type: ::String
|
|
402
|
+
attr_accessor display: ::String
|
|
403
|
+
attr_accessor primary: bool
|
|
404
|
+
SENSITIVE: [:value, :type, :display, :primary]
|
|
405
|
+
end
|
|
406
|
+
|
|
371
407
|
class ResourceNotFoundException
|
|
372
408
|
attr_accessor resource_type: ("GROUP" | "USER" | "IDENTITY_STORE" | "GROUP_MEMBERSHIP")
|
|
373
409
|
attr_accessor resource_id: ::String
|
|
410
|
+
attr_accessor reason: ("KMS_KEY_NOT_FOUND")
|
|
374
411
|
attr_accessor message: ::String
|
|
375
412
|
attr_accessor request_id: ::String
|
|
376
413
|
SENSITIVE: []
|
|
@@ -386,6 +423,7 @@ module Aws::IdentityStore
|
|
|
386
423
|
attr_accessor message: ::String
|
|
387
424
|
attr_accessor request_id: ::String
|
|
388
425
|
attr_accessor retry_after_seconds: ::Integer
|
|
426
|
+
attr_accessor reason: ("KMS_THROTTLING")
|
|
389
427
|
SENSITIVE: []
|
|
390
428
|
end
|
|
391
429
|
|
|
@@ -416,8 +454,9 @@ module Aws::IdentityStore
|
|
|
416
454
|
end
|
|
417
455
|
|
|
418
456
|
class User
|
|
419
|
-
attr_accessor
|
|
457
|
+
attr_accessor identity_store_id: ::String
|
|
420
458
|
attr_accessor user_id: ::String
|
|
459
|
+
attr_accessor user_name: ::String
|
|
421
460
|
attr_accessor external_ids: ::Array[Types::ExternalId]
|
|
422
461
|
attr_accessor name: Types::Name
|
|
423
462
|
attr_accessor display_name: ::String
|
|
@@ -431,13 +470,21 @@ module Aws::IdentityStore
|
|
|
431
470
|
attr_accessor preferred_language: ::String
|
|
432
471
|
attr_accessor locale: ::String
|
|
433
472
|
attr_accessor timezone: ::String
|
|
434
|
-
attr_accessor
|
|
435
|
-
|
|
473
|
+
attr_accessor user_status: ("ENABLED" | "DISABLED")
|
|
474
|
+
attr_accessor photos: ::Array[Types::Photo]
|
|
475
|
+
attr_accessor website: ::String
|
|
476
|
+
attr_accessor birthdate: ::String
|
|
477
|
+
attr_accessor created_at: ::Time
|
|
478
|
+
attr_accessor created_by: ::String
|
|
479
|
+
attr_accessor updated_at: ::Time
|
|
480
|
+
attr_accessor updated_by: ::String
|
|
481
|
+
SENSITIVE: [:user_name, :display_name, :nick_name, :profile_url, :user_type, :title, :preferred_language, :locale, :timezone, :website, :birthdate]
|
|
436
482
|
end
|
|
437
483
|
|
|
438
484
|
class ValidationException
|
|
439
485
|
attr_accessor message: ::String
|
|
440
486
|
attr_accessor request_id: ::String
|
|
487
|
+
attr_accessor reason: ("KMS_INVALID_ARN" | "KMS_INVALID_KEY_USAGE" | "KMS_INVALID_STATE" | "KMS_DISABLED")
|
|
441
488
|
SENSITIVE: []
|
|
442
489
|
end
|
|
443
490
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.60.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -35,14 +35,14 @@ dependencies:
|
|
|
35
35
|
requirements:
|
|
36
36
|
- - "~>"
|
|
37
37
|
- !ruby/object:Gem::Version
|
|
38
|
-
version: '1.
|
|
38
|
+
version: '1.5'
|
|
39
39
|
type: :runtime
|
|
40
40
|
prerelease: false
|
|
41
41
|
version_requirements: !ruby/object:Gem::Requirement
|
|
42
42
|
requirements:
|
|
43
43
|
- - "~>"
|
|
44
44
|
- !ruby/object:Gem::Version
|
|
45
|
-
version: '1.
|
|
45
|
+
version: '1.5'
|
|
46
46
|
description: Official AWS Ruby gem for AWS SSO Identity Store (IdentityStore). This
|
|
47
47
|
gem is part of the AWS SDK for Ruby.
|
|
48
48
|
email:
|