@aws-sdk/client-identitystore 3.161.0 → 3.162.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 +11 -0
- package/README.md +9 -18
- package/dist-cjs/Identitystore.js +225 -0
- package/dist-cjs/commands/CreateGroupCommand.js +36 -0
- package/dist-cjs/commands/CreateGroupMembershipCommand.js +36 -0
- package/dist-cjs/commands/CreateUserCommand.js +36 -0
- package/dist-cjs/commands/DeleteGroupCommand.js +36 -0
- package/dist-cjs/commands/DeleteGroupMembershipCommand.js +36 -0
- package/dist-cjs/commands/DeleteUserCommand.js +36 -0
- package/dist-cjs/commands/DescribeGroupMembershipCommand.js +36 -0
- package/dist-cjs/commands/GetGroupIdCommand.js +36 -0
- package/dist-cjs/commands/GetGroupMembershipIdCommand.js +36 -0
- package/dist-cjs/commands/GetUserIdCommand.js +36 -0
- package/dist-cjs/commands/IsMemberInGroupsCommand.js +36 -0
- package/dist-cjs/commands/ListGroupMembershipsCommand.js +36 -0
- package/dist-cjs/commands/ListGroupMembershipsForMemberCommand.js +36 -0
- package/dist-cjs/commands/UpdateGroupCommand.js +36 -0
- package/dist-cjs/commands/UpdateUserCommand.js +36 -0
- package/dist-cjs/commands/index.js +15 -0
- package/dist-cjs/models/models_0.js +360 -35
- package/dist-cjs/pagination/ListGroupMembershipsForMemberPaginator.js +36 -0
- package/dist-cjs/pagination/ListGroupMembershipsPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_json1_1.js +1475 -93
- package/dist-es/Identitystore.js +225 -0
- package/dist-es/commands/CreateGroupCommand.js +39 -0
- package/dist-es/commands/CreateGroupMembershipCommand.js +39 -0
- package/dist-es/commands/CreateUserCommand.js +39 -0
- package/dist-es/commands/DeleteGroupCommand.js +39 -0
- package/dist-es/commands/DeleteGroupMembershipCommand.js +39 -0
- package/dist-es/commands/DeleteUserCommand.js +39 -0
- package/dist-es/commands/DescribeGroupMembershipCommand.js +39 -0
- package/dist-es/commands/GetGroupIdCommand.js +39 -0
- package/dist-es/commands/GetGroupMembershipIdCommand.js +39 -0
- package/dist-es/commands/GetUserIdCommand.js +39 -0
- package/dist-es/commands/IsMemberInGroupsCommand.js +39 -0
- package/dist-es/commands/ListGroupMembershipsCommand.js +39 -0
- package/dist-es/commands/ListGroupMembershipsForMemberCommand.js +39 -0
- package/dist-es/commands/UpdateGroupCommand.js +39 -0
- package/dist-es/commands/UpdateUserCommand.js +39 -0
- package/dist-es/commands/index.js +15 -0
- package/dist-es/models/models_0.js +156 -34
- package/dist-es/pagination/ListGroupMembershipsForMemberPaginator.js +75 -0
- package/dist-es/pagination/ListGroupMembershipsPaginator.js +75 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_json1_1.js +1675 -50
- package/dist-types/Identitystore.d.ts +117 -23
- package/dist-types/IdentitystoreClient.d.ts +19 -13
- package/dist-types/commands/CreateGroupCommand.d.ts +35 -0
- package/dist-types/commands/CreateGroupMembershipCommand.d.ts +35 -0
- package/dist-types/commands/CreateUserCommand.d.ts +35 -0
- package/dist-types/commands/DeleteGroupCommand.d.ts +35 -0
- package/dist-types/commands/DeleteGroupMembershipCommand.d.ts +35 -0
- package/dist-types/commands/DeleteUserCommand.d.ts +35 -0
- package/dist-types/commands/DescribeGroupCommand.d.ts +1 -2
- package/dist-types/commands/DescribeGroupMembershipCommand.d.ts +35 -0
- package/dist-types/commands/DescribeUserCommand.d.ts +1 -2
- package/dist-types/commands/GetGroupIdCommand.d.ts +35 -0
- package/dist-types/commands/GetGroupMembershipIdCommand.d.ts +35 -0
- package/dist-types/commands/GetUserIdCommand.d.ts +35 -0
- package/dist-types/commands/IsMemberInGroupsCommand.d.ts +35 -0
- package/dist-types/commands/ListGroupMembershipsCommand.d.ts +35 -0
- package/dist-types/commands/ListGroupMembershipsForMemberCommand.d.ts +35 -0
- package/dist-types/commands/ListGroupsCommand.d.ts +4 -4
- package/dist-types/commands/ListUsersCommand.d.ts +4 -4
- package/dist-types/commands/UpdateGroupCommand.d.ts +35 -0
- package/dist-types/commands/UpdateUserCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +15 -0
- package/dist-types/models/models_0.d.ts +1097 -127
- package/dist-types/pagination/ListGroupMembershipsForMemberPaginator.d.ts +4 -0
- package/dist-types/pagination/ListGroupMembershipsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +45 -0
- package/dist-types/ts3.4/Identitystore.d.ts +75 -0
- package/dist-types/ts3.4/IdentitystoreClient.d.ts +17 -2
- package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateGroupMembershipCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateUserCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteGroupMembershipCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteUserCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeGroupMembershipCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetGroupIdCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetGroupMembershipIdCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetUserIdCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/IsMemberInGroupsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListGroupMembershipsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListGroupMembershipsForMemberCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +15 -0
- package/dist-types/ts3.4/models/models_0.d.ts +565 -29
- package/dist-types/ts3.4/pagination/ListGroupMembershipsForMemberPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListGroupMembershipsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +45 -0
- package/package.json +26 -26
|
@@ -1,14 +1,59 @@
|
|
|
1
1
|
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
|
+
import { CreateGroupCommandInput, CreateGroupCommandOutput } from "../commands/CreateGroupCommand";
|
|
4
|
+
import { CreateGroupMembershipCommandInput, CreateGroupMembershipCommandOutput } from "../commands/CreateGroupMembershipCommand";
|
|
5
|
+
import { CreateUserCommandInput, CreateUserCommandOutput } from "../commands/CreateUserCommand";
|
|
6
|
+
import { DeleteGroupCommandInput, DeleteGroupCommandOutput } from "../commands/DeleteGroupCommand";
|
|
7
|
+
import { DeleteGroupMembershipCommandInput, DeleteGroupMembershipCommandOutput } from "../commands/DeleteGroupMembershipCommand";
|
|
8
|
+
import { DeleteUserCommandInput, DeleteUserCommandOutput } from "../commands/DeleteUserCommand";
|
|
3
9
|
import { DescribeGroupCommandInput, DescribeGroupCommandOutput } from "../commands/DescribeGroupCommand";
|
|
10
|
+
import { DescribeGroupMembershipCommandInput, DescribeGroupMembershipCommandOutput } from "../commands/DescribeGroupMembershipCommand";
|
|
4
11
|
import { DescribeUserCommandInput, DescribeUserCommandOutput } from "../commands/DescribeUserCommand";
|
|
12
|
+
import { GetGroupIdCommandInput, GetGroupIdCommandOutput } from "../commands/GetGroupIdCommand";
|
|
13
|
+
import { GetGroupMembershipIdCommandInput, GetGroupMembershipIdCommandOutput } from "../commands/GetGroupMembershipIdCommand";
|
|
14
|
+
import { GetUserIdCommandInput, GetUserIdCommandOutput } from "../commands/GetUserIdCommand";
|
|
15
|
+
import { IsMemberInGroupsCommandInput, IsMemberInGroupsCommandOutput } from "../commands/IsMemberInGroupsCommand";
|
|
16
|
+
import { ListGroupMembershipsCommandInput, ListGroupMembershipsCommandOutput } from "../commands/ListGroupMembershipsCommand";
|
|
17
|
+
import { ListGroupMembershipsForMemberCommandInput, ListGroupMembershipsForMemberCommandOutput } from "../commands/ListGroupMembershipsForMemberCommand";
|
|
5
18
|
import { ListGroupsCommandInput, ListGroupsCommandOutput } from "../commands/ListGroupsCommand";
|
|
6
19
|
import { ListUsersCommandInput, ListUsersCommandOutput } from "../commands/ListUsersCommand";
|
|
20
|
+
import { UpdateGroupCommandInput, UpdateGroupCommandOutput } from "../commands/UpdateGroupCommand";
|
|
21
|
+
import { UpdateUserCommandInput, UpdateUserCommandOutput } from "../commands/UpdateUserCommand";
|
|
22
|
+
export declare const serializeAws_json1_1CreateGroupCommand: (input: CreateGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
23
|
+
export declare const serializeAws_json1_1CreateGroupMembershipCommand: (input: CreateGroupMembershipCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
24
|
+
export declare const serializeAws_json1_1CreateUserCommand: (input: CreateUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
25
|
+
export declare const serializeAws_json1_1DeleteGroupCommand: (input: DeleteGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
26
|
+
export declare const serializeAws_json1_1DeleteGroupMembershipCommand: (input: DeleteGroupMembershipCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
27
|
+
export declare const serializeAws_json1_1DeleteUserCommand: (input: DeleteUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
7
28
|
export declare const serializeAws_json1_1DescribeGroupCommand: (input: DescribeGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
29
|
+
export declare const serializeAws_json1_1DescribeGroupMembershipCommand: (input: DescribeGroupMembershipCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
8
30
|
export declare const serializeAws_json1_1DescribeUserCommand: (input: DescribeUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
31
|
+
export declare const serializeAws_json1_1GetGroupIdCommand: (input: GetGroupIdCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
32
|
+
export declare const serializeAws_json1_1GetGroupMembershipIdCommand: (input: GetGroupMembershipIdCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
33
|
+
export declare const serializeAws_json1_1GetUserIdCommand: (input: GetUserIdCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
34
|
+
export declare const serializeAws_json1_1IsMemberInGroupsCommand: (input: IsMemberInGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
35
|
+
export declare const serializeAws_json1_1ListGroupMembershipsCommand: (input: ListGroupMembershipsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
36
|
+
export declare const serializeAws_json1_1ListGroupMembershipsForMemberCommand: (input: ListGroupMembershipsForMemberCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
9
37
|
export declare const serializeAws_json1_1ListGroupsCommand: (input: ListGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
10
38
|
export declare const serializeAws_json1_1ListUsersCommand: (input: ListUsersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
39
|
+
export declare const serializeAws_json1_1UpdateGroupCommand: (input: UpdateGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
40
|
+
export declare const serializeAws_json1_1UpdateUserCommand: (input: UpdateUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
|
+
export declare const deserializeAws_json1_1CreateGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateGroupCommandOutput>;
|
|
42
|
+
export declare const deserializeAws_json1_1CreateGroupMembershipCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateGroupMembershipCommandOutput>;
|
|
43
|
+
export declare const deserializeAws_json1_1CreateUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateUserCommandOutput>;
|
|
44
|
+
export declare const deserializeAws_json1_1DeleteGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteGroupCommandOutput>;
|
|
45
|
+
export declare const deserializeAws_json1_1DeleteGroupMembershipCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteGroupMembershipCommandOutput>;
|
|
46
|
+
export declare const deserializeAws_json1_1DeleteUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteUserCommandOutput>;
|
|
11
47
|
export declare const deserializeAws_json1_1DescribeGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeGroupCommandOutput>;
|
|
48
|
+
export declare const deserializeAws_json1_1DescribeGroupMembershipCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeGroupMembershipCommandOutput>;
|
|
12
49
|
export declare const deserializeAws_json1_1DescribeUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeUserCommandOutput>;
|
|
50
|
+
export declare const deserializeAws_json1_1GetGroupIdCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetGroupIdCommandOutput>;
|
|
51
|
+
export declare const deserializeAws_json1_1GetGroupMembershipIdCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetGroupMembershipIdCommandOutput>;
|
|
52
|
+
export declare const deserializeAws_json1_1GetUserIdCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetUserIdCommandOutput>;
|
|
53
|
+
export declare const deserializeAws_json1_1IsMemberInGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<IsMemberInGroupsCommandOutput>;
|
|
54
|
+
export declare const deserializeAws_json1_1ListGroupMembershipsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListGroupMembershipsCommandOutput>;
|
|
55
|
+
export declare const deserializeAws_json1_1ListGroupMembershipsForMemberCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListGroupMembershipsForMemberCommandOutput>;
|
|
13
56
|
export declare const deserializeAws_json1_1ListGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListGroupsCommandOutput>;
|
|
14
57
|
export declare const deserializeAws_json1_1ListUsersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListUsersCommandOutput>;
|
|
58
|
+
export declare const deserializeAws_json1_1UpdateGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateGroupCommandOutput>;
|
|
59
|
+
export declare const deserializeAws_json1_1UpdateUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateUserCommandOutput>;
|
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.162.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",
|
|
@@ -18,35 +18,35 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
31
|
-
"@aws-sdk/middleware-retry": "3.
|
|
32
|
-
"@aws-sdk/middleware-serde": "3.
|
|
33
|
-
"@aws-sdk/middleware-signing": "3.
|
|
34
|
-
"@aws-sdk/middleware-stack": "3.
|
|
35
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
36
|
-
"@aws-sdk/node-config-provider": "3.
|
|
37
|
-
"@aws-sdk/node-http-handler": "3.
|
|
38
|
-
"@aws-sdk/protocol-http": "3.
|
|
39
|
-
"@aws-sdk/smithy-client": "3.
|
|
40
|
-
"@aws-sdk/types": "3.
|
|
41
|
-
"@aws-sdk/url-parser": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.162.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.162.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.162.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.162.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.162.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.162.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.162.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.162.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.162.0",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "3.162.0",
|
|
31
|
+
"@aws-sdk/middleware-retry": "3.162.0",
|
|
32
|
+
"@aws-sdk/middleware-serde": "3.162.0",
|
|
33
|
+
"@aws-sdk/middleware-signing": "3.162.0",
|
|
34
|
+
"@aws-sdk/middleware-stack": "3.162.0",
|
|
35
|
+
"@aws-sdk/middleware-user-agent": "3.162.0",
|
|
36
|
+
"@aws-sdk/node-config-provider": "3.162.0",
|
|
37
|
+
"@aws-sdk/node-http-handler": "3.162.0",
|
|
38
|
+
"@aws-sdk/protocol-http": "3.162.0",
|
|
39
|
+
"@aws-sdk/smithy-client": "3.162.0",
|
|
40
|
+
"@aws-sdk/types": "3.162.0",
|
|
41
|
+
"@aws-sdk/url-parser": "3.162.0",
|
|
42
42
|
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
43
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
44
44
|
"@aws-sdk/util-body-length-browser": "3.154.0",
|
|
45
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.162.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.162.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-browser": "3.162.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-node": "3.162.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.109.0",
|
|
51
51
|
"@aws-sdk/util-utf8-node": "3.109.0",
|
|
52
52
|
"tslib": "^2.3.1"
|