@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.
- 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 -0
- 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/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
|
|
5
5
|
import { DescribeUserRequest, DescribeUserResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeUserCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeUserCommandInput extends DescribeUserRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeUserCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeUserCommandOutput extends DescribeUserResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the user metadata and attributes from the <code>UserId</code> in an identity store.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeUserCommandOutput extends DescribeUserResponse, __Metad
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeUserCommandInput - {@link DescribeUserCommandInput}
|
|
34
|
+
* @returns {@link DescribeUserCommandOutput}
|
|
28
35
|
* @see {@link DescribeUserCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeUserCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link IdentitystoreClientResolvedConfig | config} for IdentitystoreClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface DescribeUserCommandOutput extends DescribeUserResponse, __Metad
|
|
|
49
56
|
export declare class DescribeUserCommand extends $Command<DescribeUserCommandInput, DescribeUserCommandOutput, IdentitystoreClientResolvedConfig> {
|
|
50
57
|
readonly input: DescribeUserCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: DescribeUserCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IdentitystoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeUserCommandInput, DescribeUserCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
|
|
5
5
|
import { GetGroupIdRequest, GetGroupIdResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetGroupIdCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetGroupIdCommandInput extends GetGroupIdRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetGroupIdCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetGroupIdCommandOutput extends GetGroupIdResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves <code>GroupId</code> in an identity store.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetGroupIdCommandOutput extends GetGroupIdResponse, __MetadataB
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetGroupIdCommandInput - {@link GetGroupIdCommandInput}
|
|
34
|
+
* @returns {@link GetGroupIdCommandOutput}
|
|
28
35
|
* @see {@link GetGroupIdCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetGroupIdCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link IdentitystoreClientResolvedConfig | config} for IdentitystoreClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface GetGroupIdCommandOutput extends GetGroupIdResponse, __MetadataB
|
|
|
49
56
|
export declare class GetGroupIdCommand extends $Command<GetGroupIdCommandInput, GetGroupIdCommandOutput, IdentitystoreClientResolvedConfig> {
|
|
50
57
|
readonly input: GetGroupIdCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: GetGroupIdCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IdentitystoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetGroupIdCommandInput, GetGroupIdCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
|
|
5
5
|
import { GetGroupMembershipIdRequest, GetGroupMembershipIdResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetGroupMembershipIdCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetGroupMembershipIdCommandInput extends GetGroupMembershipIdRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetGroupMembershipIdCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetGroupMembershipIdCommandOutput extends GetGroupMembershipIdResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the <code>MembershipId</code> in an identity store.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetGroupMembershipIdCommandOutput extends GetGroupMembershipIdR
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetGroupMembershipIdCommandInput - {@link GetGroupMembershipIdCommandInput}
|
|
34
|
+
* @returns {@link GetGroupMembershipIdCommandOutput}
|
|
28
35
|
* @see {@link GetGroupMembershipIdCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetGroupMembershipIdCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link IdentitystoreClientResolvedConfig | config} for IdentitystoreClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface GetGroupMembershipIdCommandOutput extends GetGroupMembershipIdR
|
|
|
49
56
|
export declare class GetGroupMembershipIdCommand extends $Command<GetGroupMembershipIdCommandInput, GetGroupMembershipIdCommandOutput, IdentitystoreClientResolvedConfig> {
|
|
50
57
|
readonly input: GetGroupMembershipIdCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: GetGroupMembershipIdCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IdentitystoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetGroupMembershipIdCommandInput, GetGroupMembershipIdCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
|
|
5
5
|
import { GetUserIdRequest, GetUserIdResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetUserIdCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetUserIdCommandInput extends GetUserIdRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetUserIdCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetUserIdCommandOutput extends GetUserIdResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the <code>UserId</code> in an identity store.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetUserIdCommandOutput extends GetUserIdResponse, __MetadataBea
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetUserIdCommandInput - {@link GetUserIdCommandInput}
|
|
34
|
+
* @returns {@link GetUserIdCommandOutput}
|
|
28
35
|
* @see {@link GetUserIdCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetUserIdCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link IdentitystoreClientResolvedConfig | config} for IdentitystoreClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface GetUserIdCommandOutput extends GetUserIdResponse, __MetadataBea
|
|
|
49
56
|
export declare class GetUserIdCommand extends $Command<GetUserIdCommandInput, GetUserIdCommandOutput, IdentitystoreClientResolvedConfig> {
|
|
50
57
|
readonly input: GetUserIdCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: GetUserIdCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IdentitystoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetUserIdCommandInput, GetUserIdCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
|
|
5
5
|
import { IsMemberInGroupsRequest, IsMemberInGroupsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link IsMemberInGroupsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface IsMemberInGroupsCommandInput extends IsMemberInGroupsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link IsMemberInGroupsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface IsMemberInGroupsCommandOutput extends IsMemberInGroupsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Checks the user's membership in all requested groups and returns if the member exists in all queried groups.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface IsMemberInGroupsCommandOutput extends IsMemberInGroupsResponse,
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param IsMemberInGroupsCommandInput - {@link IsMemberInGroupsCommandInput}
|
|
34
|
+
* @returns {@link IsMemberInGroupsCommandOutput}
|
|
28
35
|
* @see {@link IsMemberInGroupsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link IsMemberInGroupsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link IdentitystoreClientResolvedConfig | config} for IdentitystoreClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface IsMemberInGroupsCommandOutput extends IsMemberInGroupsResponse,
|
|
|
49
56
|
export declare class IsMemberInGroupsCommand extends $Command<IsMemberInGroupsCommandInput, IsMemberInGroupsCommandOutput, IdentitystoreClientResolvedConfig> {
|
|
50
57
|
readonly input: IsMemberInGroupsCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: IsMemberInGroupsCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IdentitystoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<IsMemberInGroupsCommandInput, IsMemberInGroupsCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
|
|
5
5
|
import { ListGroupMembershipsRequest, ListGroupMembershipsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListGroupMembershipsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListGroupMembershipsCommandInput extends ListGroupMembershipsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListGroupMembershipsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListGroupMembershipsCommandOutput extends ListGroupMembershipsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>For the specified group in the specified identity store, returns the list of all <code>GroupMembership</code> objects and returns results in paginated form.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListGroupMembershipsCommandOutput extends ListGroupMembershipsR
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListGroupMembershipsCommandInput - {@link ListGroupMembershipsCommandInput}
|
|
34
|
+
* @returns {@link ListGroupMembershipsCommandOutput}
|
|
28
35
|
* @see {@link ListGroupMembershipsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListGroupMembershipsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link IdentitystoreClientResolvedConfig | config} for IdentitystoreClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface ListGroupMembershipsCommandOutput extends ListGroupMembershipsR
|
|
|
49
56
|
export declare class ListGroupMembershipsCommand extends $Command<ListGroupMembershipsCommandInput, ListGroupMembershipsCommandOutput, IdentitystoreClientResolvedConfig> {
|
|
50
57
|
readonly input: ListGroupMembershipsCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: ListGroupMembershipsCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IdentitystoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListGroupMembershipsCommandInput, ListGroupMembershipsCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
|
|
5
5
|
import { ListGroupMembershipsForMemberRequest, ListGroupMembershipsForMemberResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListGroupMembershipsForMemberCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListGroupMembershipsForMemberCommandInput extends ListGroupMembershipsForMemberRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListGroupMembershipsForMemberCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListGroupMembershipsForMemberCommandOutput extends ListGroupMembershipsForMemberResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>For the specified member in the specified identity store, returns the list of all <code>GroupMembership</code> objects and returns results in paginated form.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListGroupMembershipsForMemberCommandOutput extends ListGroupMem
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListGroupMembershipsForMemberCommandInput - {@link ListGroupMembershipsForMemberCommandInput}
|
|
34
|
+
* @returns {@link ListGroupMembershipsForMemberCommandOutput}
|
|
28
35
|
* @see {@link ListGroupMembershipsForMemberCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListGroupMembershipsForMemberCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link IdentitystoreClientResolvedConfig | config} for IdentitystoreClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface ListGroupMembershipsForMemberCommandOutput extends ListGroupMem
|
|
|
49
56
|
export declare class ListGroupMembershipsForMemberCommand extends $Command<ListGroupMembershipsForMemberCommandInput, ListGroupMembershipsForMemberCommandOutput, IdentitystoreClientResolvedConfig> {
|
|
50
57
|
readonly input: ListGroupMembershipsForMemberCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: ListGroupMembershipsForMemberCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IdentitystoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListGroupMembershipsForMemberCommandInput, ListGroupMembershipsForMemberCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
|
|
5
5
|
import { ListGroupsRequest, ListGroupsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListGroupsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListGroupsCommandInput extends ListGroupsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListGroupsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListGroupsCommandOutput extends ListGroupsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists all groups in the identity store. Returns a paginated list of complete <code>Group</code> objects.
|
|
18
23
|
* Filtering for a <code>Group</code> by the <code>DisplayName</code> attribute is deprecated. Instead, use the <code>GetGroupId</code> API action.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListGroupsCommandOutput extends ListGroupsResponse, __MetadataB
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListGroupsCommandInput - {@link ListGroupsCommandInput}
|
|
35
|
+
* @returns {@link ListGroupsCommandOutput}
|
|
29
36
|
* @see {@link ListGroupsCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListGroupsCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link IdentitystoreClientResolvedConfig | config} for IdentitystoreClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface ListGroupsCommandOutput extends ListGroupsResponse, __MetadataB
|
|
|
50
57
|
export declare class ListGroupsCommand extends $Command<ListGroupsCommandInput, ListGroupsCommandOutput, IdentitystoreClientResolvedConfig> {
|
|
51
58
|
readonly input: ListGroupsCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: ListGroupsCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IdentitystoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListGroupsCommandInput, ListGroupsCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
|
|
5
5
|
import { ListUsersRequest, ListUsersResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListUsersCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListUsersCommandInput extends ListUsersRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListUsersCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListUsersCommandOutput extends ListUsersResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists all users in the identity store. Returns a paginated list of complete <code>User</code> objects.
|
|
18
23
|
* Filtering for a <code>User</code> by the <code>UserName</code> attribute is deprecated. Instead, use the <code>GetUserId</code> API action.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListUsersCommandOutput extends ListUsersResponse, __MetadataBea
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListUsersCommandInput - {@link ListUsersCommandInput}
|
|
35
|
+
* @returns {@link ListUsersCommandOutput}
|
|
29
36
|
* @see {@link ListUsersCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListUsersCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link IdentitystoreClientResolvedConfig | config} for IdentitystoreClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface ListUsersCommandOutput extends ListUsersResponse, __MetadataBea
|
|
|
50
57
|
export declare class ListUsersCommand extends $Command<ListUsersCommandInput, ListUsersCommandOutput, IdentitystoreClientResolvedConfig> {
|
|
51
58
|
readonly input: ListUsersCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: ListUsersCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IdentitystoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListUsersCommandInput, ListUsersCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
|
|
5
5
|
import { UpdateGroupRequest, UpdateGroupResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateGroupCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateGroupCommandInput extends UpdateGroupRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateGroupCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateGroupCommandOutput extends UpdateGroupResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>For the specified group in the specified identity store, updates the group metadata and attributes.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface UpdateGroupCommandOutput extends UpdateGroupResponse, __Metadat
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateGroupCommandInput - {@link UpdateGroupCommandInput}
|
|
34
|
+
* @returns {@link UpdateGroupCommandOutput}
|
|
28
35
|
* @see {@link UpdateGroupCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateGroupCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link IdentitystoreClientResolvedConfig | config} for IdentitystoreClient's `config` shape.
|
|
@@ -63,11 +70,20 @@ export interface UpdateGroupCommandOutput extends UpdateGroupResponse, __Metadat
|
|
|
63
70
|
export declare class UpdateGroupCommand extends $Command<UpdateGroupCommandInput, UpdateGroupCommandOutput, IdentitystoreClientResolvedConfig> {
|
|
64
71
|
readonly input: UpdateGroupCommandInput;
|
|
65
72
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
66
76
|
constructor(input: UpdateGroupCommandInput);
|
|
67
77
|
/**
|
|
68
78
|
* @internal
|
|
69
79
|
*/
|
|
70
80
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IdentitystoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateGroupCommandInput, UpdateGroupCommandOutput>;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
71
84
|
private serialize;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
72
88
|
private deserialize;
|
|
73
89
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient";
|
|
5
5
|
import { UpdateUserRequest, UpdateUserResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateUserCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateUserCommandInput extends UpdateUserRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateUserCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateUserCommandOutput extends UpdateUserResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>For the specified user in the specified identity store, updates the user metadata and attributes.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface UpdateUserCommandOutput extends UpdateUserResponse, __MetadataB
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateUserCommandInput - {@link UpdateUserCommandInput}
|
|
34
|
+
* @returns {@link UpdateUserCommandOutput}
|
|
28
35
|
* @see {@link UpdateUserCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateUserCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link IdentitystoreClientResolvedConfig | config} for IdentitystoreClient's `config` shape.
|
|
@@ -63,11 +70,20 @@ export interface UpdateUserCommandOutput extends UpdateUserResponse, __MetadataB
|
|
|
63
70
|
export declare class UpdateUserCommand extends $Command<UpdateUserCommandInput, UpdateUserCommandOutput, IdentitystoreClientResolvedConfig> {
|
|
64
71
|
readonly input: UpdateUserCommandInput;
|
|
65
72
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
66
76
|
constructor(input: UpdateUserCommandInput);
|
|
67
77
|
/**
|
|
68
78
|
* @internal
|
|
69
79
|
*/
|
|
70
80
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IdentitystoreClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateUserCommandInput, UpdateUserCommandOutput>;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
71
84
|
private serialize;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
72
88
|
private deserialize;
|
|
73
89
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
2
|
/**
|
|
3
|
+
* @public
|
|
4
|
+
*
|
|
3
5
|
* Base exception class for all service exceptions from Identitystore service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class IdentitystoreServiceException extends __ServiceException {
|