@aws-sdk/client-identitystore 3.296.0 → 3.298.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.
- package/dist-cjs/commands/CreateGroupCommand.js +1 -1
- package/dist-cjs/commands/CreateGroupMembershipCommand.js +2 -3
- package/dist-cjs/commands/CreateUserCommand.js +1 -1
- package/dist-cjs/commands/DeleteGroupCommand.js +2 -3
- package/dist-cjs/commands/DeleteGroupMembershipCommand.js +2 -3
- package/dist-cjs/commands/DeleteUserCommand.js +2 -3
- package/dist-cjs/commands/DescribeGroupCommand.js +1 -1
- package/dist-cjs/commands/DescribeGroupMembershipCommand.js +2 -3
- package/dist-cjs/commands/DescribeUserCommand.js +1 -1
- package/dist-cjs/commands/GetGroupIdCommand.js +1 -1
- package/dist-cjs/commands/GetGroupMembershipIdCommand.js +2 -3
- package/dist-cjs/commands/GetUserIdCommand.js +1 -1
- package/dist-cjs/commands/IsMemberInGroupsCommand.js +1 -1
- package/dist-cjs/commands/ListGroupMembershipsCommand.js +2 -3
- package/dist-cjs/commands/ListGroupMembershipsForMemberCommand.js +2 -3
- package/dist-cjs/commands/UpdateGroupCommand.js +2 -3
- package/dist-cjs/commands/UpdateUserCommand.js +2 -3
- package/dist-cjs/models/models_0.js +3 -143
- package/dist-es/commands/CreateGroupCommand.js +2 -2
- package/dist-es/commands/CreateGroupMembershipCommand.js +2 -3
- package/dist-es/commands/CreateUserCommand.js +2 -2
- package/dist-es/commands/DeleteGroupCommand.js +2 -3
- package/dist-es/commands/DeleteGroupMembershipCommand.js +2 -3
- package/dist-es/commands/DeleteUserCommand.js +2 -3
- package/dist-es/commands/DescribeGroupCommand.js +2 -2
- package/dist-es/commands/DescribeGroupMembershipCommand.js +2 -3
- package/dist-es/commands/DescribeUserCommand.js +2 -2
- package/dist-es/commands/GetGroupIdCommand.js +2 -2
- package/dist-es/commands/GetGroupMembershipIdCommand.js +2 -3
- package/dist-es/commands/GetUserIdCommand.js +2 -2
- package/dist-es/commands/IsMemberInGroupsCommand.js +2 -2
- package/dist-es/commands/ListGroupMembershipsCommand.js +2 -3
- package/dist-es/commands/ListGroupMembershipsForMemberCommand.js +2 -3
- package/dist-es/commands/UpdateGroupCommand.js +2 -3
- package/dist-es/commands/UpdateUserCommand.js +2 -3
- package/dist-es/models/models_0.js +2 -110
- package/dist-types/Identitystore.d.ts +20 -0
- package/dist-types/IdentitystoreClient.d.ts +24 -4
- package/dist-types/commands/CreateGroupCommand.d.ts +16 -0
- package/dist-types/commands/CreateGroupMembershipCommand.d.ts +16 -0
- package/dist-types/commands/CreateUserCommand.d.ts +16 -0
- package/dist-types/commands/DeleteGroupCommand.d.ts +16 -0
- package/dist-types/commands/DeleteGroupMembershipCommand.d.ts +16 -0
- package/dist-types/commands/DeleteUserCommand.d.ts +16 -0
- package/dist-types/commands/DescribeGroupCommand.d.ts +16 -0
- package/dist-types/commands/DescribeGroupMembershipCommand.d.ts +16 -0
- package/dist-types/commands/DescribeUserCommand.d.ts +16 -0
- package/dist-types/commands/GetGroupIdCommand.d.ts +16 -0
- package/dist-types/commands/GetGroupMembershipIdCommand.d.ts +16 -0
- package/dist-types/commands/GetUserIdCommand.d.ts +16 -0
- package/dist-types/commands/IsMemberInGroupsCommand.d.ts +16 -0
- package/dist-types/commands/ListGroupMembershipsCommand.d.ts +16 -0
- package/dist-types/commands/ListGroupMembershipsForMemberCommand.d.ts +16 -0
- package/dist-types/commands/ListGroupsCommand.d.ts +16 -0
- package/dist-types/commands/ListUsersCommand.d.ts +16 -0
- package/dist-types/commands/UpdateGroupCommand.d.ts +16 -0
- package/dist-types/commands/UpdateUserCommand.d.ts +16 -0
- package/dist-types/models/IdentitystoreServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +147 -124
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListGroupMembershipsForMemberPaginator.d.ts +3 -0
- package/dist-types/pagination/ListGroupMembershipsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListGroupsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListUsersPaginator.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -91
- package/package.json +4 -3
|
@@ -2,6 +2,7 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-cl
|
|
|
2
2
|
import { DocumentType as __DocumentType } from "@aws-sdk/types";
|
|
3
3
|
import { IdentitystoreServiceException as __BaseException } from "./IdentitystoreServiceException";
|
|
4
4
|
/**
|
|
5
|
+
* @public
|
|
5
6
|
* <p>You do not have sufficient access to perform this action.</p>
|
|
6
7
|
*/
|
|
7
8
|
export declare class AccessDeniedException extends __BaseException {
|
|
@@ -20,6 +21,7 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
20
21
|
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
21
22
|
}
|
|
22
23
|
/**
|
|
24
|
+
* @public
|
|
23
25
|
* <p>The address associated with the specified user.</p>
|
|
24
26
|
*/
|
|
25
27
|
export interface Address {
|
|
@@ -65,6 +67,7 @@ export interface Address {
|
|
|
65
67
|
Primary?: boolean;
|
|
66
68
|
}
|
|
67
69
|
/**
|
|
70
|
+
* @public
|
|
68
71
|
* <p>The identifier issued to this resource by an external identity provider.</p>
|
|
69
72
|
*/
|
|
70
73
|
export interface ExternalId {
|
|
@@ -78,6 +81,7 @@ export interface ExternalId {
|
|
|
78
81
|
Id: string | undefined;
|
|
79
82
|
}
|
|
80
83
|
/**
|
|
84
|
+
* @public
|
|
81
85
|
* <p>An entity attribute that's unique to a specific entity.</p>
|
|
82
86
|
*/
|
|
83
87
|
export interface UniqueAttribute {
|
|
@@ -93,11 +97,15 @@ export interface UniqueAttribute {
|
|
|
93
97
|
AttributeValue: __DocumentType | undefined;
|
|
94
98
|
}
|
|
95
99
|
/**
|
|
100
|
+
* @public
|
|
96
101
|
* <p>A unique identifier for a user or group that is not the primary identifier. This value can be
|
|
97
102
|
* an identifier from an external identity provider (IdP) that is associated with the user, the group, or a unique attribute. For example, a
|
|
98
103
|
* unique <code>GroupDisplayName</code>.</p>
|
|
99
104
|
*/
|
|
100
105
|
export type AlternateIdentifier = AlternateIdentifier.ExternalIdMember | AlternateIdentifier.UniqueAttributeMember | AlternateIdentifier.$UnknownMember;
|
|
106
|
+
/**
|
|
107
|
+
* @public
|
|
108
|
+
*/
|
|
101
109
|
export declare namespace AlternateIdentifier {
|
|
102
110
|
/**
|
|
103
111
|
* <p>The identifier issued to this resource by an external identity provider.</p>
|
|
@@ -128,6 +136,7 @@ export declare namespace AlternateIdentifier {
|
|
|
128
136
|
const visit: <T>(value: AlternateIdentifier, visitor: Visitor<T>) => T;
|
|
129
137
|
}
|
|
130
138
|
/**
|
|
139
|
+
* @public
|
|
131
140
|
* <p>An operation that applies to the requested group. This operation might add, replace, or remove an attribute.</p>
|
|
132
141
|
*/
|
|
133
142
|
export interface AttributeOperation {
|
|
@@ -142,6 +151,9 @@ export interface AttributeOperation {
|
|
|
142
151
|
*/
|
|
143
152
|
AttributeValue?: __DocumentType;
|
|
144
153
|
}
|
|
154
|
+
/**
|
|
155
|
+
* @public
|
|
156
|
+
*/
|
|
145
157
|
export interface GetGroupIdRequest {
|
|
146
158
|
/**
|
|
147
159
|
* <p>The globally unique identifier for the identity store.</p>
|
|
@@ -154,6 +166,9 @@ export interface GetGroupIdRequest {
|
|
|
154
166
|
*/
|
|
155
167
|
AlternateIdentifier: AlternateIdentifier | undefined;
|
|
156
168
|
}
|
|
169
|
+
/**
|
|
170
|
+
* @public
|
|
171
|
+
*/
|
|
157
172
|
export interface GetGroupIdResponse {
|
|
158
173
|
/**
|
|
159
174
|
* <p>The identifier for a group in the identity store.</p>
|
|
@@ -165,6 +180,7 @@ export interface GetGroupIdResponse {
|
|
|
165
180
|
IdentityStoreId: string | undefined;
|
|
166
181
|
}
|
|
167
182
|
/**
|
|
183
|
+
* @public
|
|
168
184
|
* <p>The request processing has failed because of an unknown error, exception or failure with an internal server.</p>
|
|
169
185
|
*/
|
|
170
186
|
export declare class InternalServerException extends __BaseException {
|
|
@@ -187,6 +203,9 @@ export declare class InternalServerException extends __BaseException {
|
|
|
187
203
|
*/
|
|
188
204
|
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
189
205
|
}
|
|
206
|
+
/**
|
|
207
|
+
* @public
|
|
208
|
+
*/
|
|
190
209
|
export declare enum ResourceType {
|
|
191
210
|
GROUP = "GROUP",
|
|
192
211
|
GROUP_MEMBERSHIP = "GROUP_MEMBERSHIP",
|
|
@@ -194,6 +213,7 @@ export declare enum ResourceType {
|
|
|
194
213
|
USER = "USER"
|
|
195
214
|
}
|
|
196
215
|
/**
|
|
216
|
+
* @public
|
|
197
217
|
* <p>Indicates that a requested resource is not found.</p>
|
|
198
218
|
*/
|
|
199
219
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
@@ -220,6 +240,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
220
240
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
221
241
|
}
|
|
222
242
|
/**
|
|
243
|
+
* @public
|
|
223
244
|
* <p>Indicates that the principal has crossed the throttling limits of the API operations.</p>
|
|
224
245
|
*/
|
|
225
246
|
export declare class ThrottlingException extends __BaseException {
|
|
@@ -246,6 +267,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
246
267
|
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
247
268
|
}
|
|
248
269
|
/**
|
|
270
|
+
* @public
|
|
249
271
|
* <p>The request failed because it contains a syntax error.</p>
|
|
250
272
|
*/
|
|
251
273
|
export declare class ValidationException extends __BaseException {
|
|
@@ -264,9 +286,13 @@ export declare class ValidationException extends __BaseException {
|
|
|
264
286
|
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
265
287
|
}
|
|
266
288
|
/**
|
|
289
|
+
* @public
|
|
267
290
|
* <p>An object containing the identifier of a group member.</p>
|
|
268
291
|
*/
|
|
269
292
|
export type MemberId = MemberId.UserIdMember | MemberId.$UnknownMember;
|
|
293
|
+
/**
|
|
294
|
+
* @public
|
|
295
|
+
*/
|
|
270
296
|
export declare namespace MemberId {
|
|
271
297
|
/**
|
|
272
298
|
* <p>An object containing the identifiers of resources that can be members.</p>
|
|
@@ -285,6 +311,9 @@ export declare namespace MemberId {
|
|
|
285
311
|
}
|
|
286
312
|
const visit: <T>(value: MemberId, visitor: Visitor<T>) => T;
|
|
287
313
|
}
|
|
314
|
+
/**
|
|
315
|
+
* @public
|
|
316
|
+
*/
|
|
288
317
|
export interface GetGroupMembershipIdRequest {
|
|
289
318
|
/**
|
|
290
319
|
* <p>The globally unique identifier for the identity store.</p>
|
|
@@ -299,6 +328,9 @@ export interface GetGroupMembershipIdRequest {
|
|
|
299
328
|
*/
|
|
300
329
|
MemberId: MemberId | undefined;
|
|
301
330
|
}
|
|
331
|
+
/**
|
|
332
|
+
* @public
|
|
333
|
+
*/
|
|
302
334
|
export interface GetGroupMembershipIdResponse {
|
|
303
335
|
/**
|
|
304
336
|
* <p>The identifier for a <code>GroupMembership</code> in an identity store.</p>
|
|
@@ -309,6 +341,9 @@ export interface GetGroupMembershipIdResponse {
|
|
|
309
341
|
*/
|
|
310
342
|
IdentityStoreId: string | undefined;
|
|
311
343
|
}
|
|
344
|
+
/**
|
|
345
|
+
* @public
|
|
346
|
+
*/
|
|
312
347
|
export interface GetUserIdRequest {
|
|
313
348
|
/**
|
|
314
349
|
* <p>The globally unique identifier for the identity store.</p>
|
|
@@ -321,6 +356,9 @@ export interface GetUserIdRequest {
|
|
|
321
356
|
*/
|
|
322
357
|
AlternateIdentifier: AlternateIdentifier | undefined;
|
|
323
358
|
}
|
|
359
|
+
/**
|
|
360
|
+
* @public
|
|
361
|
+
*/
|
|
324
362
|
export interface GetUserIdResponse {
|
|
325
363
|
/**
|
|
326
364
|
* <p>The identifier for a user in the identity store.</p>
|
|
@@ -331,11 +369,15 @@ export interface GetUserIdResponse {
|
|
|
331
369
|
*/
|
|
332
370
|
IdentityStoreId: string | undefined;
|
|
333
371
|
}
|
|
372
|
+
/**
|
|
373
|
+
* @public
|
|
374
|
+
*/
|
|
334
375
|
export declare enum ConflictExceptionReason {
|
|
335
376
|
CONCURRENT_MODIFICATION = "CONCURRENT_MODIFICATION",
|
|
336
377
|
UNIQUENESS_CONSTRAINT_VIOLATION = "UNIQUENESS_CONSTRAINT_VIOLATION"
|
|
337
378
|
}
|
|
338
379
|
/**
|
|
380
|
+
* @public
|
|
339
381
|
* <p>This request cannot be completed for one of the following reasons:</p>
|
|
340
382
|
* <ul>
|
|
341
383
|
* <li>
|
|
@@ -371,6 +413,9 @@ export declare class ConflictException extends __BaseException {
|
|
|
371
413
|
*/
|
|
372
414
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
373
415
|
}
|
|
416
|
+
/**
|
|
417
|
+
* @public
|
|
418
|
+
*/
|
|
374
419
|
export interface CreateGroupMembershipRequest {
|
|
375
420
|
/**
|
|
376
421
|
* <p>The globally unique identifier for the identity store.</p>
|
|
@@ -385,6 +430,9 @@ export interface CreateGroupMembershipRequest {
|
|
|
385
430
|
*/
|
|
386
431
|
MemberId: MemberId | undefined;
|
|
387
432
|
}
|
|
433
|
+
/**
|
|
434
|
+
* @public
|
|
435
|
+
*/
|
|
388
436
|
export interface CreateGroupMembershipResponse {
|
|
389
437
|
/**
|
|
390
438
|
* <p>The identifier for a newly created <code>GroupMembership</code> in an identity store.</p>
|
|
@@ -396,6 +444,7 @@ export interface CreateGroupMembershipResponse {
|
|
|
396
444
|
IdentityStoreId: string | undefined;
|
|
397
445
|
}
|
|
398
446
|
/**
|
|
447
|
+
* @public
|
|
399
448
|
* <p>The request would cause the number of users or groups in the identity store to exceed the maximum allowed.</p>
|
|
400
449
|
*/
|
|
401
450
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
@@ -411,6 +460,9 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
411
460
|
*/
|
|
412
461
|
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
413
462
|
}
|
|
463
|
+
/**
|
|
464
|
+
* @public
|
|
465
|
+
*/
|
|
414
466
|
export interface DeleteGroupMembershipRequest {
|
|
415
467
|
/**
|
|
416
468
|
* <p>The globally unique identifier for the identity store.</p>
|
|
@@ -421,8 +473,14 @@ export interface DeleteGroupMembershipRequest {
|
|
|
421
473
|
*/
|
|
422
474
|
MembershipId: string | undefined;
|
|
423
475
|
}
|
|
476
|
+
/**
|
|
477
|
+
* @public
|
|
478
|
+
*/
|
|
424
479
|
export interface DeleteGroupMembershipResponse {
|
|
425
480
|
}
|
|
481
|
+
/**
|
|
482
|
+
* @public
|
|
483
|
+
*/
|
|
426
484
|
export interface DescribeGroupMembershipRequest {
|
|
427
485
|
/**
|
|
428
486
|
* <p>The globally unique identifier for the identity store.</p>
|
|
@@ -433,6 +491,9 @@ export interface DescribeGroupMembershipRequest {
|
|
|
433
491
|
*/
|
|
434
492
|
MembershipId: string | undefined;
|
|
435
493
|
}
|
|
494
|
+
/**
|
|
495
|
+
* @public
|
|
496
|
+
*/
|
|
436
497
|
export interface DescribeGroupMembershipResponse {
|
|
437
498
|
/**
|
|
438
499
|
* <p>The globally unique identifier for the identity store.</p>
|
|
@@ -451,6 +512,9 @@ export interface DescribeGroupMembershipResponse {
|
|
|
451
512
|
*/
|
|
452
513
|
MemberId: MemberId | undefined;
|
|
453
514
|
}
|
|
515
|
+
/**
|
|
516
|
+
* @public
|
|
517
|
+
*/
|
|
454
518
|
export interface ListGroupMembershipsRequest {
|
|
455
519
|
/**
|
|
456
520
|
* <p>The globally unique identifier for the identity store.</p>
|
|
@@ -471,6 +535,7 @@ export interface ListGroupMembershipsRequest {
|
|
|
471
535
|
NextToken?: string;
|
|
472
536
|
}
|
|
473
537
|
/**
|
|
538
|
+
* @public
|
|
474
539
|
* <p>Contains the identifiers for a group, a group member, and a <code>GroupMembership</code>
|
|
475
540
|
* object in the identity store.</p>
|
|
476
541
|
*/
|
|
@@ -492,6 +557,9 @@ export interface GroupMembership {
|
|
|
492
557
|
*/
|
|
493
558
|
MemberId?: MemberId;
|
|
494
559
|
}
|
|
560
|
+
/**
|
|
561
|
+
* @public
|
|
562
|
+
*/
|
|
495
563
|
export interface ListGroupMembershipsResponse {
|
|
496
564
|
/**
|
|
497
565
|
* <p>A list of <code>GroupMembership</code> objects in the group.</p>
|
|
@@ -502,6 +570,9 @@ export interface ListGroupMembershipsResponse {
|
|
|
502
570
|
*/
|
|
503
571
|
NextToken?: string;
|
|
504
572
|
}
|
|
573
|
+
/**
|
|
574
|
+
* @public
|
|
575
|
+
*/
|
|
505
576
|
export interface CreateGroupRequest {
|
|
506
577
|
/**
|
|
507
578
|
* <p>The globally unique identifier for the identity store.</p>
|
|
@@ -516,6 +587,9 @@ export interface CreateGroupRequest {
|
|
|
516
587
|
*/
|
|
517
588
|
Description?: string;
|
|
518
589
|
}
|
|
590
|
+
/**
|
|
591
|
+
* @public
|
|
592
|
+
*/
|
|
519
593
|
export interface CreateGroupResponse {
|
|
520
594
|
/**
|
|
521
595
|
* <p>The
|
|
@@ -528,6 +602,9 @@ export interface CreateGroupResponse {
|
|
|
528
602
|
*/
|
|
529
603
|
IdentityStoreId: string | undefined;
|
|
530
604
|
}
|
|
605
|
+
/**
|
|
606
|
+
* @public
|
|
607
|
+
*/
|
|
531
608
|
export interface DeleteGroupRequest {
|
|
532
609
|
/**
|
|
533
610
|
* <p>The globally unique identifier for the identity store.</p>
|
|
@@ -538,8 +615,14 @@ export interface DeleteGroupRequest {
|
|
|
538
615
|
*/
|
|
539
616
|
GroupId: string | undefined;
|
|
540
617
|
}
|
|
618
|
+
/**
|
|
619
|
+
* @public
|
|
620
|
+
*/
|
|
541
621
|
export interface DeleteGroupResponse {
|
|
542
622
|
}
|
|
623
|
+
/**
|
|
624
|
+
* @public
|
|
625
|
+
*/
|
|
543
626
|
export interface DescribeGroupRequest {
|
|
544
627
|
/**
|
|
545
628
|
* <p>The globally unique identifier for the identity store, such as
|
|
@@ -554,6 +637,9 @@ export interface DescribeGroupRequest {
|
|
|
554
637
|
*/
|
|
555
638
|
GroupId: string | undefined;
|
|
556
639
|
}
|
|
640
|
+
/**
|
|
641
|
+
* @public
|
|
642
|
+
*/
|
|
557
643
|
export interface DescribeGroupResponse {
|
|
558
644
|
/**
|
|
559
645
|
* <p>The identifier for a group in the identity store.</p>
|
|
@@ -582,6 +668,7 @@ export interface DescribeGroupResponse {
|
|
|
582
668
|
IdentityStoreId: string | undefined;
|
|
583
669
|
}
|
|
584
670
|
/**
|
|
671
|
+
* @public
|
|
585
672
|
* <p>A query filter used by <code>ListUsers</code> and <code>ListGroups</code>. This filter
|
|
586
673
|
* object provides the attribute name and attribute value to search users or groups.</p>
|
|
587
674
|
*/
|
|
@@ -599,6 +686,9 @@ export interface Filter {
|
|
|
599
686
|
*/
|
|
600
687
|
AttributeValue: string | undefined;
|
|
601
688
|
}
|
|
689
|
+
/**
|
|
690
|
+
* @public
|
|
691
|
+
*/
|
|
602
692
|
export interface ListGroupsRequest {
|
|
603
693
|
/**
|
|
604
694
|
* <p>The globally unique identifier for the identity store, such as
|
|
@@ -630,6 +720,7 @@ export interface ListGroupsRequest {
|
|
|
630
720
|
Filters?: Filter[];
|
|
631
721
|
}
|
|
632
722
|
/**
|
|
723
|
+
* @public
|
|
633
724
|
* <p>A group object that contains a specified group’s metadata and attributes.</p>
|
|
634
725
|
*/
|
|
635
726
|
export interface Group {
|
|
@@ -658,6 +749,9 @@ export interface Group {
|
|
|
658
749
|
*/
|
|
659
750
|
IdentityStoreId: string | undefined;
|
|
660
751
|
}
|
|
752
|
+
/**
|
|
753
|
+
* @public
|
|
754
|
+
*/
|
|
661
755
|
export interface ListGroupsResponse {
|
|
662
756
|
/**
|
|
663
757
|
* <p>A list of <code>Group</code> objects in the identity store.</p>
|
|
@@ -671,6 +765,9 @@ export interface ListGroupsResponse {
|
|
|
671
765
|
*/
|
|
672
766
|
NextToken?: string;
|
|
673
767
|
}
|
|
768
|
+
/**
|
|
769
|
+
* @public
|
|
770
|
+
*/
|
|
674
771
|
export interface UpdateGroupRequest {
|
|
675
772
|
/**
|
|
676
773
|
* <p>The globally unique identifier for the identity store.</p>
|
|
@@ -686,8 +783,14 @@ export interface UpdateGroupRequest {
|
|
|
686
783
|
*/
|
|
687
784
|
Operations: AttributeOperation[] | undefined;
|
|
688
785
|
}
|
|
786
|
+
/**
|
|
787
|
+
* @public
|
|
788
|
+
*/
|
|
689
789
|
export interface UpdateGroupResponse {
|
|
690
790
|
}
|
|
791
|
+
/**
|
|
792
|
+
* @public
|
|
793
|
+
*/
|
|
691
794
|
export interface IsMemberInGroupsRequest {
|
|
692
795
|
/**
|
|
693
796
|
* <p>The globally unique identifier for the identity store.</p>
|
|
@@ -703,6 +806,7 @@ export interface IsMemberInGroupsRequest {
|
|
|
703
806
|
GroupIds: string[] | undefined;
|
|
704
807
|
}
|
|
705
808
|
/**
|
|
809
|
+
* @public
|
|
706
810
|
* <p>Indicates whether a resource is a member of a group in the identity store.</p>
|
|
707
811
|
*/
|
|
708
812
|
export interface GroupMembershipExistenceResult {
|
|
@@ -719,12 +823,18 @@ export interface GroupMembershipExistenceResult {
|
|
|
719
823
|
*/
|
|
720
824
|
MembershipExists?: boolean;
|
|
721
825
|
}
|
|
826
|
+
/**
|
|
827
|
+
* @public
|
|
828
|
+
*/
|
|
722
829
|
export interface IsMemberInGroupsResponse {
|
|
723
830
|
/**
|
|
724
831
|
* <p>A list containing the results of membership existence checks.</p>
|
|
725
832
|
*/
|
|
726
833
|
Results: GroupMembershipExistenceResult[] | undefined;
|
|
727
834
|
}
|
|
835
|
+
/**
|
|
836
|
+
* @public
|
|
837
|
+
*/
|
|
728
838
|
export interface ListGroupMembershipsForMemberRequest {
|
|
729
839
|
/**
|
|
730
840
|
* <p>The globally unique identifier for the identity store.</p>
|
|
@@ -743,6 +853,9 @@ export interface ListGroupMembershipsForMemberRequest {
|
|
|
743
853
|
*/
|
|
744
854
|
NextToken?: string;
|
|
745
855
|
}
|
|
856
|
+
/**
|
|
857
|
+
* @public
|
|
858
|
+
*/
|
|
746
859
|
export interface ListGroupMembershipsForMemberResponse {
|
|
747
860
|
/**
|
|
748
861
|
* <p>A list of <code>GroupMembership</code> objects in the group for a specified member.</p>
|
|
@@ -755,6 +868,7 @@ export interface ListGroupMembershipsForMemberResponse {
|
|
|
755
868
|
NextToken?: string;
|
|
756
869
|
}
|
|
757
870
|
/**
|
|
871
|
+
* @public
|
|
758
872
|
* <p>The email address associated with the user.</p>
|
|
759
873
|
*/
|
|
760
874
|
export interface Email {
|
|
@@ -777,6 +891,7 @@ export interface Email {
|
|
|
777
891
|
Primary?: boolean;
|
|
778
892
|
}
|
|
779
893
|
/**
|
|
894
|
+
* @public
|
|
780
895
|
* <p>The
|
|
781
896
|
* full name
|
|
782
897
|
* of the user.</p>
|
|
@@ -808,6 +923,7 @@ export interface Name {
|
|
|
808
923
|
HonorificSuffix?: string;
|
|
809
924
|
}
|
|
810
925
|
/**
|
|
926
|
+
* @public
|
|
811
927
|
* <p>The phone number associated with the user.</p>
|
|
812
928
|
*/
|
|
813
929
|
export interface PhoneNumber {
|
|
@@ -830,6 +946,9 @@ export interface PhoneNumber {
|
|
|
830
946
|
*/
|
|
831
947
|
Primary?: boolean;
|
|
832
948
|
}
|
|
949
|
+
/**
|
|
950
|
+
* @public
|
|
951
|
+
*/
|
|
833
952
|
export interface CreateUserRequest {
|
|
834
953
|
/**
|
|
835
954
|
* <p>The globally unique identifier for the identity store.</p>
|
|
@@ -892,6 +1011,9 @@ export interface CreateUserRequest {
|
|
|
892
1011
|
*/
|
|
893
1012
|
Timezone?: string;
|
|
894
1013
|
}
|
|
1014
|
+
/**
|
|
1015
|
+
* @public
|
|
1016
|
+
*/
|
|
895
1017
|
export interface CreateUserResponse {
|
|
896
1018
|
/**
|
|
897
1019
|
* <p>The identifier of the newly created user in the identity store.</p>
|
|
@@ -902,6 +1024,9 @@ export interface CreateUserResponse {
|
|
|
902
1024
|
*/
|
|
903
1025
|
IdentityStoreId: string | undefined;
|
|
904
1026
|
}
|
|
1027
|
+
/**
|
|
1028
|
+
* @public
|
|
1029
|
+
*/
|
|
905
1030
|
export interface DeleteUserRequest {
|
|
906
1031
|
/**
|
|
907
1032
|
* <p>The globally unique identifier for the identity store.</p>
|
|
@@ -912,8 +1037,14 @@ export interface DeleteUserRequest {
|
|
|
912
1037
|
*/
|
|
913
1038
|
UserId: string | undefined;
|
|
914
1039
|
}
|
|
1040
|
+
/**
|
|
1041
|
+
* @public
|
|
1042
|
+
*/
|
|
915
1043
|
export interface DeleteUserResponse {
|
|
916
1044
|
}
|
|
1045
|
+
/**
|
|
1046
|
+
* @public
|
|
1047
|
+
*/
|
|
917
1048
|
export interface DescribeUserRequest {
|
|
918
1049
|
/**
|
|
919
1050
|
* <p>The globally unique identifier for the identity store, such as
|
|
@@ -928,6 +1059,9 @@ export interface DescribeUserRequest {
|
|
|
928
1059
|
*/
|
|
929
1060
|
UserId: string | undefined;
|
|
930
1061
|
}
|
|
1062
|
+
/**
|
|
1063
|
+
* @public
|
|
1064
|
+
*/
|
|
931
1065
|
export interface DescribeUserResponse {
|
|
932
1066
|
/**
|
|
933
1067
|
* <p>A unique string used to identify the user. The length limit is 128 characters. This value can consist of
|
|
@@ -997,6 +1131,9 @@ export interface DescribeUserResponse {
|
|
|
997
1131
|
*/
|
|
998
1132
|
IdentityStoreId: string | undefined;
|
|
999
1133
|
}
|
|
1134
|
+
/**
|
|
1135
|
+
* @public
|
|
1136
|
+
*/
|
|
1000
1137
|
export interface ListUsersRequest {
|
|
1001
1138
|
/**
|
|
1002
1139
|
* <p>The globally unique identifier for the identity store, such as
|
|
@@ -1028,6 +1165,7 @@ export interface ListUsersRequest {
|
|
|
1028
1165
|
Filters?: Filter[];
|
|
1029
1166
|
}
|
|
1030
1167
|
/**
|
|
1168
|
+
* @public
|
|
1031
1169
|
* <p>A user object that contains a specified user’s metadata and attributes.</p>
|
|
1032
1170
|
*/
|
|
1033
1171
|
export interface User {
|
|
@@ -1105,6 +1243,9 @@ export interface User {
|
|
|
1105
1243
|
*/
|
|
1106
1244
|
IdentityStoreId: string | undefined;
|
|
1107
1245
|
}
|
|
1246
|
+
/**
|
|
1247
|
+
* @public
|
|
1248
|
+
*/
|
|
1108
1249
|
export interface ListUsersResponse {
|
|
1109
1250
|
/**
|
|
1110
1251
|
* <p>A list of <code>User</code> objects in the identity store.</p>
|
|
@@ -1118,6 +1259,9 @@ export interface ListUsersResponse {
|
|
|
1118
1259
|
*/
|
|
1119
1260
|
NextToken?: string;
|
|
1120
1261
|
}
|
|
1262
|
+
/**
|
|
1263
|
+
* @public
|
|
1264
|
+
*/
|
|
1121
1265
|
export interface UpdateUserRequest {
|
|
1122
1266
|
/**
|
|
1123
1267
|
* <p>The globally unique identifier for the identity store.</p>
|
|
@@ -1133,6 +1277,9 @@ export interface UpdateUserRequest {
|
|
|
1133
1277
|
*/
|
|
1134
1278
|
Operations: AttributeOperation[] | undefined;
|
|
1135
1279
|
}
|
|
1280
|
+
/**
|
|
1281
|
+
* @public
|
|
1282
|
+
*/
|
|
1136
1283
|
export interface UpdateUserResponse {
|
|
1137
1284
|
}
|
|
1138
1285
|
/**
|
|
@@ -1143,102 +1290,22 @@ export declare const AddressFilterSensitiveLog: (obj: Address) => any;
|
|
|
1143
1290
|
* @internal
|
|
1144
1291
|
*/
|
|
1145
1292
|
export declare const ExternalIdFilterSensitiveLog: (obj: ExternalId) => any;
|
|
1146
|
-
/**
|
|
1147
|
-
* @internal
|
|
1148
|
-
*/
|
|
1149
|
-
export declare const UniqueAttributeFilterSensitiveLog: (obj: UniqueAttribute) => any;
|
|
1150
1293
|
/**
|
|
1151
1294
|
* @internal
|
|
1152
1295
|
*/
|
|
1153
1296
|
export declare const AlternateIdentifierFilterSensitiveLog: (obj: AlternateIdentifier) => any;
|
|
1154
|
-
/**
|
|
1155
|
-
* @internal
|
|
1156
|
-
*/
|
|
1157
|
-
export declare const AttributeOperationFilterSensitiveLog: (obj: AttributeOperation) => any;
|
|
1158
1297
|
/**
|
|
1159
1298
|
* @internal
|
|
1160
1299
|
*/
|
|
1161
1300
|
export declare const GetGroupIdRequestFilterSensitiveLog: (obj: GetGroupIdRequest) => any;
|
|
1162
|
-
/**
|
|
1163
|
-
* @internal
|
|
1164
|
-
*/
|
|
1165
|
-
export declare const GetGroupIdResponseFilterSensitiveLog: (obj: GetGroupIdResponse) => any;
|
|
1166
|
-
/**
|
|
1167
|
-
* @internal
|
|
1168
|
-
*/
|
|
1169
|
-
export declare const MemberIdFilterSensitiveLog: (obj: MemberId) => any;
|
|
1170
|
-
/**
|
|
1171
|
-
* @internal
|
|
1172
|
-
*/
|
|
1173
|
-
export declare const GetGroupMembershipIdRequestFilterSensitiveLog: (obj: GetGroupMembershipIdRequest) => any;
|
|
1174
|
-
/**
|
|
1175
|
-
* @internal
|
|
1176
|
-
*/
|
|
1177
|
-
export declare const GetGroupMembershipIdResponseFilterSensitiveLog: (obj: GetGroupMembershipIdResponse) => any;
|
|
1178
1301
|
/**
|
|
1179
1302
|
* @internal
|
|
1180
1303
|
*/
|
|
1181
1304
|
export declare const GetUserIdRequestFilterSensitiveLog: (obj: GetUserIdRequest) => any;
|
|
1182
|
-
/**
|
|
1183
|
-
* @internal
|
|
1184
|
-
*/
|
|
1185
|
-
export declare const GetUserIdResponseFilterSensitiveLog: (obj: GetUserIdResponse) => any;
|
|
1186
|
-
/**
|
|
1187
|
-
* @internal
|
|
1188
|
-
*/
|
|
1189
|
-
export declare const CreateGroupMembershipRequestFilterSensitiveLog: (obj: CreateGroupMembershipRequest) => any;
|
|
1190
|
-
/**
|
|
1191
|
-
* @internal
|
|
1192
|
-
*/
|
|
1193
|
-
export declare const CreateGroupMembershipResponseFilterSensitiveLog: (obj: CreateGroupMembershipResponse) => any;
|
|
1194
|
-
/**
|
|
1195
|
-
* @internal
|
|
1196
|
-
*/
|
|
1197
|
-
export declare const DeleteGroupMembershipRequestFilterSensitiveLog: (obj: DeleteGroupMembershipRequest) => any;
|
|
1198
|
-
/**
|
|
1199
|
-
* @internal
|
|
1200
|
-
*/
|
|
1201
|
-
export declare const DeleteGroupMembershipResponseFilterSensitiveLog: (obj: DeleteGroupMembershipResponse) => any;
|
|
1202
|
-
/**
|
|
1203
|
-
* @internal
|
|
1204
|
-
*/
|
|
1205
|
-
export declare const DescribeGroupMembershipRequestFilterSensitiveLog: (obj: DescribeGroupMembershipRequest) => any;
|
|
1206
|
-
/**
|
|
1207
|
-
* @internal
|
|
1208
|
-
*/
|
|
1209
|
-
export declare const DescribeGroupMembershipResponseFilterSensitiveLog: (obj: DescribeGroupMembershipResponse) => any;
|
|
1210
|
-
/**
|
|
1211
|
-
* @internal
|
|
1212
|
-
*/
|
|
1213
|
-
export declare const ListGroupMembershipsRequestFilterSensitiveLog: (obj: ListGroupMembershipsRequest) => any;
|
|
1214
|
-
/**
|
|
1215
|
-
* @internal
|
|
1216
|
-
*/
|
|
1217
|
-
export declare const GroupMembershipFilterSensitiveLog: (obj: GroupMembership) => any;
|
|
1218
|
-
/**
|
|
1219
|
-
* @internal
|
|
1220
|
-
*/
|
|
1221
|
-
export declare const ListGroupMembershipsResponseFilterSensitiveLog: (obj: ListGroupMembershipsResponse) => any;
|
|
1222
1305
|
/**
|
|
1223
1306
|
* @internal
|
|
1224
1307
|
*/
|
|
1225
1308
|
export declare const CreateGroupRequestFilterSensitiveLog: (obj: CreateGroupRequest) => any;
|
|
1226
|
-
/**
|
|
1227
|
-
* @internal
|
|
1228
|
-
*/
|
|
1229
|
-
export declare const CreateGroupResponseFilterSensitiveLog: (obj: CreateGroupResponse) => any;
|
|
1230
|
-
/**
|
|
1231
|
-
* @internal
|
|
1232
|
-
*/
|
|
1233
|
-
export declare const DeleteGroupRequestFilterSensitiveLog: (obj: DeleteGroupRequest) => any;
|
|
1234
|
-
/**
|
|
1235
|
-
* @internal
|
|
1236
|
-
*/
|
|
1237
|
-
export declare const DeleteGroupResponseFilterSensitiveLog: (obj: DeleteGroupResponse) => any;
|
|
1238
|
-
/**
|
|
1239
|
-
* @internal
|
|
1240
|
-
*/
|
|
1241
|
-
export declare const DescribeGroupRequestFilterSensitiveLog: (obj: DescribeGroupRequest) => any;
|
|
1242
1309
|
/**
|
|
1243
1310
|
* @internal
|
|
1244
1311
|
*/
|
|
@@ -1259,18 +1326,6 @@ export declare const GroupFilterSensitiveLog: (obj: Group) => any;
|
|
|
1259
1326
|
* @internal
|
|
1260
1327
|
*/
|
|
1261
1328
|
export declare const ListGroupsResponseFilterSensitiveLog: (obj: ListGroupsResponse) => any;
|
|
1262
|
-
/**
|
|
1263
|
-
* @internal
|
|
1264
|
-
*/
|
|
1265
|
-
export declare const UpdateGroupRequestFilterSensitiveLog: (obj: UpdateGroupRequest) => any;
|
|
1266
|
-
/**
|
|
1267
|
-
* @internal
|
|
1268
|
-
*/
|
|
1269
|
-
export declare const UpdateGroupResponseFilterSensitiveLog: (obj: UpdateGroupResponse) => any;
|
|
1270
|
-
/**
|
|
1271
|
-
* @internal
|
|
1272
|
-
*/
|
|
1273
|
-
export declare const IsMemberInGroupsRequestFilterSensitiveLog: (obj: IsMemberInGroupsRequest) => any;
|
|
1274
1329
|
/**
|
|
1275
1330
|
* @internal
|
|
1276
1331
|
*/
|
|
@@ -1279,14 +1334,6 @@ export declare const GroupMembershipExistenceResultFilterSensitiveLog: (obj: Gro
|
|
|
1279
1334
|
* @internal
|
|
1280
1335
|
*/
|
|
1281
1336
|
export declare const IsMemberInGroupsResponseFilterSensitiveLog: (obj: IsMemberInGroupsResponse) => any;
|
|
1282
|
-
/**
|
|
1283
|
-
* @internal
|
|
1284
|
-
*/
|
|
1285
|
-
export declare const ListGroupMembershipsForMemberRequestFilterSensitiveLog: (obj: ListGroupMembershipsForMemberRequest) => any;
|
|
1286
|
-
/**
|
|
1287
|
-
* @internal
|
|
1288
|
-
*/
|
|
1289
|
-
export declare const ListGroupMembershipsForMemberResponseFilterSensitiveLog: (obj: ListGroupMembershipsForMemberResponse) => any;
|
|
1290
1337
|
/**
|
|
1291
1338
|
* @internal
|
|
1292
1339
|
*/
|
|
@@ -1303,22 +1350,6 @@ export declare const PhoneNumberFilterSensitiveLog: (obj: PhoneNumber) => any;
|
|
|
1303
1350
|
* @internal
|
|
1304
1351
|
*/
|
|
1305
1352
|
export declare const CreateUserRequestFilterSensitiveLog: (obj: CreateUserRequest) => any;
|
|
1306
|
-
/**
|
|
1307
|
-
* @internal
|
|
1308
|
-
*/
|
|
1309
|
-
export declare const CreateUserResponseFilterSensitiveLog: (obj: CreateUserResponse) => any;
|
|
1310
|
-
/**
|
|
1311
|
-
* @internal
|
|
1312
|
-
*/
|
|
1313
|
-
export declare const DeleteUserRequestFilterSensitiveLog: (obj: DeleteUserRequest) => any;
|
|
1314
|
-
/**
|
|
1315
|
-
* @internal
|
|
1316
|
-
*/
|
|
1317
|
-
export declare const DeleteUserResponseFilterSensitiveLog: (obj: DeleteUserResponse) => any;
|
|
1318
|
-
/**
|
|
1319
|
-
* @internal
|
|
1320
|
-
*/
|
|
1321
|
-
export declare const DescribeUserRequestFilterSensitiveLog: (obj: DescribeUserRequest) => any;
|
|
1322
1353
|
/**
|
|
1323
1354
|
* @internal
|
|
1324
1355
|
*/
|
|
@@ -1335,11 +1366,3 @@ export declare const UserFilterSensitiveLog: (obj: User) => any;
|
|
|
1335
1366
|
* @internal
|
|
1336
1367
|
*/
|
|
1337
1368
|
export declare const ListUsersResponseFilterSensitiveLog: (obj: ListUsersResponse) => any;
|
|
1338
|
-
/**
|
|
1339
|
-
* @internal
|
|
1340
|
-
*/
|
|
1341
|
-
export declare const UpdateUserRequestFilterSensitiveLog: (obj: UpdateUserRequest) => any;
|
|
1342
|
-
/**
|
|
1343
|
-
* @internal
|
|
1344
|
-
*/
|
|
1345
|
-
export declare const UpdateUserResponseFilterSensitiveLog: (obj: UpdateUserResponse) => any;
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
2
|
import { IdentitystoreClient } from "../IdentitystoreClient";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
3
6
|
export interface IdentitystorePaginationConfiguration extends PaginationConfiguration {
|
|
4
7
|
client: IdentitystoreClient;
|
|
5
8
|
}
|