@aws-sdk/client-identitystore 3.168.0 → 3.170.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 +346 -100
- package/dist-types/ts3.4/IdentitystoreClient.d.ts +244 -92
- package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateGroupMembershipCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateUserCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteGroupMembershipCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteUserCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DescribeGroupCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeGroupMembershipCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeUserCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetGroupIdCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetGroupMembershipIdCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetUserIdCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/IsMemberInGroupsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListGroupMembershipsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListGroupMembershipsForMemberCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListUsersCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +34 -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 +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +739 -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 +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,17 +1,34 @@
|
|
|
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
|
+
|
|
19
|
+
export declare class ListUsersCommand extends $Command<
|
|
20
|
+
ListUsersCommandInput,
|
|
21
|
+
ListUsersCommandOutput,
|
|
22
|
+
IdentitystoreClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: ListUsersCommandInput;
|
|
25
|
+
constructor(input: ListUsersCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: IdentitystoreClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<ListUsersCommandInput, ListUsersCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
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 { UpdateGroupRequest, UpdateGroupResponse } from "../models/models_0";
|
|
14
|
+
export interface UpdateGroupCommandInput extends UpdateGroupRequest {}
|
|
15
|
+
export interface UpdateGroupCommandOutput
|
|
16
|
+
extends UpdateGroupResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class UpdateGroupCommand extends $Command<
|
|
20
|
+
UpdateGroupCommandInput,
|
|
21
|
+
UpdateGroupCommandOutput,
|
|
22
|
+
IdentitystoreClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: UpdateGroupCommandInput;
|
|
25
|
+
constructor(input: UpdateGroupCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: IdentitystoreClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<UpdateGroupCommandInput, UpdateGroupCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
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 { UpdateUserRequest, UpdateUserResponse } from "../models/models_0";
|
|
14
|
+
export interface UpdateUserCommandInput extends UpdateUserRequest {}
|
|
15
|
+
export interface UpdateUserCommandOutput
|
|
16
|
+
extends UpdateUserResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class UpdateUserCommand extends $Command<
|
|
20
|
+
UpdateUserCommandInput,
|
|
21
|
+
UpdateUserCommandOutput,
|
|
22
|
+
IdentitystoreClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: UpdateUserCommandInput;
|
|
25
|
+
constructor(input: UpdateUserCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: IdentitystoreClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<UpdateUserCommandInput, UpdateUserCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
export * from "./CreateGroupCommand";
|
|
2
|
-
export * from "./CreateGroupMembershipCommand";
|
|
3
|
-
export * from "./CreateUserCommand";
|
|
4
|
-
export * from "./DeleteGroupCommand";
|
|
5
|
-
export * from "./DeleteGroupMembershipCommand";
|
|
6
|
-
export * from "./DeleteUserCommand";
|
|
7
|
-
export * from "./DescribeGroupCommand";
|
|
8
|
-
export * from "./DescribeGroupMembershipCommand";
|
|
9
|
-
export * from "./DescribeUserCommand";
|
|
10
|
-
export * from "./GetGroupIdCommand";
|
|
11
|
-
export * from "./GetGroupMembershipIdCommand";
|
|
12
|
-
export * from "./GetUserIdCommand";
|
|
13
|
-
export * from "./IsMemberInGroupsCommand";
|
|
14
|
-
export * from "./ListGroupMembershipsCommand";
|
|
15
|
-
export * from "./ListGroupMembershipsForMemberCommand";
|
|
16
|
-
export * from "./ListGroupsCommand";
|
|
17
|
-
export * from "./ListUsersCommand";
|
|
18
|
-
export * from "./UpdateGroupCommand";
|
|
19
|
-
export * from "./UpdateUserCommand";
|
|
1
|
+
export * from "./CreateGroupCommand";
|
|
2
|
+
export * from "./CreateGroupMembershipCommand";
|
|
3
|
+
export * from "./CreateUserCommand";
|
|
4
|
+
export * from "./DeleteGroupCommand";
|
|
5
|
+
export * from "./DeleteGroupMembershipCommand";
|
|
6
|
+
export * from "./DeleteUserCommand";
|
|
7
|
+
export * from "./DescribeGroupCommand";
|
|
8
|
+
export * from "./DescribeGroupMembershipCommand";
|
|
9
|
+
export * from "./DescribeUserCommand";
|
|
10
|
+
export * from "./GetGroupIdCommand";
|
|
11
|
+
export * from "./GetGroupMembershipIdCommand";
|
|
12
|
+
export * from "./GetUserIdCommand";
|
|
13
|
+
export * from "./IsMemberInGroupsCommand";
|
|
14
|
+
export * from "./ListGroupMembershipsCommand";
|
|
15
|
+
export * from "./ListGroupMembershipsForMemberCommand";
|
|
16
|
+
export * from "./ListGroupsCommand";
|
|
17
|
+
export * from "./ListUsersCommand";
|
|
18
|
+
export * from "./UpdateGroupCommand";
|
|
19
|
+
export * from "./UpdateUserCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "./Identitystore";
|
|
2
|
-
export * from "./IdentitystoreClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export * from "./pagination";
|
|
6
|
-
export { IdentitystoreServiceException } from "./models/IdentitystoreServiceException";
|
|
1
|
+
export * from "./Identitystore";
|
|
2
|
+
export * from "./IdentitystoreClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
6
|
+
export { IdentitystoreServiceException } from "./models/IdentitystoreServiceException";
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
|
|
6
|
+
export declare class IdentitystoreServiceException extends __ServiceException {
|
|
7
|
+
constructor(options: __ServiceExceptionOptions);
|
|
8
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|