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
|
@@ -15,6 +15,7 @@ module Aws::IdentityStore
|
|
|
15
15
|
include Seahorse::Model
|
|
16
16
|
|
|
17
17
|
AccessDeniedException = Shapes::StructureShape.new(name: 'AccessDeniedException')
|
|
18
|
+
AccessDeniedExceptionReason = Shapes::StringShape.new(name: 'AccessDeniedExceptionReason')
|
|
18
19
|
Address = Shapes::StructureShape.new(name: 'Address')
|
|
19
20
|
Addresses = Shapes::ListShape.new(name: 'Addresses')
|
|
20
21
|
AlternateIdentifier = Shapes::UnionShape.new(name: 'AlternateIdentifier')
|
|
@@ -30,6 +31,7 @@ module Aws::IdentityStore
|
|
|
30
31
|
CreateGroupResponse = Shapes::StructureShape.new(name: 'CreateGroupResponse')
|
|
31
32
|
CreateUserRequest = Shapes::StructureShape.new(name: 'CreateUserRequest')
|
|
32
33
|
CreateUserResponse = Shapes::StructureShape.new(name: 'CreateUserResponse')
|
|
34
|
+
DateType = Shapes::TimestampShape.new(name: 'DateType')
|
|
33
35
|
DeleteGroupMembershipRequest = Shapes::StructureShape.new(name: 'DeleteGroupMembershipRequest')
|
|
34
36
|
DeleteGroupMembershipResponse = Shapes::StructureShape.new(name: 'DeleteGroupMembershipResponse')
|
|
35
37
|
DeleteGroupRequest = Shapes::StructureShape.new(name: 'DeleteGroupRequest')
|
|
@@ -83,15 +85,20 @@ module Aws::IdentityStore
|
|
|
83
85
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
|
84
86
|
PhoneNumber = Shapes::StructureShape.new(name: 'PhoneNumber')
|
|
85
87
|
PhoneNumbers = Shapes::ListShape.new(name: 'PhoneNumbers')
|
|
88
|
+
Photo = Shapes::StructureShape.new(name: 'Photo')
|
|
89
|
+
Photos = Shapes::ListShape.new(name: 'Photos')
|
|
86
90
|
RequestId = Shapes::StringShape.new(name: 'RequestId')
|
|
87
91
|
ResourceId = Shapes::StringShape.new(name: 'ResourceId')
|
|
88
92
|
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
|
93
|
+
ResourceNotFoundExceptionReason = Shapes::StringShape.new(name: 'ResourceNotFoundExceptionReason')
|
|
89
94
|
ResourceType = Shapes::StringShape.new(name: 'ResourceType')
|
|
90
95
|
RetryAfterSeconds = Shapes::IntegerShape.new(name: 'RetryAfterSeconds')
|
|
91
96
|
SensitiveBooleanType = Shapes::BooleanShape.new(name: 'SensitiveBooleanType')
|
|
92
97
|
SensitiveStringType = Shapes::StringShape.new(name: 'SensitiveStringType')
|
|
93
98
|
ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
|
|
99
|
+
StringType = Shapes::StringShape.new(name: 'StringType')
|
|
94
100
|
ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
|
|
101
|
+
ThrottlingExceptionReason = Shapes::StringShape.new(name: 'ThrottlingExceptionReason')
|
|
95
102
|
UniqueAttribute = Shapes::StructureShape.new(name: 'UniqueAttribute')
|
|
96
103
|
UpdateGroupRequest = Shapes::StructureShape.new(name: 'UpdateGroupRequest')
|
|
97
104
|
UpdateGroupResponse = Shapes::StructureShape.new(name: 'UpdateGroupResponse')
|
|
@@ -99,11 +106,14 @@ module Aws::IdentityStore
|
|
|
99
106
|
UpdateUserResponse = Shapes::StructureShape.new(name: 'UpdateUserResponse')
|
|
100
107
|
User = Shapes::StructureShape.new(name: 'User')
|
|
101
108
|
UserName = Shapes::StringShape.new(name: 'UserName')
|
|
109
|
+
UserStatus = Shapes::StringShape.new(name: 'UserStatus')
|
|
102
110
|
Users = Shapes::ListShape.new(name: 'Users')
|
|
103
111
|
ValidationException = Shapes::StructureShape.new(name: 'ValidationException')
|
|
112
|
+
ValidationExceptionReason = Shapes::StringShape.new(name: 'ValidationExceptionReason')
|
|
104
113
|
|
|
105
114
|
AccessDeniedException.add_member(:message, Shapes::ShapeRef.new(shape: ExceptionMessage, location_name: "Message"))
|
|
106
115
|
AccessDeniedException.add_member(:request_id, Shapes::ShapeRef.new(shape: RequestId, location_name: "RequestId"))
|
|
116
|
+
AccessDeniedException.add_member(:reason, Shapes::ShapeRef.new(shape: AccessDeniedExceptionReason, location_name: "Reason"))
|
|
107
117
|
AccessDeniedException.struct_class = Types::AccessDeniedException
|
|
108
118
|
|
|
109
119
|
Address.add_member(:street_address, Shapes::ShapeRef.new(shape: SensitiveStringType, location_name: "StreetAddress"))
|
|
@@ -169,10 +179,13 @@ module Aws::IdentityStore
|
|
|
169
179
|
CreateUserRequest.add_member(:preferred_language, Shapes::ShapeRef.new(shape: SensitiveStringType, location_name: "PreferredLanguage"))
|
|
170
180
|
CreateUserRequest.add_member(:locale, Shapes::ShapeRef.new(shape: SensitiveStringType, location_name: "Locale"))
|
|
171
181
|
CreateUserRequest.add_member(:timezone, Shapes::ShapeRef.new(shape: SensitiveStringType, location_name: "Timezone"))
|
|
182
|
+
CreateUserRequest.add_member(:photos, Shapes::ShapeRef.new(shape: Photos, location_name: "Photos"))
|
|
183
|
+
CreateUserRequest.add_member(:website, Shapes::ShapeRef.new(shape: SensitiveStringType, location_name: "Website"))
|
|
184
|
+
CreateUserRequest.add_member(:birthdate, Shapes::ShapeRef.new(shape: SensitiveStringType, location_name: "Birthdate"))
|
|
172
185
|
CreateUserRequest.struct_class = Types::CreateUserRequest
|
|
173
186
|
|
|
174
|
-
CreateUserResponse.add_member(:user_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "UserId"))
|
|
175
187
|
CreateUserResponse.add_member(:identity_store_id, Shapes::ShapeRef.new(shape: IdentityStoreId, required: true, location_name: "IdentityStoreId"))
|
|
188
|
+
CreateUserResponse.add_member(:user_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "UserId"))
|
|
176
189
|
CreateUserResponse.struct_class = Types::CreateUserResponse
|
|
177
190
|
|
|
178
191
|
DeleteGroupMembershipRequest.add_member(:identity_store_id, Shapes::ShapeRef.new(shape: IdentityStoreId, required: true, location_name: "IdentityStoreId"))
|
|
@@ -201,6 +214,10 @@ module Aws::IdentityStore
|
|
|
201
214
|
DescribeGroupMembershipResponse.add_member(:membership_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "MembershipId"))
|
|
202
215
|
DescribeGroupMembershipResponse.add_member(:group_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "GroupId"))
|
|
203
216
|
DescribeGroupMembershipResponse.add_member(:member_id, Shapes::ShapeRef.new(shape: MemberId, required: true, location_name: "MemberId"))
|
|
217
|
+
DescribeGroupMembershipResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: DateType, location_name: "CreatedAt"))
|
|
218
|
+
DescribeGroupMembershipResponse.add_member(:updated_at, Shapes::ShapeRef.new(shape: DateType, location_name: "UpdatedAt"))
|
|
219
|
+
DescribeGroupMembershipResponse.add_member(:created_by, Shapes::ShapeRef.new(shape: StringType, location_name: "CreatedBy"))
|
|
220
|
+
DescribeGroupMembershipResponse.add_member(:updated_by, Shapes::ShapeRef.new(shape: StringType, location_name: "UpdatedBy"))
|
|
204
221
|
DescribeGroupMembershipResponse.struct_class = Types::DescribeGroupMembershipResponse
|
|
205
222
|
|
|
206
223
|
DescribeGroupRequest.add_member(:identity_store_id, Shapes::ShapeRef.new(shape: IdentityStoreId, required: true, location_name: "IdentityStoreId"))
|
|
@@ -211,6 +228,10 @@ module Aws::IdentityStore
|
|
|
211
228
|
DescribeGroupResponse.add_member(:display_name, Shapes::ShapeRef.new(shape: GroupDisplayName, location_name: "DisplayName"))
|
|
212
229
|
DescribeGroupResponse.add_member(:external_ids, Shapes::ShapeRef.new(shape: ExternalIds, location_name: "ExternalIds"))
|
|
213
230
|
DescribeGroupResponse.add_member(:description, Shapes::ShapeRef.new(shape: SensitiveStringType, location_name: "Description"))
|
|
231
|
+
DescribeGroupResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: DateType, location_name: "CreatedAt"))
|
|
232
|
+
DescribeGroupResponse.add_member(:updated_at, Shapes::ShapeRef.new(shape: DateType, location_name: "UpdatedAt"))
|
|
233
|
+
DescribeGroupResponse.add_member(:created_by, Shapes::ShapeRef.new(shape: StringType, location_name: "CreatedBy"))
|
|
234
|
+
DescribeGroupResponse.add_member(:updated_by, Shapes::ShapeRef.new(shape: StringType, location_name: "UpdatedBy"))
|
|
214
235
|
DescribeGroupResponse.add_member(:identity_store_id, Shapes::ShapeRef.new(shape: IdentityStoreId, required: true, location_name: "IdentityStoreId"))
|
|
215
236
|
DescribeGroupResponse.struct_class = Types::DescribeGroupResponse
|
|
216
237
|
|
|
@@ -218,8 +239,9 @@ module Aws::IdentityStore
|
|
|
218
239
|
DescribeUserRequest.add_member(:user_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "UserId"))
|
|
219
240
|
DescribeUserRequest.struct_class = Types::DescribeUserRequest
|
|
220
241
|
|
|
221
|
-
DescribeUserResponse.add_member(:
|
|
242
|
+
DescribeUserResponse.add_member(:identity_store_id, Shapes::ShapeRef.new(shape: IdentityStoreId, required: true, location_name: "IdentityStoreId"))
|
|
222
243
|
DescribeUserResponse.add_member(:user_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "UserId"))
|
|
244
|
+
DescribeUserResponse.add_member(:user_name, Shapes::ShapeRef.new(shape: UserName, location_name: "UserName"))
|
|
223
245
|
DescribeUserResponse.add_member(:external_ids, Shapes::ShapeRef.new(shape: ExternalIds, location_name: "ExternalIds"))
|
|
224
246
|
DescribeUserResponse.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "Name"))
|
|
225
247
|
DescribeUserResponse.add_member(:display_name, Shapes::ShapeRef.new(shape: SensitiveStringType, location_name: "DisplayName"))
|
|
@@ -233,7 +255,14 @@ module Aws::IdentityStore
|
|
|
233
255
|
DescribeUserResponse.add_member(:preferred_language, Shapes::ShapeRef.new(shape: SensitiveStringType, location_name: "PreferredLanguage"))
|
|
234
256
|
DescribeUserResponse.add_member(:locale, Shapes::ShapeRef.new(shape: SensitiveStringType, location_name: "Locale"))
|
|
235
257
|
DescribeUserResponse.add_member(:timezone, Shapes::ShapeRef.new(shape: SensitiveStringType, location_name: "Timezone"))
|
|
236
|
-
DescribeUserResponse.add_member(:
|
|
258
|
+
DescribeUserResponse.add_member(:user_status, Shapes::ShapeRef.new(shape: UserStatus, location_name: "UserStatus"))
|
|
259
|
+
DescribeUserResponse.add_member(:photos, Shapes::ShapeRef.new(shape: Photos, location_name: "Photos"))
|
|
260
|
+
DescribeUserResponse.add_member(:website, Shapes::ShapeRef.new(shape: SensitiveStringType, location_name: "Website"))
|
|
261
|
+
DescribeUserResponse.add_member(:birthdate, Shapes::ShapeRef.new(shape: SensitiveStringType, location_name: "Birthdate"))
|
|
262
|
+
DescribeUserResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: DateType, location_name: "CreatedAt"))
|
|
263
|
+
DescribeUserResponse.add_member(:created_by, Shapes::ShapeRef.new(shape: StringType, location_name: "CreatedBy"))
|
|
264
|
+
DescribeUserResponse.add_member(:updated_at, Shapes::ShapeRef.new(shape: DateType, location_name: "UpdatedAt"))
|
|
265
|
+
DescribeUserResponse.add_member(:updated_by, Shapes::ShapeRef.new(shape: StringType, location_name: "UpdatedBy"))
|
|
237
266
|
DescribeUserResponse.struct_class = Types::DescribeUserResponse
|
|
238
267
|
|
|
239
268
|
Email.add_member(:value, Shapes::ShapeRef.new(shape: SensitiveStringType, location_name: "Value"))
|
|
@@ -276,14 +305,18 @@ module Aws::IdentityStore
|
|
|
276
305
|
GetUserIdRequest.add_member(:alternate_identifier, Shapes::ShapeRef.new(shape: AlternateIdentifier, required: true, location_name: "AlternateIdentifier"))
|
|
277
306
|
GetUserIdRequest.struct_class = Types::GetUserIdRequest
|
|
278
307
|
|
|
279
|
-
GetUserIdResponse.add_member(:user_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "UserId"))
|
|
280
308
|
GetUserIdResponse.add_member(:identity_store_id, Shapes::ShapeRef.new(shape: IdentityStoreId, required: true, location_name: "IdentityStoreId"))
|
|
309
|
+
GetUserIdResponse.add_member(:user_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "UserId"))
|
|
281
310
|
GetUserIdResponse.struct_class = Types::GetUserIdResponse
|
|
282
311
|
|
|
283
312
|
Group.add_member(:group_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "GroupId"))
|
|
284
313
|
Group.add_member(:display_name, Shapes::ShapeRef.new(shape: GroupDisplayName, location_name: "DisplayName"))
|
|
285
314
|
Group.add_member(:external_ids, Shapes::ShapeRef.new(shape: ExternalIds, location_name: "ExternalIds"))
|
|
286
315
|
Group.add_member(:description, Shapes::ShapeRef.new(shape: SensitiveStringType, location_name: "Description"))
|
|
316
|
+
Group.add_member(:created_at, Shapes::ShapeRef.new(shape: DateType, location_name: "CreatedAt"))
|
|
317
|
+
Group.add_member(:updated_at, Shapes::ShapeRef.new(shape: DateType, location_name: "UpdatedAt"))
|
|
318
|
+
Group.add_member(:created_by, Shapes::ShapeRef.new(shape: StringType, location_name: "CreatedBy"))
|
|
319
|
+
Group.add_member(:updated_by, Shapes::ShapeRef.new(shape: StringType, location_name: "UpdatedBy"))
|
|
287
320
|
Group.add_member(:identity_store_id, Shapes::ShapeRef.new(shape: IdentityStoreId, required: true, location_name: "IdentityStoreId"))
|
|
288
321
|
Group.struct_class = Types::Group
|
|
289
322
|
|
|
@@ -293,6 +326,10 @@ module Aws::IdentityStore
|
|
|
293
326
|
GroupMembership.add_member(:membership_id, Shapes::ShapeRef.new(shape: ResourceId, location_name: "MembershipId"))
|
|
294
327
|
GroupMembership.add_member(:group_id, Shapes::ShapeRef.new(shape: ResourceId, location_name: "GroupId"))
|
|
295
328
|
GroupMembership.add_member(:member_id, Shapes::ShapeRef.new(shape: MemberId, location_name: "MemberId"))
|
|
329
|
+
GroupMembership.add_member(:created_at, Shapes::ShapeRef.new(shape: DateType, location_name: "CreatedAt"))
|
|
330
|
+
GroupMembership.add_member(:updated_at, Shapes::ShapeRef.new(shape: DateType, location_name: "UpdatedAt"))
|
|
331
|
+
GroupMembership.add_member(:created_by, Shapes::ShapeRef.new(shape: StringType, location_name: "CreatedBy"))
|
|
332
|
+
GroupMembership.add_member(:updated_by, Shapes::ShapeRef.new(shape: StringType, location_name: "UpdatedBy"))
|
|
296
333
|
GroupMembership.struct_class = Types::GroupMembership
|
|
297
334
|
|
|
298
335
|
GroupMembershipExistenceResult.add_member(:group_id, Shapes::ShapeRef.new(shape: ResourceId, location_name: "GroupId"))
|
|
@@ -321,7 +358,7 @@ module Aws::IdentityStore
|
|
|
321
358
|
|
|
322
359
|
ListGroupMembershipsForMemberRequest.add_member(:identity_store_id, Shapes::ShapeRef.new(shape: IdentityStoreId, required: true, location_name: "IdentityStoreId"))
|
|
323
360
|
ListGroupMembershipsForMemberRequest.add_member(:member_id, Shapes::ShapeRef.new(shape: MemberId, required: true, location_name: "MemberId"))
|
|
324
|
-
ListGroupMembershipsForMemberRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
|
361
|
+
ListGroupMembershipsForMemberRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
|
325
362
|
ListGroupMembershipsForMemberRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
|
326
363
|
ListGroupMembershipsForMemberRequest.struct_class = Types::ListGroupMembershipsForMemberRequest
|
|
327
364
|
|
|
@@ -331,7 +368,7 @@ module Aws::IdentityStore
|
|
|
331
368
|
|
|
332
369
|
ListGroupMembershipsRequest.add_member(:identity_store_id, Shapes::ShapeRef.new(shape: IdentityStoreId, required: true, location_name: "IdentityStoreId"))
|
|
333
370
|
ListGroupMembershipsRequest.add_member(:group_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "GroupId"))
|
|
334
|
-
ListGroupMembershipsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
|
371
|
+
ListGroupMembershipsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
|
335
372
|
ListGroupMembershipsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
|
336
373
|
ListGroupMembershipsRequest.struct_class = Types::ListGroupMembershipsRequest
|
|
337
374
|
|
|
@@ -340,7 +377,7 @@ module Aws::IdentityStore
|
|
|
340
377
|
ListGroupMembershipsResponse.struct_class = Types::ListGroupMembershipsResponse
|
|
341
378
|
|
|
342
379
|
ListGroupsRequest.add_member(:identity_store_id, Shapes::ShapeRef.new(shape: IdentityStoreId, required: true, location_name: "IdentityStoreId"))
|
|
343
|
-
ListGroupsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
|
380
|
+
ListGroupsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
|
344
381
|
ListGroupsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
|
345
382
|
ListGroupsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: Filters, deprecated: true, location_name: "Filters", metadata: {"deprecatedMessage" => "Using filters with ListGroups API is deprecated, please use GetGroupId API instead."}))
|
|
346
383
|
ListGroupsRequest.struct_class = Types::ListGroupsRequest
|
|
@@ -350,7 +387,7 @@ module Aws::IdentityStore
|
|
|
350
387
|
ListGroupsResponse.struct_class = Types::ListGroupsResponse
|
|
351
388
|
|
|
352
389
|
ListUsersRequest.add_member(:identity_store_id, Shapes::ShapeRef.new(shape: IdentityStoreId, required: true, location_name: "IdentityStoreId"))
|
|
353
|
-
ListUsersRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
|
390
|
+
ListUsersRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box" => true}))
|
|
354
391
|
ListUsersRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
|
355
392
|
ListUsersRequest.add_member(:filters, Shapes::ShapeRef.new(shape: Filters, deprecated: true, location_name: "Filters", metadata: {"deprecatedMessage" => "Using filters with ListUsers API is deprecated, please use GetGroupId API instead."}))
|
|
356
393
|
ListUsersRequest.struct_class = Types::ListUsersRequest
|
|
@@ -380,8 +417,17 @@ module Aws::IdentityStore
|
|
|
380
417
|
|
|
381
418
|
PhoneNumbers.member = Shapes::ShapeRef.new(shape: PhoneNumber)
|
|
382
419
|
|
|
420
|
+
Photo.add_member(:value, Shapes::ShapeRef.new(shape: SensitiveStringType, required: true, location_name: "Value"))
|
|
421
|
+
Photo.add_member(:type, Shapes::ShapeRef.new(shape: SensitiveStringType, location_name: "Type"))
|
|
422
|
+
Photo.add_member(:display, Shapes::ShapeRef.new(shape: SensitiveStringType, location_name: "Display"))
|
|
423
|
+
Photo.add_member(:primary, Shapes::ShapeRef.new(shape: SensitiveBooleanType, location_name: "Primary"))
|
|
424
|
+
Photo.struct_class = Types::Photo
|
|
425
|
+
|
|
426
|
+
Photos.member = Shapes::ShapeRef.new(shape: Photo)
|
|
427
|
+
|
|
383
428
|
ResourceNotFoundException.add_member(:resource_type, Shapes::ShapeRef.new(shape: ResourceType, location_name: "ResourceType"))
|
|
384
429
|
ResourceNotFoundException.add_member(:resource_id, Shapes::ShapeRef.new(shape: ResourceId, location_name: "ResourceId"))
|
|
430
|
+
ResourceNotFoundException.add_member(:reason, Shapes::ShapeRef.new(shape: ResourceNotFoundExceptionReason, location_name: "Reason"))
|
|
385
431
|
ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: ExceptionMessage, location_name: "Message"))
|
|
386
432
|
ResourceNotFoundException.add_member(:request_id, Shapes::ShapeRef.new(shape: RequestId, location_name: "RequestId"))
|
|
387
433
|
ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
|
|
@@ -393,6 +439,7 @@ module Aws::IdentityStore
|
|
|
393
439
|
ThrottlingException.add_member(:message, Shapes::ShapeRef.new(shape: ExceptionMessage, location_name: "Message"))
|
|
394
440
|
ThrottlingException.add_member(:request_id, Shapes::ShapeRef.new(shape: RequestId, location_name: "RequestId"))
|
|
395
441
|
ThrottlingException.add_member(:retry_after_seconds, Shapes::ShapeRef.new(shape: RetryAfterSeconds, location_name: "RetryAfterSeconds"))
|
|
442
|
+
ThrottlingException.add_member(:reason, Shapes::ShapeRef.new(shape: ThrottlingExceptionReason, location_name: "Reason"))
|
|
396
443
|
ThrottlingException.struct_class = Types::ThrottlingException
|
|
397
444
|
|
|
398
445
|
UniqueAttribute.add_member(:attribute_path, Shapes::ShapeRef.new(shape: AttributePath, required: true, location_name: "AttributePath"))
|
|
@@ -413,8 +460,9 @@ module Aws::IdentityStore
|
|
|
413
460
|
|
|
414
461
|
UpdateUserResponse.struct_class = Types::UpdateUserResponse
|
|
415
462
|
|
|
416
|
-
User.add_member(:
|
|
463
|
+
User.add_member(:identity_store_id, Shapes::ShapeRef.new(shape: IdentityStoreId, required: true, location_name: "IdentityStoreId"))
|
|
417
464
|
User.add_member(:user_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "UserId"))
|
|
465
|
+
User.add_member(:user_name, Shapes::ShapeRef.new(shape: UserName, location_name: "UserName"))
|
|
418
466
|
User.add_member(:external_ids, Shapes::ShapeRef.new(shape: ExternalIds, location_name: "ExternalIds"))
|
|
419
467
|
User.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "Name"))
|
|
420
468
|
User.add_member(:display_name, Shapes::ShapeRef.new(shape: SensitiveStringType, location_name: "DisplayName"))
|
|
@@ -428,13 +476,21 @@ module Aws::IdentityStore
|
|
|
428
476
|
User.add_member(:preferred_language, Shapes::ShapeRef.new(shape: SensitiveStringType, location_name: "PreferredLanguage"))
|
|
429
477
|
User.add_member(:locale, Shapes::ShapeRef.new(shape: SensitiveStringType, location_name: "Locale"))
|
|
430
478
|
User.add_member(:timezone, Shapes::ShapeRef.new(shape: SensitiveStringType, location_name: "Timezone"))
|
|
431
|
-
User.add_member(:
|
|
479
|
+
User.add_member(:user_status, Shapes::ShapeRef.new(shape: UserStatus, location_name: "UserStatus"))
|
|
480
|
+
User.add_member(:photos, Shapes::ShapeRef.new(shape: Photos, location_name: "Photos"))
|
|
481
|
+
User.add_member(:website, Shapes::ShapeRef.new(shape: SensitiveStringType, location_name: "Website"))
|
|
482
|
+
User.add_member(:birthdate, Shapes::ShapeRef.new(shape: SensitiveStringType, location_name: "Birthdate"))
|
|
483
|
+
User.add_member(:created_at, Shapes::ShapeRef.new(shape: DateType, location_name: "CreatedAt"))
|
|
484
|
+
User.add_member(:created_by, Shapes::ShapeRef.new(shape: StringType, location_name: "CreatedBy"))
|
|
485
|
+
User.add_member(:updated_at, Shapes::ShapeRef.new(shape: DateType, location_name: "UpdatedAt"))
|
|
486
|
+
User.add_member(:updated_by, Shapes::ShapeRef.new(shape: StringType, location_name: "UpdatedBy"))
|
|
432
487
|
User.struct_class = Types::User
|
|
433
488
|
|
|
434
489
|
Users.member = Shapes::ShapeRef.new(shape: User)
|
|
435
490
|
|
|
436
491
|
ValidationException.add_member(:message, Shapes::ShapeRef.new(shape: ExceptionMessage, location_name: "Message"))
|
|
437
492
|
ValidationException.add_member(:request_id, Shapes::ShapeRef.new(shape: RequestId, location_name: "RequestId"))
|
|
493
|
+
ValidationException.add_member(:reason, Shapes::ShapeRef.new(shape: ValidationExceptionReason, location_name: "Reason"))
|
|
438
494
|
ValidationException.struct_class = Types::ValidationException
|
|
439
495
|
|
|
440
496
|
|
|
@@ -445,9 +501,11 @@ module Aws::IdentityStore
|
|
|
445
501
|
|
|
446
502
|
api.metadata = {
|
|
447
503
|
"apiVersion" => "2020-06-15",
|
|
504
|
+
"auth" => ["aws.auth#sigv4"],
|
|
448
505
|
"endpointPrefix" => "identitystore",
|
|
449
506
|
"jsonVersion" => "1.1",
|
|
450
507
|
"protocol" => "json",
|
|
508
|
+
"protocols" => ["json"],
|
|
451
509
|
"serviceAbbreviation" => "IdentityStore",
|
|
452
510
|
"serviceFullName" => "AWS SSO Identity Store",
|
|
453
511
|
"serviceId" => "identitystore",
|
|
@@ -59,6 +59,11 @@ module Aws::IdentityStore
|
|
|
59
59
|
def request_id
|
|
60
60
|
@data[:request_id]
|
|
61
61
|
end
|
|
62
|
+
|
|
63
|
+
# @return [String]
|
|
64
|
+
def reason
|
|
65
|
+
@data[:reason]
|
|
66
|
+
end
|
|
62
67
|
end
|
|
63
68
|
|
|
64
69
|
class ConflictException < ServiceError
|
|
@@ -134,6 +139,11 @@ module Aws::IdentityStore
|
|
|
134
139
|
@data[:resource_id]
|
|
135
140
|
end
|
|
136
141
|
|
|
142
|
+
# @return [String]
|
|
143
|
+
def reason
|
|
144
|
+
@data[:reason]
|
|
145
|
+
end
|
|
146
|
+
|
|
137
147
|
# @return [String]
|
|
138
148
|
def message
|
|
139
149
|
@message || @data[:message]
|
|
@@ -189,6 +199,11 @@ module Aws::IdentityStore
|
|
|
189
199
|
@data[:retry_after_seconds]
|
|
190
200
|
end
|
|
191
201
|
|
|
202
|
+
# @return [String]
|
|
203
|
+
def reason
|
|
204
|
+
@data[:reason]
|
|
205
|
+
end
|
|
206
|
+
|
|
192
207
|
def retryable?
|
|
193
208
|
true
|
|
194
209
|
end
|
|
@@ -216,6 +231,11 @@ module Aws::IdentityStore
|
|
|
216
231
|
def request_id
|
|
217
232
|
@data[:request_id]
|
|
218
233
|
end
|
|
234
|
+
|
|
235
|
+
# @return [String]
|
|
236
|
+
def reason
|
|
237
|
+
@data[:reason]
|
|
238
|
+
end
|
|
219
239
|
end
|
|
220
240
|
|
|
221
241
|
end
|