@aws-sdk/client-identitystore 3.169.0 → 3.171.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/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/Identitystore.d.ts +327 -100
- package/dist-types/ts3.4/IdentitystoreClient.d.ts +219 -92
- package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CreateGroupMembershipCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateUserCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteGroupMembershipCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteUserCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DescribeGroupCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DescribeGroupMembershipCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeUserCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetGroupIdCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetGroupMembershipIdCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetUserIdCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/IsMemberInGroupsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListGroupMembershipsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListGroupMembershipsForMemberCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListUsersCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/index.d.ts +19 -19
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/IdentitystoreServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +525 -696
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListGroupMembershipsForMemberPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListGroupMembershipsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListGroupsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListUsersPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +5 -5
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +233 -59
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +34 -34
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
IdentitystoreClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IdentitystoreClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeGroupRequest,
|
|
15
|
+
DescribeGroupResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeGroupCommandInput extends DescribeGroupRequest {}
|
|
18
|
+
export interface DescribeGroupCommandOutput
|
|
19
|
+
extends DescribeGroupResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class DescribeGroupCommand extends $Command<
|
|
22
|
+
DescribeGroupCommandInput,
|
|
23
|
+
DescribeGroupCommandOutput,
|
|
24
|
+
IdentitystoreClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: DescribeGroupCommandInput;
|
|
27
|
+
constructor(input: DescribeGroupCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: IdentitystoreClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<DescribeGroupCommandInput, DescribeGroupCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
IdentitystoreClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IdentitystoreClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeGroupMembershipRequest,
|
|
15
|
+
DescribeGroupMembershipResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeGroupMembershipCommandInput
|
|
18
|
+
extends DescribeGroupMembershipRequest {}
|
|
19
|
+
export interface DescribeGroupMembershipCommandOutput
|
|
20
|
+
extends DescribeGroupMembershipResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeGroupMembershipCommand extends $Command<
|
|
23
|
+
DescribeGroupMembershipCommandInput,
|
|
24
|
+
DescribeGroupMembershipCommandOutput,
|
|
25
|
+
IdentitystoreClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeGroupMembershipCommandInput;
|
|
28
|
+
constructor(input: DescribeGroupMembershipCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: IdentitystoreClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DescribeGroupMembershipCommandInput,
|
|
35
|
+
DescribeGroupMembershipCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
IdentitystoreClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IdentitystoreClient";
|
|
13
|
+
import { DescribeUserRequest, DescribeUserResponse } from "../models/models_0";
|
|
14
|
+
export interface DescribeUserCommandInput extends DescribeUserRequest {}
|
|
15
|
+
export interface DescribeUserCommandOutput
|
|
16
|
+
extends DescribeUserResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class DescribeUserCommand extends $Command<
|
|
19
|
+
DescribeUserCommandInput,
|
|
20
|
+
DescribeUserCommandOutput,
|
|
21
|
+
IdentitystoreClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: DescribeUserCommandInput;
|
|
24
|
+
constructor(input: DescribeUserCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: IdentitystoreClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<DescribeUserCommandInput, DescribeUserCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
IdentitystoreClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IdentitystoreClient";
|
|
13
|
+
import { GetGroupIdRequest, GetGroupIdResponse } from "../models/models_0";
|
|
14
|
+
export interface GetGroupIdCommandInput extends GetGroupIdRequest {}
|
|
15
|
+
export interface GetGroupIdCommandOutput
|
|
16
|
+
extends GetGroupIdResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class GetGroupIdCommand extends $Command<
|
|
19
|
+
GetGroupIdCommandInput,
|
|
20
|
+
GetGroupIdCommandOutput,
|
|
21
|
+
IdentitystoreClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: GetGroupIdCommandInput;
|
|
24
|
+
constructor(input: GetGroupIdCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: IdentitystoreClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<GetGroupIdCommandInput, GetGroupIdCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
IdentitystoreClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IdentitystoreClient";
|
|
13
|
+
import {
|
|
14
|
+
GetGroupMembershipIdRequest,
|
|
15
|
+
GetGroupMembershipIdResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetGroupMembershipIdCommandInput
|
|
18
|
+
extends GetGroupMembershipIdRequest {}
|
|
19
|
+
export interface GetGroupMembershipIdCommandOutput
|
|
20
|
+
extends GetGroupMembershipIdResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class GetGroupMembershipIdCommand extends $Command<
|
|
23
|
+
GetGroupMembershipIdCommandInput,
|
|
24
|
+
GetGroupMembershipIdCommandOutput,
|
|
25
|
+
IdentitystoreClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetGroupMembershipIdCommandInput;
|
|
28
|
+
constructor(input: GetGroupMembershipIdCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: IdentitystoreClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
GetGroupMembershipIdCommandInput,
|
|
35
|
+
GetGroupMembershipIdCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
IdentitystoreClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IdentitystoreClient";
|
|
13
|
+
import { GetUserIdRequest, GetUserIdResponse } from "../models/models_0";
|
|
14
|
+
export interface GetUserIdCommandInput extends GetUserIdRequest {}
|
|
15
|
+
export interface GetUserIdCommandOutput
|
|
16
|
+
extends GetUserIdResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class GetUserIdCommand extends $Command<
|
|
19
|
+
GetUserIdCommandInput,
|
|
20
|
+
GetUserIdCommandOutput,
|
|
21
|
+
IdentitystoreClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: GetUserIdCommandInput;
|
|
24
|
+
constructor(input: GetUserIdCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: IdentitystoreClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<GetUserIdCommandInput, GetUserIdCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
IdentitystoreClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IdentitystoreClient";
|
|
13
|
+
import {
|
|
14
|
+
IsMemberInGroupsRequest,
|
|
15
|
+
IsMemberInGroupsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface IsMemberInGroupsCommandInput extends IsMemberInGroupsRequest {}
|
|
18
|
+
export interface IsMemberInGroupsCommandOutput
|
|
19
|
+
extends IsMemberInGroupsResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class IsMemberInGroupsCommand extends $Command<
|
|
22
|
+
IsMemberInGroupsCommandInput,
|
|
23
|
+
IsMemberInGroupsCommandOutput,
|
|
24
|
+
IdentitystoreClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: IsMemberInGroupsCommandInput;
|
|
27
|
+
constructor(input: IsMemberInGroupsCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: IdentitystoreClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<IsMemberInGroupsCommandInput, IsMemberInGroupsCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
IdentitystoreClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IdentitystoreClient";
|
|
13
|
+
import {
|
|
14
|
+
ListGroupMembershipsRequest,
|
|
15
|
+
ListGroupMembershipsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListGroupMembershipsCommandInput
|
|
18
|
+
extends ListGroupMembershipsRequest {}
|
|
19
|
+
export interface ListGroupMembershipsCommandOutput
|
|
20
|
+
extends ListGroupMembershipsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListGroupMembershipsCommand extends $Command<
|
|
23
|
+
ListGroupMembershipsCommandInput,
|
|
24
|
+
ListGroupMembershipsCommandOutput,
|
|
25
|
+
IdentitystoreClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListGroupMembershipsCommandInput;
|
|
28
|
+
constructor(input: ListGroupMembershipsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: IdentitystoreClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
ListGroupMembershipsCommandInput,
|
|
35
|
+
ListGroupMembershipsCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
IdentitystoreClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IdentitystoreClient";
|
|
13
|
+
import {
|
|
14
|
+
ListGroupMembershipsForMemberRequest,
|
|
15
|
+
ListGroupMembershipsForMemberResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListGroupMembershipsForMemberCommandInput
|
|
18
|
+
extends ListGroupMembershipsForMemberRequest {}
|
|
19
|
+
export interface ListGroupMembershipsForMemberCommandOutput
|
|
20
|
+
extends ListGroupMembershipsForMemberResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListGroupMembershipsForMemberCommand extends $Command<
|
|
23
|
+
ListGroupMembershipsForMemberCommandInput,
|
|
24
|
+
ListGroupMembershipsForMemberCommandOutput,
|
|
25
|
+
IdentitystoreClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListGroupMembershipsForMemberCommandInput;
|
|
28
|
+
constructor(input: ListGroupMembershipsForMemberCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: IdentitystoreClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
ListGroupMembershipsForMemberCommandInput,
|
|
35
|
+
ListGroupMembershipsForMemberCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
IdentitystoreClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IdentitystoreClient";
|
|
13
|
+
import { ListGroupsRequest, ListGroupsResponse } from "../models/models_0";
|
|
14
|
+
export interface ListGroupsCommandInput extends ListGroupsRequest {}
|
|
15
|
+
export interface ListGroupsCommandOutput
|
|
16
|
+
extends ListGroupsResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class ListGroupsCommand extends $Command<
|
|
19
|
+
ListGroupsCommandInput,
|
|
20
|
+
ListGroupsCommandOutput,
|
|
21
|
+
IdentitystoreClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: ListGroupsCommandInput;
|
|
24
|
+
constructor(input: ListGroupsCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: IdentitystoreClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<ListGroupsCommandInput, ListGroupsCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
IdentitystoreClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IdentitystoreClient";
|
|
13
|
+
import { ListUsersRequest, ListUsersResponse } from "../models/models_0";
|
|
14
|
+
export interface ListUsersCommandInput extends ListUsersRequest {}
|
|
15
|
+
export interface ListUsersCommandOutput
|
|
16
|
+
extends ListUsersResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class ListUsersCommand extends $Command<
|
|
19
|
+
ListUsersCommandInput,
|
|
20
|
+
ListUsersCommandOutput,
|
|
21
|
+
IdentitystoreClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: ListUsersCommandInput;
|
|
24
|
+
constructor(input: ListUsersCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: IdentitystoreClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<ListUsersCommandInput, ListUsersCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|