@aws-sdk/client-identitystore 3.296.0 → 3.297.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 (29) hide show
  1. package/dist-types/Identitystore.d.ts +20 -0
  2. package/dist-types/IdentitystoreClient.d.ts +24 -4
  3. package/dist-types/commands/CreateGroupCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateGroupMembershipCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateUserCommand.d.ts +16 -0
  6. package/dist-types/commands/DeleteGroupCommand.d.ts +16 -0
  7. package/dist-types/commands/DeleteGroupMembershipCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteUserCommand.d.ts +16 -0
  9. package/dist-types/commands/DescribeGroupCommand.d.ts +16 -0
  10. package/dist-types/commands/DescribeGroupMembershipCommand.d.ts +16 -0
  11. package/dist-types/commands/DescribeUserCommand.d.ts +16 -0
  12. package/dist-types/commands/GetGroupIdCommand.d.ts +16 -0
  13. package/dist-types/commands/GetGroupMembershipIdCommand.d.ts +16 -0
  14. package/dist-types/commands/GetUserIdCommand.d.ts +16 -0
  15. package/dist-types/commands/IsMemberInGroupsCommand.d.ts +16 -0
  16. package/dist-types/commands/ListGroupMembershipsCommand.d.ts +16 -0
  17. package/dist-types/commands/ListGroupMembershipsForMemberCommand.d.ts +16 -0
  18. package/dist-types/commands/ListGroupsCommand.d.ts +16 -0
  19. package/dist-types/commands/ListUsersCommand.d.ts +16 -0
  20. package/dist-types/commands/UpdateGroupCommand.d.ts +16 -0
  21. package/dist-types/commands/UpdateUserCommand.d.ts +16 -0
  22. package/dist-types/models/IdentitystoreServiceException.d.ts +2 -0
  23. package/dist-types/models/models_0.d.ts +147 -0
  24. package/dist-types/pagination/Interfaces.d.ts +3 -0
  25. package/dist-types/pagination/ListGroupMembershipsForMemberPaginator.d.ts +3 -0
  26. package/dist-types/pagination/ListGroupMembershipsPaginator.d.ts +3 -0
  27. package/dist-types/pagination/ListGroupsPaginator.d.ts +3 -0
  28. package/dist-types/pagination/ListUsersPaginator.d.ts +3 -0
  29. package/package.json +3 -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
  /**
@@ -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
  }
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListGroupMembershipsForMemberCommandInput, ListGroupMembershipsForMemberCommandOutput } from "../commands/ListGroupMembershipsForMemberCommand";
3
3
  import { IdentitystorePaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListGroupMembershipsForMember(config: IdentitystorePaginationConfiguration, input: ListGroupMembershipsForMemberCommandInput, ...additionalArguments: any): Paginator<ListGroupMembershipsForMemberCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListGroupMembershipsCommandInput, ListGroupMembershipsCommandOutput } from "../commands/ListGroupMembershipsCommand";
3
3
  import { IdentitystorePaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListGroupMemberships(config: IdentitystorePaginationConfiguration, input: ListGroupMembershipsCommandInput, ...additionalArguments: any): Paginator<ListGroupMembershipsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListGroupsCommandInput, ListGroupsCommandOutput } from "../commands/ListGroupsCommand";
3
3
  import { IdentitystorePaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListGroups(config: IdentitystorePaginationConfiguration, input: ListGroupsCommandInput, ...additionalArguments: any): Paginator<ListGroupsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListUsersCommandInput, ListUsersCommandOutput } from "../commands/ListUsersCommand";
3
3
  import { IdentitystorePaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListUsers(config: IdentitystorePaginationConfiguration, input: ListUsersCommandInput, ...additionalArguments: any): Paginator<ListUsersCommandOutput>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-identitystore",
3
3
  "description": "AWS SDK for JavaScript Identitystore Client for Node.js, Browser and React Native",
4
- "version": "3.296.0",
4
+ "version": "3.297.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -20,9 +20,9 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.296.0",
23
+ "@aws-sdk/client-sts": "3.297.0",
24
24
  "@aws-sdk/config-resolver": "3.296.0",
25
- "@aws-sdk/credential-provider-node": "3.296.0",
25
+ "@aws-sdk/credential-provider-node": "3.297.0",
26
26
  "@aws-sdk/fetch-http-handler": "3.296.0",
27
27
  "@aws-sdk/hash-node": "3.296.0",
28
28
  "@aws-sdk/invalid-dependency": "3.296.0",