@aws-sdk/client-identitystore 3.160.0 → 3.163.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.
Files changed (99) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/README.md +9 -18
  3. package/dist-cjs/Identitystore.js +225 -0
  4. package/dist-cjs/commands/CreateGroupCommand.js +36 -0
  5. package/dist-cjs/commands/CreateGroupMembershipCommand.js +36 -0
  6. package/dist-cjs/commands/CreateUserCommand.js +36 -0
  7. package/dist-cjs/commands/DeleteGroupCommand.js +36 -0
  8. package/dist-cjs/commands/DeleteGroupMembershipCommand.js +36 -0
  9. package/dist-cjs/commands/DeleteUserCommand.js +36 -0
  10. package/dist-cjs/commands/DescribeGroupMembershipCommand.js +36 -0
  11. package/dist-cjs/commands/GetGroupIdCommand.js +36 -0
  12. package/dist-cjs/commands/GetGroupMembershipIdCommand.js +36 -0
  13. package/dist-cjs/commands/GetUserIdCommand.js +36 -0
  14. package/dist-cjs/commands/IsMemberInGroupsCommand.js +36 -0
  15. package/dist-cjs/commands/ListGroupMembershipsCommand.js +36 -0
  16. package/dist-cjs/commands/ListGroupMembershipsForMemberCommand.js +36 -0
  17. package/dist-cjs/commands/UpdateGroupCommand.js +36 -0
  18. package/dist-cjs/commands/UpdateUserCommand.js +36 -0
  19. package/dist-cjs/commands/index.js +15 -0
  20. package/dist-cjs/endpoints.js +1 -0
  21. package/dist-cjs/models/models_0.js +360 -35
  22. package/dist-cjs/pagination/ListGroupMembershipsForMemberPaginator.js +36 -0
  23. package/dist-cjs/pagination/ListGroupMembershipsPaginator.js +36 -0
  24. package/dist-cjs/pagination/index.js +2 -0
  25. package/dist-cjs/protocols/Aws_json1_1.js +1475 -93
  26. package/dist-es/Identitystore.js +225 -0
  27. package/dist-es/commands/CreateGroupCommand.js +39 -0
  28. package/dist-es/commands/CreateGroupMembershipCommand.js +39 -0
  29. package/dist-es/commands/CreateUserCommand.js +39 -0
  30. package/dist-es/commands/DeleteGroupCommand.js +39 -0
  31. package/dist-es/commands/DeleteGroupMembershipCommand.js +39 -0
  32. package/dist-es/commands/DeleteUserCommand.js +39 -0
  33. package/dist-es/commands/DescribeGroupMembershipCommand.js +39 -0
  34. package/dist-es/commands/GetGroupIdCommand.js +39 -0
  35. package/dist-es/commands/GetGroupMembershipIdCommand.js +39 -0
  36. package/dist-es/commands/GetUserIdCommand.js +39 -0
  37. package/dist-es/commands/IsMemberInGroupsCommand.js +39 -0
  38. package/dist-es/commands/ListGroupMembershipsCommand.js +39 -0
  39. package/dist-es/commands/ListGroupMembershipsForMemberCommand.js +39 -0
  40. package/dist-es/commands/UpdateGroupCommand.js +39 -0
  41. package/dist-es/commands/UpdateUserCommand.js +39 -0
  42. package/dist-es/commands/index.js +15 -0
  43. package/dist-es/endpoints.js +1 -0
  44. package/dist-es/models/models_0.js +156 -34
  45. package/dist-es/pagination/ListGroupMembershipsForMemberPaginator.js +75 -0
  46. package/dist-es/pagination/ListGroupMembershipsPaginator.js +75 -0
  47. package/dist-es/pagination/index.js +2 -0
  48. package/dist-es/protocols/Aws_json1_1.js +1675 -50
  49. package/dist-types/Identitystore.d.ts +117 -23
  50. package/dist-types/IdentitystoreClient.d.ts +19 -13
  51. package/dist-types/commands/CreateGroupCommand.d.ts +35 -0
  52. package/dist-types/commands/CreateGroupMembershipCommand.d.ts +35 -0
  53. package/dist-types/commands/CreateUserCommand.d.ts +35 -0
  54. package/dist-types/commands/DeleteGroupCommand.d.ts +35 -0
  55. package/dist-types/commands/DeleteGroupMembershipCommand.d.ts +35 -0
  56. package/dist-types/commands/DeleteUserCommand.d.ts +35 -0
  57. package/dist-types/commands/DescribeGroupCommand.d.ts +1 -2
  58. package/dist-types/commands/DescribeGroupMembershipCommand.d.ts +35 -0
  59. package/dist-types/commands/DescribeUserCommand.d.ts +1 -2
  60. package/dist-types/commands/GetGroupIdCommand.d.ts +35 -0
  61. package/dist-types/commands/GetGroupMembershipIdCommand.d.ts +35 -0
  62. package/dist-types/commands/GetUserIdCommand.d.ts +35 -0
  63. package/dist-types/commands/IsMemberInGroupsCommand.d.ts +35 -0
  64. package/dist-types/commands/ListGroupMembershipsCommand.d.ts +35 -0
  65. package/dist-types/commands/ListGroupMembershipsForMemberCommand.d.ts +35 -0
  66. package/dist-types/commands/ListGroupsCommand.d.ts +4 -4
  67. package/dist-types/commands/ListUsersCommand.d.ts +4 -4
  68. package/dist-types/commands/UpdateGroupCommand.d.ts +35 -0
  69. package/dist-types/commands/UpdateUserCommand.d.ts +35 -0
  70. package/dist-types/commands/index.d.ts +15 -0
  71. package/dist-types/models/models_0.d.ts +1097 -127
  72. package/dist-types/pagination/ListGroupMembershipsForMemberPaginator.d.ts +4 -0
  73. package/dist-types/pagination/ListGroupMembershipsPaginator.d.ts +4 -0
  74. package/dist-types/pagination/index.d.ts +2 -0
  75. package/dist-types/protocols/Aws_json1_1.d.ts +45 -0
  76. package/dist-types/ts3.4/Identitystore.d.ts +75 -0
  77. package/dist-types/ts3.4/IdentitystoreClient.d.ts +17 -2
  78. package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +17 -0
  79. package/dist-types/ts3.4/commands/CreateGroupMembershipCommand.d.ts +17 -0
  80. package/dist-types/ts3.4/commands/CreateUserCommand.d.ts +17 -0
  81. package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +17 -0
  82. package/dist-types/ts3.4/commands/DeleteGroupMembershipCommand.d.ts +17 -0
  83. package/dist-types/ts3.4/commands/DeleteUserCommand.d.ts +17 -0
  84. package/dist-types/ts3.4/commands/DescribeGroupMembershipCommand.d.ts +17 -0
  85. package/dist-types/ts3.4/commands/GetGroupIdCommand.d.ts +17 -0
  86. package/dist-types/ts3.4/commands/GetGroupMembershipIdCommand.d.ts +17 -0
  87. package/dist-types/ts3.4/commands/GetUserIdCommand.d.ts +17 -0
  88. package/dist-types/ts3.4/commands/IsMemberInGroupsCommand.d.ts +17 -0
  89. package/dist-types/ts3.4/commands/ListGroupMembershipsCommand.d.ts +17 -0
  90. package/dist-types/ts3.4/commands/ListGroupMembershipsForMemberCommand.d.ts +17 -0
  91. package/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +17 -0
  92. package/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +17 -0
  93. package/dist-types/ts3.4/commands/index.d.ts +15 -0
  94. package/dist-types/ts3.4/models/models_0.d.ts +565 -29
  95. package/dist-types/ts3.4/pagination/ListGroupMembershipsForMemberPaginator.d.ts +4 -0
  96. package/dist-types/ts3.4/pagination/ListGroupMembershipsPaginator.d.ts +4 -0
  97. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  98. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +45 -0
  99. package/package.json +26 -26
