@aws-sdk/client-identitystore 3.325.0 → 3.326.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-types/commands/CreateGroupCommand.d.ts +7 -0
- package/dist-types/commands/CreateGroupMembershipCommand.d.ts +7 -0
- package/dist-types/commands/CreateUserCommand.d.ts +7 -0
- package/dist-types/commands/DeleteGroupCommand.d.ts +4 -0
- package/dist-types/commands/DeleteGroupMembershipCommand.d.ts +4 -0
- package/dist-types/commands/DeleteUserCommand.d.ts +4 -0
- package/dist-types/commands/DescribeGroupCommand.d.ts +15 -0
- package/dist-types/commands/DescribeGroupMembershipCommand.d.ts +11 -0
- package/dist-types/commands/DescribeUserCommand.d.ts +56 -0
- package/dist-types/commands/GetGroupIdCommand.d.ts +7 -0
- package/dist-types/commands/GetGroupMembershipIdCommand.d.ts +7 -0
- package/dist-types/commands/GetUserIdCommand.d.ts +7 -0
- package/dist-types/commands/IsMemberInGroupsCommand.d.ts +14 -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 +20 -0
- package/dist-types/commands/ListUsersCommand.d.ts +61 -0
- package/dist-types/commands/UpdateGroupCommand.d.ts +4 -0
- package/dist-types/commands/UpdateUserCommand.d.ts +4 -0
- package/package.json +3 -3
|
@@ -33,6 +33,11 @@ export interface CreateGroupCommandOutput extends CreateGroupResponse, __Metadat
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new CreateGroupCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // CreateGroupResponse
|
|
37
|
+
* // GroupId: "STRING_VALUE", // required
|
|
38
|
+
* // IdentityStoreId: "STRING_VALUE", // required
|
|
39
|
+
* // };
|
|
40
|
+
*
|
|
36
41
|
* ```
|
|
37
42
|
*
|
|
38
43
|
* @param CreateGroupCommandInput - {@link CreateGroupCommandInput}
|
|
@@ -70,6 +75,8 @@ export interface CreateGroupCommandOutput extends CreateGroupResponse, __Metadat
|
|
|
70
75
|
* @throws {@link ThrottlingException} (client fault)
|
|
71
76
|
* <p>Indicates that the principal has crossed the throttling limits of the API operations.</p>
|
|
72
77
|
*
|
|
78
|
+
* @throws {@link IdentitystoreServiceException}
|
|
79
|
+
* <p>Base exception class for all service exceptions from Identitystore service.</p>
|
|
73
80
|
*
|
|
74
81
|
*/
|
|
75
82
|
export declare class CreateGroupCommand extends $Command<CreateGroupCommandInput, CreateGroupCommandOutput, IdentitystoreClientResolvedConfig> {
|
|
@@ -35,6 +35,11 @@ export interface CreateGroupMembershipCommandOutput extends CreateGroupMembershi
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new CreateGroupMembershipCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // CreateGroupMembershipResponse
|
|
39
|
+
* // MembershipId: "STRING_VALUE", // required
|
|
40
|
+
* // IdentityStoreId: "STRING_VALUE", // required
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
38
43
|
* ```
|
|
39
44
|
*
|
|
40
45
|
* @param CreateGroupMembershipCommandInput - {@link CreateGroupMembershipCommandInput}
|
|
@@ -72,6 +77,8 @@ export interface CreateGroupMembershipCommandOutput extends CreateGroupMembershi
|
|
|
72
77
|
* @throws {@link ThrottlingException} (client fault)
|
|
73
78
|
* <p>Indicates that the principal has crossed the throttling limits of the API operations.</p>
|
|
74
79
|
*
|
|
80
|
+
* @throws {@link IdentitystoreServiceException}
|
|
81
|
+
* <p>Base exception class for all service exceptions from Identitystore service.</p>
|
|
75
82
|
*
|
|
76
83
|
*/
|
|
77
84
|
export declare class CreateGroupMembershipCommand extends $Command<CreateGroupMembershipCommandInput, CreateGroupMembershipCommandOutput, IdentitystoreClientResolvedConfig> {
|
|
@@ -74,6 +74,11 @@ export interface CreateUserCommandOutput extends CreateUserResponse, __MetadataB
|
|
|
74
74
|
* };
|
|
75
75
|
* const command = new CreateUserCommand(input);
|
|
76
76
|
* const response = await client.send(command);
|
|
77
|
+
* // { // CreateUserResponse
|
|
78
|
+
* // UserId: "STRING_VALUE", // required
|
|
79
|
+
* // IdentityStoreId: "STRING_VALUE", // required
|
|
80
|
+
* // };
|
|
81
|
+
*
|
|
77
82
|
* ```
|
|
78
83
|
*
|
|
79
84
|
* @param CreateUserCommandInput - {@link CreateUserCommandInput}
|
|
@@ -111,6 +116,8 @@ export interface CreateUserCommandOutput extends CreateUserResponse, __MetadataB
|
|
|
111
116
|
* @throws {@link ThrottlingException} (client fault)
|
|
112
117
|
* <p>Indicates that the principal has crossed the throttling limits of the API operations.</p>
|
|
113
118
|
*
|
|
119
|
+
* @throws {@link IdentitystoreServiceException}
|
|
120
|
+
* <p>Base exception class for all service exceptions from Identitystore service.</p>
|
|
114
121
|
*
|
|
115
122
|
*/
|
|
116
123
|
export declare class CreateUserCommand extends $Command<CreateUserCommandInput, CreateUserCommandOutput, IdentitystoreClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface DeleteGroupCommandOutput extends DeleteGroupResponse, __Metadat
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteGroupCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param DeleteGroupCommandInput - {@link DeleteGroupCommandInput}
|
|
@@ -66,6 +68,8 @@ export interface DeleteGroupCommandOutput extends DeleteGroupResponse, __Metadat
|
|
|
66
68
|
* @throws {@link ThrottlingException} (client fault)
|
|
67
69
|
* <p>Indicates that the principal has crossed the throttling limits of the API operations.</p>
|
|
68
70
|
*
|
|
71
|
+
* @throws {@link IdentitystoreServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from Identitystore service.</p>
|
|
69
73
|
*
|
|
70
74
|
*/
|
|
71
75
|
export declare class DeleteGroupCommand extends $Command<DeleteGroupCommandInput, DeleteGroupCommandOutput, IdentitystoreClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface DeleteGroupMembershipCommandOutput extends DeleteGroupMembershi
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteGroupMembershipCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param DeleteGroupMembershipCommandInput - {@link DeleteGroupMembershipCommandInput}
|
|
@@ -66,6 +68,8 @@ export interface DeleteGroupMembershipCommandOutput extends DeleteGroupMembershi
|
|
|
66
68
|
* @throws {@link ThrottlingException} (client fault)
|
|
67
69
|
* <p>Indicates that the principal has crossed the throttling limits of the API operations.</p>
|
|
68
70
|
*
|
|
71
|
+
* @throws {@link IdentitystoreServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from Identitystore service.</p>
|
|
69
73
|
*
|
|
70
74
|
*/
|
|
71
75
|
export declare class DeleteGroupMembershipCommand extends $Command<DeleteGroupMembershipCommandInput, DeleteGroupMembershipCommandOutput, IdentitystoreClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface DeleteUserCommandOutput extends DeleteUserResponse, __MetadataB
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteUserCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param DeleteUserCommandInput - {@link DeleteUserCommandInput}
|
|
@@ -66,6 +68,8 @@ export interface DeleteUserCommandOutput extends DeleteUserResponse, __MetadataB
|
|
|
66
68
|
* @throws {@link ThrottlingException} (client fault)
|
|
67
69
|
* <p>Indicates that the principal has crossed the throttling limits of the API operations.</p>
|
|
68
70
|
*
|
|
71
|
+
* @throws {@link IdentitystoreServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from Identitystore service.</p>
|
|
69
73
|
*
|
|
70
74
|
*/
|
|
71
75
|
export declare class DeleteUserCommand extends $Command<DeleteUserCommandInput, DeleteUserCommandOutput, IdentitystoreClientResolvedConfig> {
|
|
@@ -33,6 +33,19 @@ export interface DescribeGroupCommandOutput extends DescribeGroupResponse, __Met
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DescribeGroupCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // DescribeGroupResponse
|
|
37
|
+
* // GroupId: "STRING_VALUE", // required
|
|
38
|
+
* // DisplayName: "STRING_VALUE",
|
|
39
|
+
* // ExternalIds: [ // ExternalIds
|
|
40
|
+
* // { // ExternalId
|
|
41
|
+
* // Issuer: "STRING_VALUE", // required
|
|
42
|
+
* // Id: "STRING_VALUE", // required
|
|
43
|
+
* // },
|
|
44
|
+
* // ],
|
|
45
|
+
* // Description: "STRING_VALUE",
|
|
46
|
+
* // IdentityStoreId: "STRING_VALUE", // required
|
|
47
|
+
* // };
|
|
48
|
+
*
|
|
36
49
|
* ```
|
|
37
50
|
*
|
|
38
51
|
* @param DescribeGroupCommandInput - {@link DescribeGroupCommandInput}
|
|
@@ -56,6 +69,8 @@ export interface DescribeGroupCommandOutput extends DescribeGroupResponse, __Met
|
|
|
56
69
|
* @throws {@link ThrottlingException} (client fault)
|
|
57
70
|
* <p>Indicates that the principal has crossed the throttling limits of the API operations.</p>
|
|
58
71
|
*
|
|
72
|
+
* @throws {@link IdentitystoreServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from Identitystore service.</p>
|
|
59
74
|
*
|
|
60
75
|
*/
|
|
61
76
|
export declare class DescribeGroupCommand extends $Command<DescribeGroupCommandInput, DescribeGroupCommandOutput, IdentitystoreClientResolvedConfig> {
|
|
@@ -32,6 +32,15 @@ export interface DescribeGroupMembershipCommandOutput extends DescribeGroupMembe
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DescribeGroupMembershipCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // DescribeGroupMembershipResponse
|
|
36
|
+
* // IdentityStoreId: "STRING_VALUE", // required
|
|
37
|
+
* // MembershipId: "STRING_VALUE", // required
|
|
38
|
+
* // GroupId: "STRING_VALUE", // required
|
|
39
|
+
* // MemberId: { // MemberId Union: only one key present
|
|
40
|
+
* // UserId: "STRING_VALUE",
|
|
41
|
+
* // },
|
|
42
|
+
* // };
|
|
43
|
+
*
|
|
35
44
|
* ```
|
|
36
45
|
*
|
|
37
46
|
* @param DescribeGroupMembershipCommandInput - {@link DescribeGroupMembershipCommandInput}
|
|
@@ -55,6 +64,8 @@ export interface DescribeGroupMembershipCommandOutput extends DescribeGroupMembe
|
|
|
55
64
|
* @throws {@link ThrottlingException} (client fault)
|
|
56
65
|
* <p>Indicates that the principal has crossed the throttling limits of the API operations.</p>
|
|
57
66
|
*
|
|
67
|
+
* @throws {@link IdentitystoreServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from Identitystore service.</p>
|
|
58
69
|
*
|
|
59
70
|
*/
|
|
60
71
|
export declare class DescribeGroupMembershipCommand extends $Command<DescribeGroupMembershipCommandInput, DescribeGroupMembershipCommandOutput, IdentitystoreClientResolvedConfig> {
|
|
@@ -32,6 +32,60 @@ export interface DescribeUserCommandOutput extends DescribeUserResponse, __Metad
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DescribeUserCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // DescribeUserResponse
|
|
36
|
+
* // UserName: "STRING_VALUE",
|
|
37
|
+
* // UserId: "STRING_VALUE", // required
|
|
38
|
+
* // ExternalIds: [ // ExternalIds
|
|
39
|
+
* // { // ExternalId
|
|
40
|
+
* // Issuer: "STRING_VALUE", // required
|
|
41
|
+
* // Id: "STRING_VALUE", // required
|
|
42
|
+
* // },
|
|
43
|
+
* // ],
|
|
44
|
+
* // Name: { // Name
|
|
45
|
+
* // Formatted: "STRING_VALUE",
|
|
46
|
+
* // FamilyName: "STRING_VALUE",
|
|
47
|
+
* // GivenName: "STRING_VALUE",
|
|
48
|
+
* // MiddleName: "STRING_VALUE",
|
|
49
|
+
* // HonorificPrefix: "STRING_VALUE",
|
|
50
|
+
* // HonorificSuffix: "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // DisplayName: "STRING_VALUE",
|
|
53
|
+
* // NickName: "STRING_VALUE",
|
|
54
|
+
* // ProfileUrl: "STRING_VALUE",
|
|
55
|
+
* // Emails: [ // Emails
|
|
56
|
+
* // { // Email
|
|
57
|
+
* // Value: "STRING_VALUE",
|
|
58
|
+
* // Type: "STRING_VALUE",
|
|
59
|
+
* // Primary: true || false,
|
|
60
|
+
* // },
|
|
61
|
+
* // ],
|
|
62
|
+
* // Addresses: [ // Addresses
|
|
63
|
+
* // { // Address
|
|
64
|
+
* // StreetAddress: "STRING_VALUE",
|
|
65
|
+
* // Locality: "STRING_VALUE",
|
|
66
|
+
* // Region: "STRING_VALUE",
|
|
67
|
+
* // PostalCode: "STRING_VALUE",
|
|
68
|
+
* // Country: "STRING_VALUE",
|
|
69
|
+
* // Formatted: "STRING_VALUE",
|
|
70
|
+
* // Type: "STRING_VALUE",
|
|
71
|
+
* // Primary: true || false,
|
|
72
|
+
* // },
|
|
73
|
+
* // ],
|
|
74
|
+
* // PhoneNumbers: [ // PhoneNumbers
|
|
75
|
+
* // { // PhoneNumber
|
|
76
|
+
* // Value: "STRING_VALUE",
|
|
77
|
+
* // Type: "STRING_VALUE",
|
|
78
|
+
* // Primary: true || false,
|
|
79
|
+
* // },
|
|
80
|
+
* // ],
|
|
81
|
+
* // UserType: "STRING_VALUE",
|
|
82
|
+
* // Title: "STRING_VALUE",
|
|
83
|
+
* // PreferredLanguage: "STRING_VALUE",
|
|
84
|
+
* // Locale: "STRING_VALUE",
|
|
85
|
+
* // Timezone: "STRING_VALUE",
|
|
86
|
+
* // IdentityStoreId: "STRING_VALUE", // required
|
|
87
|
+
* // };
|
|
88
|
+
*
|
|
35
89
|
* ```
|
|
36
90
|
*
|
|
37
91
|
* @param DescribeUserCommandInput - {@link DescribeUserCommandInput}
|
|
@@ -55,6 +109,8 @@ export interface DescribeUserCommandOutput extends DescribeUserResponse, __Metad
|
|
|
55
109
|
* @throws {@link ThrottlingException} (client fault)
|
|
56
110
|
* <p>Indicates that the principal has crossed the throttling limits of the API operations.</p>
|
|
57
111
|
*
|
|
112
|
+
* @throws {@link IdentitystoreServiceException}
|
|
113
|
+
* <p>Base exception class for all service exceptions from Identitystore service.</p>
|
|
58
114
|
*
|
|
59
115
|
*/
|
|
60
116
|
export declare class DescribeUserCommand extends $Command<DescribeUserCommandInput, DescribeUserCommandOutput, IdentitystoreClientResolvedConfig> {
|
|
@@ -41,6 +41,11 @@ export interface GetGroupIdCommandOutput extends GetGroupIdResponse, __MetadataB
|
|
|
41
41
|
* };
|
|
42
42
|
* const command = new GetGroupIdCommand(input);
|
|
43
43
|
* const response = await client.send(command);
|
|
44
|
+
* // { // GetGroupIdResponse
|
|
45
|
+
* // GroupId: "STRING_VALUE", // required
|
|
46
|
+
* // IdentityStoreId: "STRING_VALUE", // required
|
|
47
|
+
* // };
|
|
48
|
+
*
|
|
44
49
|
* ```
|
|
45
50
|
*
|
|
46
51
|
* @param GetGroupIdCommandInput - {@link GetGroupIdCommandInput}
|
|
@@ -64,6 +69,8 @@ export interface GetGroupIdCommandOutput extends GetGroupIdResponse, __MetadataB
|
|
|
64
69
|
* @throws {@link ThrottlingException} (client fault)
|
|
65
70
|
* <p>Indicates that the principal has crossed the throttling limits of the API operations.</p>
|
|
66
71
|
*
|
|
72
|
+
* @throws {@link IdentitystoreServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from Identitystore service.</p>
|
|
67
74
|
*
|
|
68
75
|
*/
|
|
69
76
|
export declare class GetGroupIdCommand extends $Command<GetGroupIdCommandInput, GetGroupIdCommandOutput, IdentitystoreClientResolvedConfig> {
|
|
@@ -35,6 +35,11 @@ export interface GetGroupMembershipIdCommandOutput extends GetGroupMembershipIdR
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new GetGroupMembershipIdCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // GetGroupMembershipIdResponse
|
|
39
|
+
* // MembershipId: "STRING_VALUE", // required
|
|
40
|
+
* // IdentityStoreId: "STRING_VALUE", // required
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
38
43
|
* ```
|
|
39
44
|
*
|
|
40
45
|
* @param GetGroupMembershipIdCommandInput - {@link GetGroupMembershipIdCommandInput}
|
|
@@ -58,6 +63,8 @@ export interface GetGroupMembershipIdCommandOutput extends GetGroupMembershipIdR
|
|
|
58
63
|
* @throws {@link ThrottlingException} (client fault)
|
|
59
64
|
* <p>Indicates that the principal has crossed the throttling limits of the API operations.</p>
|
|
60
65
|
*
|
|
66
|
+
* @throws {@link IdentitystoreServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from Identitystore service.</p>
|
|
61
68
|
*
|
|
62
69
|
*/
|
|
63
70
|
export declare class GetGroupMembershipIdCommand extends $Command<GetGroupMembershipIdCommandInput, GetGroupMembershipIdCommandOutput, IdentitystoreClientResolvedConfig> {
|
|
@@ -41,6 +41,11 @@ export interface GetUserIdCommandOutput extends GetUserIdResponse, __MetadataBea
|
|
|
41
41
|
* };
|
|
42
42
|
* const command = new GetUserIdCommand(input);
|
|
43
43
|
* const response = await client.send(command);
|
|
44
|
+
* // { // GetUserIdResponse
|
|
45
|
+
* // UserId: "STRING_VALUE", // required
|
|
46
|
+
* // IdentityStoreId: "STRING_VALUE", // required
|
|
47
|
+
* // };
|
|
48
|
+
*
|
|
44
49
|
* ```
|
|
45
50
|
*
|
|
46
51
|
* @param GetUserIdCommandInput - {@link GetUserIdCommandInput}
|
|
@@ -64,6 +69,8 @@ export interface GetUserIdCommandOutput extends GetUserIdResponse, __MetadataBea
|
|
|
64
69
|
* @throws {@link ThrottlingException} (client fault)
|
|
65
70
|
* <p>Indicates that the principal has crossed the throttling limits of the API operations.</p>
|
|
66
71
|
*
|
|
72
|
+
* @throws {@link IdentitystoreServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from Identitystore service.</p>
|
|
67
74
|
*
|
|
68
75
|
*/
|
|
69
76
|
export declare class GetUserIdCommand extends $Command<GetUserIdCommandInput, GetUserIdCommandOutput, IdentitystoreClientResolvedConfig> {
|
|
@@ -37,6 +37,18 @@ export interface IsMemberInGroupsCommandOutput extends IsMemberInGroupsResponse,
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new IsMemberInGroupsCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // { // IsMemberInGroupsResponse
|
|
41
|
+
* // Results: [ // GroupMembershipExistenceResults // required
|
|
42
|
+
* // { // GroupMembershipExistenceResult
|
|
43
|
+
* // GroupId: "STRING_VALUE",
|
|
44
|
+
* // MemberId: { // MemberId Union: only one key present
|
|
45
|
+
* // UserId: "STRING_VALUE",
|
|
46
|
+
* // },
|
|
47
|
+
* // MembershipExists: true || false,
|
|
48
|
+
* // },
|
|
49
|
+
* // ],
|
|
50
|
+
* // };
|
|
51
|
+
*
|
|
40
52
|
* ```
|
|
41
53
|
*
|
|
42
54
|
* @param IsMemberInGroupsCommandInput - {@link IsMemberInGroupsCommandInput}
|
|
@@ -60,6 +72,8 @@ export interface IsMemberInGroupsCommandOutput extends IsMemberInGroupsResponse,
|
|
|
60
72
|
* @throws {@link ThrottlingException} (client fault)
|
|
61
73
|
* <p>Indicates that the principal has crossed the throttling limits of the API operations.</p>
|
|
62
74
|
*
|
|
75
|
+
* @throws {@link IdentitystoreServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from Identitystore service.</p>
|
|
63
77
|
*
|
|
64
78
|
*/
|
|
65
79
|
export declare class IsMemberInGroupsCommand extends $Command<IsMemberInGroupsCommandInput, IsMemberInGroupsCommandOutput, IdentitystoreClientResolvedConfig> {
|
|
@@ -34,6 +34,20 @@ export interface ListGroupMembershipsCommandOutput extends ListGroupMembershipsR
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListGroupMembershipsCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListGroupMembershipsResponse
|
|
38
|
+
* // GroupMemberships: [ // GroupMemberships // required
|
|
39
|
+
* // { // GroupMembership
|
|
40
|
+
* // IdentityStoreId: "STRING_VALUE", // required
|
|
41
|
+
* // MembershipId: "STRING_VALUE",
|
|
42
|
+
* // GroupId: "STRING_VALUE",
|
|
43
|
+
* // MemberId: { // MemberId Union: only one key present
|
|
44
|
+
* // UserId: "STRING_VALUE",
|
|
45
|
+
* // },
|
|
46
|
+
* // },
|
|
47
|
+
* // ],
|
|
48
|
+
* // NextToken: "STRING_VALUE",
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
37
51
|
* ```
|
|
38
52
|
*
|
|
39
53
|
* @param ListGroupMembershipsCommandInput - {@link ListGroupMembershipsCommandInput}
|
|
@@ -57,6 +71,8 @@ export interface ListGroupMembershipsCommandOutput extends ListGroupMembershipsR
|
|
|
57
71
|
* @throws {@link ThrottlingException} (client fault)
|
|
58
72
|
* <p>Indicates that the principal has crossed the throttling limits of the API operations.</p>
|
|
59
73
|
*
|
|
74
|
+
* @throws {@link IdentitystoreServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from Identitystore service.</p>
|
|
60
76
|
*
|
|
61
77
|
*/
|
|
62
78
|
export declare class ListGroupMembershipsCommand extends $Command<ListGroupMembershipsCommandInput, ListGroupMembershipsCommandOutput, IdentitystoreClientResolvedConfig> {
|
|
@@ -36,6 +36,20 @@ export interface ListGroupMembershipsForMemberCommandOutput extends ListGroupMem
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new ListGroupMembershipsForMemberCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // ListGroupMembershipsForMemberResponse
|
|
40
|
+
* // GroupMemberships: [ // GroupMemberships // required
|
|
41
|
+
* // { // GroupMembership
|
|
42
|
+
* // IdentityStoreId: "STRING_VALUE", // required
|
|
43
|
+
* // MembershipId: "STRING_VALUE",
|
|
44
|
+
* // GroupId: "STRING_VALUE",
|
|
45
|
+
* // MemberId: { // MemberId Union: only one key present
|
|
46
|
+
* // UserId: "STRING_VALUE",
|
|
47
|
+
* // },
|
|
48
|
+
* // },
|
|
49
|
+
* // ],
|
|
50
|
+
* // NextToken: "STRING_VALUE",
|
|
51
|
+
* // };
|
|
52
|
+
*
|
|
39
53
|
* ```
|
|
40
54
|
*
|
|
41
55
|
* @param ListGroupMembershipsForMemberCommandInput - {@link ListGroupMembershipsForMemberCommandInput}
|
|
@@ -59,6 +73,8 @@ export interface ListGroupMembershipsForMemberCommandOutput extends ListGroupMem
|
|
|
59
73
|
* @throws {@link ThrottlingException} (client fault)
|
|
60
74
|
* <p>Indicates that the principal has crossed the throttling limits of the API operations.</p>
|
|
61
75
|
*
|
|
76
|
+
* @throws {@link IdentitystoreServiceException}
|
|
77
|
+
* <p>Base exception class for all service exceptions from Identitystore service.</p>
|
|
62
78
|
*
|
|
63
79
|
*/
|
|
64
80
|
export declare class ListGroupMembershipsForMemberCommand extends $Command<ListGroupMembershipsForMemberCommandInput, ListGroupMembershipsForMemberCommandOutput, IdentitystoreClientResolvedConfig> {
|
|
@@ -40,6 +40,24 @@ export interface ListGroupsCommandOutput extends ListGroupsResponse, __MetadataB
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new ListGroupsCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // { // ListGroupsResponse
|
|
44
|
+
* // Groups: [ // Groups // required
|
|
45
|
+
* // { // Group
|
|
46
|
+
* // GroupId: "STRING_VALUE", // required
|
|
47
|
+
* // DisplayName: "STRING_VALUE",
|
|
48
|
+
* // ExternalIds: [ // ExternalIds
|
|
49
|
+
* // { // ExternalId
|
|
50
|
+
* // Issuer: "STRING_VALUE", // required
|
|
51
|
+
* // Id: "STRING_VALUE", // required
|
|
52
|
+
* // },
|
|
53
|
+
* // ],
|
|
54
|
+
* // Description: "STRING_VALUE",
|
|
55
|
+
* // IdentityStoreId: "STRING_VALUE", // required
|
|
56
|
+
* // },
|
|
57
|
+
* // ],
|
|
58
|
+
* // NextToken: "STRING_VALUE",
|
|
59
|
+
* // };
|
|
60
|
+
*
|
|
43
61
|
* ```
|
|
44
62
|
*
|
|
45
63
|
* @param ListGroupsCommandInput - {@link ListGroupsCommandInput}
|
|
@@ -63,6 +81,8 @@ export interface ListGroupsCommandOutput extends ListGroupsResponse, __MetadataB
|
|
|
63
81
|
* @throws {@link ThrottlingException} (client fault)
|
|
64
82
|
* <p>Indicates that the principal has crossed the throttling limits of the API operations.</p>
|
|
65
83
|
*
|
|
84
|
+
* @throws {@link IdentitystoreServiceException}
|
|
85
|
+
* <p>Base exception class for all service exceptions from Identitystore service.</p>
|
|
66
86
|
*
|
|
67
87
|
*/
|
|
68
88
|
export declare class ListGroupsCommand extends $Command<ListGroupsCommandInput, ListGroupsCommandOutput, IdentitystoreClientResolvedConfig> {
|
|
@@ -40,6 +40,65 @@ export interface ListUsersCommandOutput extends ListUsersResponse, __MetadataBea
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new ListUsersCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // { // ListUsersResponse
|
|
44
|
+
* // Users: [ // Users // required
|
|
45
|
+
* // { // User
|
|
46
|
+
* // UserName: "STRING_VALUE",
|
|
47
|
+
* // UserId: "STRING_VALUE", // required
|
|
48
|
+
* // ExternalIds: [ // ExternalIds
|
|
49
|
+
* // { // ExternalId
|
|
50
|
+
* // Issuer: "STRING_VALUE", // required
|
|
51
|
+
* // Id: "STRING_VALUE", // required
|
|
52
|
+
* // },
|
|
53
|
+
* // ],
|
|
54
|
+
* // Name: { // Name
|
|
55
|
+
* // Formatted: "STRING_VALUE",
|
|
56
|
+
* // FamilyName: "STRING_VALUE",
|
|
57
|
+
* // GivenName: "STRING_VALUE",
|
|
58
|
+
* // MiddleName: "STRING_VALUE",
|
|
59
|
+
* // HonorificPrefix: "STRING_VALUE",
|
|
60
|
+
* // HonorificSuffix: "STRING_VALUE",
|
|
61
|
+
* // },
|
|
62
|
+
* // DisplayName: "STRING_VALUE",
|
|
63
|
+
* // NickName: "STRING_VALUE",
|
|
64
|
+
* // ProfileUrl: "STRING_VALUE",
|
|
65
|
+
* // Emails: [ // Emails
|
|
66
|
+
* // { // Email
|
|
67
|
+
* // Value: "STRING_VALUE",
|
|
68
|
+
* // Type: "STRING_VALUE",
|
|
69
|
+
* // Primary: true || false,
|
|
70
|
+
* // },
|
|
71
|
+
* // ],
|
|
72
|
+
* // Addresses: [ // Addresses
|
|
73
|
+
* // { // Address
|
|
74
|
+
* // StreetAddress: "STRING_VALUE",
|
|
75
|
+
* // Locality: "STRING_VALUE",
|
|
76
|
+
* // Region: "STRING_VALUE",
|
|
77
|
+
* // PostalCode: "STRING_VALUE",
|
|
78
|
+
* // Country: "STRING_VALUE",
|
|
79
|
+
* // Formatted: "STRING_VALUE",
|
|
80
|
+
* // Type: "STRING_VALUE",
|
|
81
|
+
* // Primary: true || false,
|
|
82
|
+
* // },
|
|
83
|
+
* // ],
|
|
84
|
+
* // PhoneNumbers: [ // PhoneNumbers
|
|
85
|
+
* // { // PhoneNumber
|
|
86
|
+
* // Value: "STRING_VALUE",
|
|
87
|
+
* // Type: "STRING_VALUE",
|
|
88
|
+
* // Primary: true || false,
|
|
89
|
+
* // },
|
|
90
|
+
* // ],
|
|
91
|
+
* // UserType: "STRING_VALUE",
|
|
92
|
+
* // Title: "STRING_VALUE",
|
|
93
|
+
* // PreferredLanguage: "STRING_VALUE",
|
|
94
|
+
* // Locale: "STRING_VALUE",
|
|
95
|
+
* // Timezone: "STRING_VALUE",
|
|
96
|
+
* // IdentityStoreId: "STRING_VALUE", // required
|
|
97
|
+
* // },
|
|
98
|
+
* // ],
|
|
99
|
+
* // NextToken: "STRING_VALUE",
|
|
100
|
+
* // };
|
|
101
|
+
*
|
|
43
102
|
* ```
|
|
44
103
|
*
|
|
45
104
|
* @param ListUsersCommandInput - {@link ListUsersCommandInput}
|
|
@@ -63,6 +122,8 @@ export interface ListUsersCommandOutput extends ListUsersResponse, __MetadataBea
|
|
|
63
122
|
* @throws {@link ThrottlingException} (client fault)
|
|
64
123
|
* <p>Indicates that the principal has crossed the throttling limits of the API operations.</p>
|
|
65
124
|
*
|
|
125
|
+
* @throws {@link IdentitystoreServiceException}
|
|
126
|
+
* <p>Base exception class for all service exceptions from Identitystore service.</p>
|
|
66
127
|
*
|
|
67
128
|
*/
|
|
68
129
|
export declare class ListUsersCommand extends $Command<ListUsersCommandInput, ListUsersCommandOutput, IdentitystoreClientResolvedConfig> {
|
|
@@ -38,6 +38,8 @@ export interface UpdateGroupCommandOutput extends UpdateGroupResponse, __Metadat
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new UpdateGroupCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // {};
|
|
42
|
+
*
|
|
41
43
|
* ```
|
|
42
44
|
*
|
|
43
45
|
* @param UpdateGroupCommandInput - {@link UpdateGroupCommandInput}
|
|
@@ -75,6 +77,8 @@ export interface UpdateGroupCommandOutput extends UpdateGroupResponse, __Metadat
|
|
|
75
77
|
* @throws {@link ThrottlingException} (client fault)
|
|
76
78
|
* <p>Indicates that the principal has crossed the throttling limits of the API operations.</p>
|
|
77
79
|
*
|
|
80
|
+
* @throws {@link IdentitystoreServiceException}
|
|
81
|
+
* <p>Base exception class for all service exceptions from Identitystore service.</p>
|
|
78
82
|
*
|
|
79
83
|
*/
|
|
80
84
|
export declare class UpdateGroupCommand extends $Command<UpdateGroupCommandInput, UpdateGroupCommandOutput, IdentitystoreClientResolvedConfig> {
|
|
@@ -38,6 +38,8 @@ export interface UpdateUserCommandOutput extends UpdateUserResponse, __MetadataB
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new UpdateUserCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // {};
|
|
42
|
+
*
|
|
41
43
|
* ```
|
|
42
44
|
*
|
|
43
45
|
* @param UpdateUserCommandInput - {@link UpdateUserCommandInput}
|
|
@@ -75,6 +77,8 @@ export interface UpdateUserCommandOutput extends UpdateUserResponse, __MetadataB
|
|
|
75
77
|
* @throws {@link ThrottlingException} (client fault)
|
|
76
78
|
* <p>Indicates that the principal has crossed the throttling limits of the API operations.</p>
|
|
77
79
|
*
|
|
80
|
+
* @throws {@link IdentitystoreServiceException}
|
|
81
|
+
* <p>Base exception class for all service exceptions from Identitystore service.</p>
|
|
78
82
|
*
|
|
79
83
|
*/
|
|
80
84
|
export declare class UpdateUserCommand extends $Command<UpdateUserCommandInput, UpdateUserCommandOutput, IdentitystoreClientResolvedConfig> {
|
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.
|
|
4
|
+
"version": "3.326.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",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.326.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.326.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|