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