@@ -1,4 +1,5 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { DocumentType as __DocumentType } from "@aws-sdk/types";
2
3
  import { IdentitystoreServiceException as __BaseException } from "./IdentitystoreServiceException";
3
4
 
4
5
  export declare class AccessDeniedException extends __BaseException {
@@ -10,30 +11,91 @@ export declare class AccessDeniedException extends __BaseException {
10
11
 
11
12
  constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
12
13
  }
13
- export interface DescribeGroupRequest {
14
+
15
+ export interface Address {
14
16
 
15
- IdentityStoreId: string | undefined;
17
+ StreetAddress?: string;
16
18
 
17
- GroupId: string | undefined;
19
+ Locality?: string;
20
+
21
+ Region?: string;
22
+
23
+ PostalCode?: string;
24
+
25
+ Country?: string;
26
+
27
+ Formatted?: string;
28
+
29
+ Type?: string;
30
+
31
+ Primary?: boolean;
18
32
  }
19
- export interface DescribeGroupResponse {
33
+
34
+ export interface ExternalId {
20
35
 
21
- GroupId: string | undefined;
36
+ Issuer: string | undefined;
22
37
 
23
- DisplayName: string | undefined;
38
+ Id: string | undefined;
24
39
  }
25
40
 
26
- export declare class InternalServerException extends __BaseException {
27
- readonly name: "InternalServerException";
28
- readonly $fault: "server";
29
- Message?: string;
41
+ export interface UniqueAttribute {
30
42
 
31
- RequestId?: string;
43
+ AttributePath: string | undefined;
32
44
 
33
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
45
+ AttributeValue: __DocumentType | undefined;
46
+ }
47
+
48
+ export declare type AlternateIdentifier = AlternateIdentifier.ExternalIdMember | AlternateIdentifier.UniqueAttributeMember | AlternateIdentifier.$UnknownMember;
49
+ export declare namespace AlternateIdentifier {
50
+
51
+ interface ExternalIdMember {
52
+ ExternalId: ExternalId;
53
+ UniqueAttribute?: never;
54
+ $unknown?: never;
55
+ }
56
+
57
+ interface UniqueAttributeMember {
58
+ ExternalId?: never;
59
+ UniqueAttribute: UniqueAttribute;
60
+ $unknown?: never;
61
+ }
62
+ interface $UnknownMember {
63
+ ExternalId?: never;
64
+ UniqueAttribute?: never;
65
+ $unknown: [
66
+ string,
67
+ any
68
+ ];
69
+ }
70
+ interface Visitor<T> {
71
+ ExternalId: (value: ExternalId) => T;
72
+ UniqueAttribute: (value: UniqueAttribute) => T;
73
+ _: (name: string, value: any) => T;
74
+ }
75
+ const visit: <T>(value: AlternateIdentifier, visitor: Visitor<T>) => T;
76
+ }
77
+
78
+ export interface AttributeOperation {
79
+
80
+ AttributePath: string | undefined;
81
+
82
+ AttributeValue?: __DocumentType;
83
+ }
84
+ export interface GetGroupIdRequest {
85
+
86
+ IdentityStoreId: string | undefined;
87
+
88
+ AlternateIdentifier: AlternateIdentifier | undefined;
89
+ }
90
+ export interface GetGroupIdResponse {
91
+
92
+ GroupId: string | undefined;
93
+
94
+ IdentityStoreId: string | undefined;
34
95
  }
35
96
  export declare enum ResourceType {
36
97
  GROUP = "GROUP",
98
+ GROUP_MEMBERSHIP = "GROUP_MEMBERSHIP",
37
99
  IDENTITY_STORE = "IDENTITY_STORE",
38
100
  USER = "USER"
39
101
  }
@@ -52,36 +114,192 @@ export declare class ResourceNotFoundException extends __BaseException {
52
114
  constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
53
115
  }
54
116
 
55
- export declare class ThrottlingException extends __BaseException {
56
- readonly name: "ThrottlingException";
117
+ export declare class ValidationException extends __BaseException {
118
+ readonly name: "ValidationException";
57
119
  readonly $fault: "client";
58
120
  Message?: string;
59
121
 
60
122
  RequestId?: string;
61
123
 
62
- constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
124
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
63
125
  }
64
126
 
65
- export declare class ValidationException extends __BaseException {
66
- readonly name: "ValidationException";
127
+ export declare type MemberId = MemberId.UserIdMember | MemberId.$UnknownMember;
128
+ export declare namespace MemberId {
129
+
130
+ interface UserIdMember {
131
+ UserId: string;
132
+ $unknown?: never;
133
+ }
134
+ interface $UnknownMember {
135
+ UserId?: never;
136
+ $unknown: [
137
+ string,
138
+ any
139
+ ];
140
+ }
141
+ interface Visitor<T> {
142
+ UserId: (value: string) => T;
143
+ _: (name: string, value: any) => T;
144
+ }
145
+ const visit: <T>(value: MemberId, visitor: Visitor<T>) => T;
146
+ }
147
+ export interface GetGroupMembershipIdRequest {
148
+
149
+ IdentityStoreId: string | undefined;
150
+
151
+ GroupId: string | undefined;
152
+
153
+ MemberId: MemberId | undefined;
154
+ }
155
+ export interface GetGroupMembershipIdResponse {
156
+
157
+ MembershipId: string | undefined;
158
+
159
+ IdentityStoreId: string | undefined;
160
+ }
161
+ export interface GetUserIdRequest {
162
+
163
+ IdentityStoreId: string | undefined;
164
+
165
+ AlternateIdentifier: AlternateIdentifier | undefined;
166
+ }
167
+ export interface GetUserIdResponse {
168
+
169
+ UserId: string | undefined;
170
+
171
+ IdentityStoreId: string | undefined;
172
+ }
173
+ export declare enum ConflictExceptionReason {
174
+ CONCURRENT_MODIFICATION = "CONCURRENT_MODIFICATION",
175
+ UNIQUENESS_CONSTRAINT_VIOLATION = "UNIQUENESS_CONSTRAINT_VIOLATION"
176
+ }
177
+
178
+ export declare class ConflictException extends __BaseException {
179
+ readonly name: "ConflictException";
67
180
  readonly $fault: "client";
68
181
  Message?: string;
69
182
 
70
183
  RequestId?: string;
71
184
 
72
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
185
+ Reason?: ConflictExceptionReason | string;
186
+
187
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
73
188
  }
74
- export interface DescribeUserRequest {
189
+ export interface CreateGroupMembershipRequest {
75
190
 
76
191
  IdentityStoreId: string | undefined;
77
192
 
78
- UserId: string | undefined;
193
+ GroupId: string | undefined;
194
+
195
+ MemberId: MemberId | undefined;
79
196
  }
80
- export interface DescribeUserResponse {
197
+ export interface CreateGroupMembershipResponse {
81
198
 
82
- UserName: string | undefined;
199
+ MembershipId: string | undefined;
83
200
 
84
- UserId: string | undefined;
201
+ IdentityStoreId: string | undefined;
202
+ }
203
+
204
+ export declare class ServiceQuotaExceededException extends __BaseException {
205
+ readonly name: "ServiceQuotaExceededException";
206
+ readonly $fault: "client";
207
+ Message?: string;
208
+
209
+ RequestId?: string;
210
+
211
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
212
+ }
213
+ export interface DeleteGroupMembershipRequest {
214
+
215
+ IdentityStoreId: string | undefined;
216
+
217
+ MembershipId: string | undefined;
218
+ }
219
+ export interface DeleteGroupMembershipResponse {
220
+ }
221
+ export interface DescribeGroupMembershipRequest {
222
+
223
+ IdentityStoreId: string | undefined;
224
+
225
+ MembershipId: string | undefined;
226
+ }
227
+ export interface DescribeGroupMembershipResponse {
228
+
229
+ IdentityStoreId: string | undefined;
230
+
231
+ MembershipId: string | undefined;
232
+
233
+ GroupId: string | undefined;
234
+
235
+ MemberId: MemberId | undefined;
236
+ }
237
+ export interface ListGroupMembershipsRequest {
238
+
239
+ IdentityStoreId: string | undefined;
240
+
241
+ GroupId: string | undefined;
242
+
243
+ MaxResults?: number;
244
+
245
+ NextToken?: string;
246
+ }
247
+
248
+ export interface GroupMembership {
249
+
250
+ IdentityStoreId: string | undefined;
251
+
252
+ MembershipId?: string;
253
+
254
+ GroupId?: string;
255
+
256
+ MemberId?: MemberId;
257
+ }
258
+ export interface ListGroupMembershipsResponse {
259
+
260
+ GroupMemberships: GroupMembership[] | undefined;
261
+
262
+ NextToken?: string;
263
+ }
264
+ export interface CreateGroupRequest {
265
+
266
+ IdentityStoreId: string | undefined;
267
+
268
+ DisplayName?: string;
269
+
270
+ Description?: string;
271
+ }
272
+ export interface CreateGroupResponse {
273
+
274
+ GroupId: string | undefined;
275
+
276
+ IdentityStoreId: string | undefined;
277
+ }
278
+ export interface DeleteGroupRequest {
279
+
280
+ IdentityStoreId: string | undefined;
281
+
282
+ GroupId: string | undefined;
283
+ }
284
+ export interface DeleteGroupResponse {
285
+ }
286
+ export interface DescribeGroupRequest {
287
+
288
+ IdentityStoreId: string | undefined;
289
+
290
+ GroupId: string | undefined;
291
+ }
292
+ export interface DescribeGroupResponse {
293
+
294
+ GroupId: string | undefined;
295
+
296
+ DisplayName?: string;
297
+
298
+ ExternalIds?: ExternalId[];
299
+
300
+ Description?: string;
301
+
302
+ IdentityStoreId: string | undefined;
85
303
  }
86
304
 
87
305
  export interface Filter {
@@ -105,7 +323,13 @@ export interface Group {
105
323
 
106
324
  GroupId: string | undefined;
107
325
 
108
- DisplayName: string | undefined;
326
+ DisplayName?: string;
327
+
328
+ ExternalIds?: ExternalId[];
329
+
330
+ Description?: string;
331
+
332
+ IdentityStoreId: string | undefined;
109
333
  }
110
334
  export interface ListGroupsResponse {
111
335
 
@@ -113,6 +337,198 @@ export interface ListGroupsResponse {
113
337
 
114
338
  NextToken?: string;
115
339
  }
340
+ export interface UpdateGroupRequest {
341
+
342
+ IdentityStoreId: string | undefined;
343
+
344
+ GroupId: string | undefined;
345
+
346
+ Operations: AttributeOperation[] | undefined;
347
+ }
348
+ export interface UpdateGroupResponse {
349
+ }
350
+
351
+ export declare class InternalServerException extends __BaseException {
352
+ readonly name: "InternalServerException";
353
+ readonly $fault: "server";
354
+ $retryable: {};
355
+ Message?: string;
356
+
357
+ RequestId?: string;
358
+
359
+ RetryAfterSeconds?: number;
360
+
361
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
362
+ }
363
+ export interface IsMemberInGroupsRequest {
364
+
365
+ IdentityStoreId: string | undefined;
366
+
367
+ MemberId: MemberId | undefined;
368
+
369
+ GroupIds: string[] | undefined;
370
+ }
371
+
372
+ export interface GroupMembershipExistenceResult {
373
+
374
+ GroupId?: string;
375
+
376
+ MemberId?: MemberId;
377
+
378
+ MembershipExists?: boolean;
379
+ }
380
+ export interface IsMemberInGroupsResponse {
381
+
382
+ Results: GroupMembershipExistenceResult[] | undefined;
383
+ }
384
+ export interface ListGroupMembershipsForMemberRequest {
385
+
386
+ IdentityStoreId: string | undefined;
387
+
388
+ MemberId: MemberId | undefined;
389
+
390
+ MaxResults?: number;
391
+
392
+ NextToken?: string;
393
+ }
394
+ export interface ListGroupMembershipsForMemberResponse {
395
+
396
+ GroupMemberships: GroupMembership[] | undefined;
397
+
398
+ NextToken?: string;
399
+ }
400
+
401
+ export declare class ThrottlingException extends __BaseException {
402
+ readonly name: "ThrottlingException";
403
+ readonly $fault: "client";
404
+ $retryable: {
405
+ throttling: boolean;
406
+ };
407
+ Message?: string;
408
+
409
+ RequestId?: string;
410
+
411
+ RetryAfterSeconds?: number;
412
+
413
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
414
+ }
415
+
416
+ export interface Email {
417
+
418
+ Value?: string;
419
+
420
+ Type?: string;
421
+
422
+ Primary?: boolean;
423
+ }
424
+
425
+ export interface Name {
426
+
427
+ Formatted?: string;
428
+
429
+ FamilyName?: string;
430
+
431
+ GivenName?: string;
432
+
433
+ MiddleName?: string;
434
+
435
+ HonorificPrefix?: string;
436
+
437
+ HonorificSuffix?: string;
438
+ }
439
+
440
+ export interface PhoneNumber {
441
+
442
+ Value?: string;
443
+
444
+ Type?: string;
445
+
446
+ Primary?: boolean;
447
+ }
448
+ export interface CreateUserRequest {
449
+
450
+ IdentityStoreId: string | undefined;
451
+
452
+ UserName?: string;
453
+
454
+ Name?: Name;
455
+
456
+ DisplayName?: string;
457
+
458
+ NickName?: string;
459
+
460
+ ProfileUrl?: string;
461
+
462
+ Emails?: Email[];
463
+
464
+ Addresses?: Address[];
465
+
466
+ PhoneNumbers?: PhoneNumber[];
467
+
468
+ UserType?: string;
469
+
470
+ Title?: string;
471
+
472
+ PreferredLanguage?: string;
473
+
474
+ Locale?: string;
475
+
476
+ Timezone?: string;
477
+ }
478
+ export interface CreateUserResponse {
479
+
480
+ UserId: string | undefined;
481
+
482
+ IdentityStoreId: string | undefined;
483
+ }
484
+ export interface DeleteUserRequest {
485
+
486
+ IdentityStoreId: string | undefined;
487
+
488
+ UserId: string | undefined;
489
+ }
490
+ export interface DeleteUserResponse {
491
+ }
492
+ export interface DescribeUserRequest {
493
+
494
+ IdentityStoreId: string | undefined;
495
+
496
+ UserId: string | undefined;
497
+ }
498
+ export interface DescribeUserResponse {
499
+
500
+ UserName?: string;
501
+
502
+ UserId: string | undefined;
503
+
504
+ ExternalIds?: ExternalId[];
505
+
506
+ Name?: Name;
507
+
508
+ DisplayName?: string;
509
+
510
+ NickName?: string;
511
+
512
+ ProfileUrl?: string;
513
+
514
+ Emails?: Email[];
515
+
516
+ Addresses?: Address[];
517
+
518
+ PhoneNumbers?: PhoneNumber[];
519
+
520
+ UserType?: string;
521
+
522
+ Title?: string;
523
+
524
+ PreferredLanguage?: string;
525
+
526
+ Locale?: string;
527
+
528
+ Timezone?: string;
529
+
530
+ IdentityStoreId: string | undefined;
531
+ }
116
532
  export interface ListUsersRequest {
117
533
 
118
534
  IdentityStoreId: string | undefined;
@@ -126,9 +542,37 @@ export interface ListUsersRequest {
126
542
 
127
543
  export interface User {
128
544
 
129
- UserName: string | undefined;
545
+ UserName?: string;
130
546
 
131
547
  UserId: string | undefined;
548
+
549
+ ExternalIds?: ExternalId[];
550
+
551
+ Name?: Name;
552
+
553
+ DisplayName?: string;
554
+
555
+ NickName?: string;
556
+
557
+ ProfileUrl?: string;
558
+
559
+ Emails?: Email[];
560
+
561
+ Addresses?: Address[];
562
+
563
+ PhoneNumbers?: PhoneNumber[];
564
+
565
+ UserType?: string;
566
+
567
+ Title?: string;
568
+
569
+ PreferredLanguage?: string;
570
+
571
+ Locale?: string;
572
+
573
+ Timezone?: string;
574
+
575
+ IdentityStoreId: string | undefined;
132
576
  }
133
577
  export interface ListUsersResponse {
134
578
 
@@ -136,14 +580,70 @@ export interface ListUsersResponse {
136
580
 
137
581
  NextToken?: string;
138
582
  }
583
+ export interface UpdateUserRequest {
584
+
585
+ IdentityStoreId: string | undefined;
586
+
587
+ UserId: string | undefined;
588
+
589
+ Operations: AttributeOperation[] | undefined;
590
+ }
591
+ export interface UpdateUserResponse {
592
+ }
139
593
 
140
- export declare const DescribeGroupRequestFilterSensitiveLog: (obj: DescribeGroupRequest) => any;
594
+ export declare const AddressFilterSensitiveLog: (obj: Address) => any;
141
595
 
142
- export declare const DescribeGroupResponseFilterSensitiveLog: (obj: DescribeGroupResponse) => any;
596
+ export declare const ExternalIdFilterSensitiveLog: (obj: ExternalId) => any;
143
597
 
144
- export declare const DescribeUserRequestFilterSensitiveLog: (obj: DescribeUserRequest) => any;
598
+ export declare const UniqueAttributeFilterSensitiveLog: (obj: UniqueAttribute) => any;
145
599
 
146
- export declare const DescribeUserResponseFilterSensitiveLog: (obj: DescribeUserResponse) => any;
600
+ export declare const AlternateIdentifierFilterSensitiveLog: (obj: AlternateIdentifier) => any;
601
+
602
+ export declare const AttributeOperationFilterSensitiveLog: (obj: AttributeOperation) => any;
603
+
604
+ export declare const GetGroupIdRequestFilterSensitiveLog: (obj: GetGroupIdRequest) => any;
605
+
606
+ export declare const GetGroupIdResponseFilterSensitiveLog: (obj: GetGroupIdResponse) => any;
607
+
608
+ export declare const MemberIdFilterSensitiveLog: (obj: MemberId) => any;
609
+
610
+ export declare const GetGroupMembershipIdRequestFilterSensitiveLog: (obj: GetGroupMembershipIdRequest) => any;
611
+
612
+ export declare const GetGroupMembershipIdResponseFilterSensitiveLog: (obj: GetGroupMembershipIdResponse) => any;
613
+
614
+ export declare const GetUserIdRequestFilterSensitiveLog: (obj: GetUserIdRequest) => any;
615
+
616
+ export declare const GetUserIdResponseFilterSensitiveLog: (obj: GetUserIdResponse) => any;
617
+
618
+ export declare const CreateGroupMembershipRequestFilterSensitiveLog: (obj: CreateGroupMembershipRequest) => any;
619
+
620
+ export declare const CreateGroupMembershipResponseFilterSensitiveLog: (obj: CreateGroupMembershipResponse) => any;
621
+
622
+ export declare const DeleteGroupMembershipRequestFilterSensitiveLog: (obj: DeleteGroupMembershipRequest) => any;
623
+
624
+ export declare const DeleteGroupMembershipResponseFilterSensitiveLog: (obj: DeleteGroupMembershipResponse) => any;
625
+
626
+ export declare const DescribeGroupMembershipRequestFilterSensitiveLog: (obj: DescribeGroupMembershipRequest) => any;
627
+
628
+ export declare const DescribeGroupMembershipResponseFilterSensitiveLog: (obj: DescribeGroupMembershipResponse) => any;
629
+
630
+ export declare const ListGroupMembershipsRequestFilterSensitiveLog: (obj: ListGroupMembershipsRequest) => any;
631
+
632
+ export declare const GroupMembershipFilterSensitiveLog: (obj: GroupMembership) => any;
633
+
634
+ export declare const ListGroupMembershipsResponseFilterSensitiveLog: (obj: ListGroupMembershipsResponse) => any;
635
+
636
+ export declare const CreateGroupRequestFilterSensitiveLog: (obj: CreateGroupRequest) => any;
637
+
638
+ export declare const CreateGroupResponseFilterSensitiveLog: (obj: CreateGroupResponse) => any;
639
+
640
+ export declare const DeleteGroupRequestFilterSensitiveLog: (obj: DeleteGroupRequest) => any;
641
+
642
+ export declare const DeleteGroupResponseFilterSensitiveLog: (obj: DeleteGroupResponse) => any;
643
+
644
+ export declare const DescribeGroupRequestFilterSensitiveLog: (obj: DescribeGroupRequest) => any;
645
+
646
+ export declare const DescribeGroupResponseFilterSensitiveLog: (obj: DescribeGroupResponse) => any;
147
647
 
148
648
  export declare const FilterFilterSensitiveLog: (obj: Filter) => any;
149
649
 
@@ -153,8 +653,44 @@ export declare const GroupFilterSensitiveLog: (obj: Group) => any;
153
653
 
154
654
  export declare const ListGroupsResponseFilterSensitiveLog: (obj: ListGroupsResponse) => any;
155
655
 
656
+ export declare const UpdateGroupRequestFilterSensitiveLog: (obj: UpdateGroupRequest) => any;
657
+
658
+ export declare const UpdateGroupResponseFilterSensitiveLog: (obj: UpdateGroupResponse) => any;
659
+
660
+ export declare const IsMemberInGroupsRequestFilterSensitiveLog: (obj: IsMemberInGroupsRequest) => any;
661
+
662
+ export declare const GroupMembershipExistenceResultFilterSensitiveLog: (obj: GroupMembershipExistenceResult) => any;
663
+
664
+ export declare const IsMemberInGroupsResponseFilterSensitiveLog: (obj: IsMemberInGroupsResponse) => any;
665
+
666
+ export declare const ListGroupMembershipsForMemberRequestFilterSensitiveLog: (obj: ListGroupMembershipsForMemberRequest) => any;
667
+
668
+ export declare const ListGroupMembershipsForMemberResponseFilterSensitiveLog: (obj: ListGroupMembershipsForMemberResponse) => any;
669
+
670
+ export declare const EmailFilterSensitiveLog: (obj: Email) => any;
671
+
672
+ export declare const NameFilterSensitiveLog: (obj: Name) => any;
673
+
674
+ export declare const PhoneNumberFilterSensitiveLog: (obj: PhoneNumber) => any;
675
+
676
+ export declare const CreateUserRequestFilterSensitiveLog: (obj: CreateUserRequest) => any;
677
+
678
+ export declare const CreateUserResponseFilterSensitiveLog: (obj: CreateUserResponse) => any;
679
+
680
+ export declare const DeleteUserRequestFilterSensitiveLog: (obj: DeleteUserRequest) => any;
681
+
682
+ export declare const DeleteUserResponseFilterSensitiveLog: (obj: DeleteUserResponse) => any;
683
+
684
+ export declare const DescribeUserRequestFilterSensitiveLog: (obj: DescribeUserRequest) => any;
685
+
686
+ export declare const DescribeUserResponseFilterSensitiveLog: (obj: DescribeUserResponse) => any;
687
+
156
688
  export declare const ListUsersRequestFilterSensitiveLog: (obj: ListUsersRequest) => any;
157
689
 
158
690
  export declare const UserFilterSensitiveLog: (obj: User) => any;
159
691
 
160
692
  export declare const ListUsersResponseFilterSensitiveLog: (obj: ListUsersResponse) => any;
693
+
694
+ export declare const UpdateUserRequestFilterSensitiveLog: (obj: UpdateUserRequest) => any;
695
+
696
+ export declare const UpdateUserResponseFilterSensitiveLog: (obj: UpdateUserResponse) => any;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListGroupMembershipsForMemberCommandInput, ListGroupMembershipsForMemberCommandOutput } from "../commands/ListGroupMembershipsForMemberCommand";
3
+ import { IdentitystorePaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListGroupMembershipsForMember(config: IdentitystorePaginationConfiguration, input: ListGroupMembershipsForMemberCommandInput, ...additionalArguments: any): Paginator<ListGroupMembershipsForMemberCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListGroupMembershipsCommandInput, ListGroupMembershipsCommandOutput } from "../commands/ListGroupMembershipsCommand";
3
+ import { IdentitystorePaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListGroupMemberships(config: IdentitystorePaginationConfiguration, input: ListGroupMembershipsCommandInput, ...additionalArguments: any): Paginator<ListGroupMembershipsCommandOutput>;
@@ -1,3 +1,5 @@
1
1
  export * from "./Interfaces";
2
+ export * from "./ListGroupMembershipsForMemberPaginator";
3
+ export * from "./ListGroupMembershipsPaginator";
2
4
  export * from "./ListGroupsPaginator";
3
5
  export * from "./ListUsersPaginator";