@aws-sdk/client-identitystore 3.312.0 → 3.316.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-cjs/Identitystore.js +23 -266
- package/dist-cjs/protocols/Aws_json1_1.js +105 -674
- package/dist-es/Identitystore.js +23 -266
- package/dist-es/protocols/Aws_json1_1.js +107 -676
- package/dist-types/Identitystore.d.ts +37 -57
- package/dist-types/ts3.4/Identitystore.d.ts +4 -1
- package/package.json +6 -6
|
@@ -19,156 +19,136 @@ import { ListUsersCommandInput, ListUsersCommandOutput } from "./commands/ListUs
|
|
|
19
19
|
import { UpdateGroupCommandInput, UpdateGroupCommandOutput } from "./commands/UpdateGroupCommand";
|
|
20
20
|
import { UpdateUserCommandInput, UpdateUserCommandOutput } from "./commands/UpdateUserCommand";
|
|
21
21
|
import { IdentitystoreClient } from "./IdentitystoreClient";
|
|
22
|
-
|
|
23
|
-
* @public
|
|
24
|
-
* <p>The Identity Store service used by AWS IAM Identity Center (successor to AWS Single Sign-On) provides a single place to retrieve all of
|
|
25
|
-
* your identities (users and groups). For more information, see the <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html">IAM Identity Center User
|
|
26
|
-
* Guide</a>.</p>
|
|
27
|
-
*
|
|
28
|
-
* <note>
|
|
29
|
-
* <p>Although AWS Single Sign-On was renamed, the <code>sso</code> and
|
|
30
|
-
* <code>identitystore</code> API namespaces will continue to retain their original name for
|
|
31
|
-
* backward compatibility purposes. For more information, see <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html#renamed">IAM Identity Center rename</a>.</p>
|
|
32
|
-
* </note>
|
|
33
|
-
*
|
|
34
|
-
* <p>This reference guide describes the identity store operations that you can call
|
|
35
|
-
* programatically and includes detailed information about data types and errors.</p>
|
|
36
|
-
*/
|
|
37
|
-
export declare class Identitystore extends IdentitystoreClient {
|
|
22
|
+
export interface Identitystore {
|
|
38
23
|
/**
|
|
39
|
-
* @
|
|
40
|
-
* <p>Creates a group within the specified identity store.</p>
|
|
24
|
+
* @see {@link CreateGroupCommand}
|
|
41
25
|
*/
|
|
42
26
|
createGroup(args: CreateGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateGroupCommandOutput>;
|
|
43
27
|
createGroup(args: CreateGroupCommandInput, cb: (err: any, data?: CreateGroupCommandOutput) => void): void;
|
|
44
28
|
createGroup(args: CreateGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateGroupCommandOutput) => void): void;
|
|
45
29
|
/**
|
|
46
|
-
* @
|
|
47
|
-
* <p>Creates a relationship between a member and a group. The following identifiers must be specified: <code>GroupId</code>, <code>IdentityStoreId</code>, and <code>MemberId</code>.</p>
|
|
30
|
+
* @see {@link CreateGroupMembershipCommand}
|
|
48
31
|
*/
|
|
49
32
|
createGroupMembership(args: CreateGroupMembershipCommandInput, options?: __HttpHandlerOptions): Promise<CreateGroupMembershipCommandOutput>;
|
|
50
33
|
createGroupMembership(args: CreateGroupMembershipCommandInput, cb: (err: any, data?: CreateGroupMembershipCommandOutput) => void): void;
|
|
51
34
|
createGroupMembership(args: CreateGroupMembershipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateGroupMembershipCommandOutput) => void): void;
|
|
52
35
|
/**
|
|
53
|
-
* @
|
|
54
|
-
* <p>Creates a user within the specified identity store.</p>
|
|
36
|
+
* @see {@link CreateUserCommand}
|
|
55
37
|
*/
|
|
56
38
|
createUser(args: CreateUserCommandInput, options?: __HttpHandlerOptions): Promise<CreateUserCommandOutput>;
|
|
57
39
|
createUser(args: CreateUserCommandInput, cb: (err: any, data?: CreateUserCommandOutput) => void): void;
|
|
58
40
|
createUser(args: CreateUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateUserCommandOutput) => void): void;
|
|
59
41
|
/**
|
|
60
|
-
* @
|
|
61
|
-
* <p>Delete a group within an identity store given <code>GroupId</code>.</p>
|
|
42
|
+
* @see {@link DeleteGroupCommand}
|
|
62
43
|
*/
|
|
63
44
|
deleteGroup(args: DeleteGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteGroupCommandOutput>;
|
|
64
45
|
deleteGroup(args: DeleteGroupCommandInput, cb: (err: any, data?: DeleteGroupCommandOutput) => void): void;
|
|
65
46
|
deleteGroup(args: DeleteGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteGroupCommandOutput) => void): void;
|
|
66
47
|
/**
|
|
67
|
-
* @
|
|
68
|
-
* <p>Delete a membership within a group given <code>MembershipId</code>.</p>
|
|
48
|
+
* @see {@link DeleteGroupMembershipCommand}
|
|
69
49
|
*/
|
|
70
50
|
deleteGroupMembership(args: DeleteGroupMembershipCommandInput, options?: __HttpHandlerOptions): Promise<DeleteGroupMembershipCommandOutput>;
|
|
71
51
|
deleteGroupMembership(args: DeleteGroupMembershipCommandInput, cb: (err: any, data?: DeleteGroupMembershipCommandOutput) => void): void;
|
|
72
52
|
deleteGroupMembership(args: DeleteGroupMembershipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteGroupMembershipCommandOutput) => void): void;
|
|
73
53
|
/**
|
|
74
|
-
* @
|
|
75
|
-
* <p>Deletes a user within an identity store given <code>UserId</code>.</p>
|
|
54
|
+
* @see {@link DeleteUserCommand}
|
|
76
55
|
*/
|
|
77
56
|
deleteUser(args: DeleteUserCommandInput, options?: __HttpHandlerOptions): Promise<DeleteUserCommandOutput>;
|
|
78
57
|
deleteUser(args: DeleteUserCommandInput, cb: (err: any, data?: DeleteUserCommandOutput) => void): void;
|
|
79
58
|
deleteUser(args: DeleteUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteUserCommandOutput) => void): void;
|
|
80
59
|
/**
|
|
81
|
-
* @
|
|
82
|
-
* <p>Retrieves the group metadata and attributes from <code>GroupId</code> in an identity
|
|
83
|
-
* store.</p>
|
|
60
|
+
* @see {@link DescribeGroupCommand}
|
|
84
61
|
*/
|
|
85
62
|
describeGroup(args: DescribeGroupCommandInput, options?: __HttpHandlerOptions): Promise<DescribeGroupCommandOutput>;
|
|
86
63
|
describeGroup(args: DescribeGroupCommandInput, cb: (err: any, data?: DescribeGroupCommandOutput) => void): void;
|
|
87
64
|
describeGroup(args: DescribeGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeGroupCommandOutput) => void): void;
|
|
88
65
|
/**
|
|
89
|
-
* @
|
|
90
|
-
* <p>Retrieves membership metadata and attributes from <code>MembershipId</code> in an identity store.</p>
|
|
66
|
+
* @see {@link DescribeGroupMembershipCommand}
|
|
91
67
|
*/
|
|
92
68
|
describeGroupMembership(args: DescribeGroupMembershipCommandInput, options?: __HttpHandlerOptions): Promise<DescribeGroupMembershipCommandOutput>;
|
|
93
69
|
describeGroupMembership(args: DescribeGroupMembershipCommandInput, cb: (err: any, data?: DescribeGroupMembershipCommandOutput) => void): void;
|
|
94
70
|
describeGroupMembership(args: DescribeGroupMembershipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeGroupMembershipCommandOutput) => void): void;
|
|
95
71
|
/**
|
|
96
|
-
* @
|
|
97
|
-
* <p>Retrieves the user metadata and attributes from the <code>UserId</code> in an identity store.</p>
|
|
72
|
+
* @see {@link DescribeUserCommand}
|
|
98
73
|
*/
|
|
99
74
|
describeUser(args: DescribeUserCommandInput, options?: __HttpHandlerOptions): Promise<DescribeUserCommandOutput>;
|
|
100
75
|
describeUser(args: DescribeUserCommandInput, cb: (err: any, data?: DescribeUserCommandOutput) => void): void;
|
|
101
76
|
describeUser(args: DescribeUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeUserCommandOutput) => void): void;
|
|
102
77
|
/**
|
|
103
|
-
* @
|
|
104
|
-
* <p>Retrieves <code>GroupId</code> in an identity store.</p>
|
|
78
|
+
* @see {@link GetGroupIdCommand}
|
|
105
79
|
*/
|
|
106
80
|
getGroupId(args: GetGroupIdCommandInput, options?: __HttpHandlerOptions): Promise<GetGroupIdCommandOutput>;
|
|
107
81
|
getGroupId(args: GetGroupIdCommandInput, cb: (err: any, data?: GetGroupIdCommandOutput) => void): void;
|
|
108
82
|
getGroupId(args: GetGroupIdCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetGroupIdCommandOutput) => void): void;
|
|
109
83
|
/**
|
|
110
|
-
* @
|
|
111
|
-
* <p>Retrieves the <code>MembershipId</code> in an identity store.</p>
|
|
84
|
+
* @see {@link GetGroupMembershipIdCommand}
|
|
112
85
|
*/
|
|
113
86
|
getGroupMembershipId(args: GetGroupMembershipIdCommandInput, options?: __HttpHandlerOptions): Promise<GetGroupMembershipIdCommandOutput>;
|
|
114
87
|
getGroupMembershipId(args: GetGroupMembershipIdCommandInput, cb: (err: any, data?: GetGroupMembershipIdCommandOutput) => void): void;
|
|
115
88
|
getGroupMembershipId(args: GetGroupMembershipIdCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetGroupMembershipIdCommandOutput) => void): void;
|
|
116
89
|
/**
|
|
117
|
-
* @
|
|
118
|
-
* <p>Retrieves the <code>UserId</code> in an identity store.</p>
|
|
90
|
+
* @see {@link GetUserIdCommand}
|
|
119
91
|
*/
|
|
120
92
|
getUserId(args: GetUserIdCommandInput, options?: __HttpHandlerOptions): Promise<GetUserIdCommandOutput>;
|
|
121
93
|
getUserId(args: GetUserIdCommandInput, cb: (err: any, data?: GetUserIdCommandOutput) => void): void;
|
|
122
94
|
getUserId(args: GetUserIdCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetUserIdCommandOutput) => void): void;
|
|
123
95
|
/**
|
|
124
|
-
* @
|
|
125
|
-
* <p>Checks the user's membership in all requested groups and returns if the member exists in all queried groups.</p>
|
|
96
|
+
* @see {@link IsMemberInGroupsCommand}
|
|
126
97
|
*/
|
|
127
98
|
isMemberInGroups(args: IsMemberInGroupsCommandInput, options?: __HttpHandlerOptions): Promise<IsMemberInGroupsCommandOutput>;
|
|
128
99
|
isMemberInGroups(args: IsMemberInGroupsCommandInput, cb: (err: any, data?: IsMemberInGroupsCommandOutput) => void): void;
|
|
129
100
|
isMemberInGroups(args: IsMemberInGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: IsMemberInGroupsCommandOutput) => void): void;
|
|
130
101
|
/**
|
|
131
|
-
* @
|
|
132
|
-
* <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>
|
|
102
|
+
* @see {@link ListGroupMembershipsCommand}
|
|
133
103
|
*/
|
|
134
104
|
listGroupMemberships(args: ListGroupMembershipsCommandInput, options?: __HttpHandlerOptions): Promise<ListGroupMembershipsCommandOutput>;
|
|
135
105
|
listGroupMemberships(args: ListGroupMembershipsCommandInput, cb: (err: any, data?: ListGroupMembershipsCommandOutput) => void): void;
|
|
136
106
|
listGroupMemberships(args: ListGroupMembershipsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListGroupMembershipsCommandOutput) => void): void;
|
|
137
107
|
/**
|
|
138
|
-
* @
|
|
139
|
-
* <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>
|
|
108
|
+
* @see {@link ListGroupMembershipsForMemberCommand}
|
|
140
109
|
*/
|
|
141
110
|
listGroupMembershipsForMember(args: ListGroupMembershipsForMemberCommandInput, options?: __HttpHandlerOptions): Promise<ListGroupMembershipsForMemberCommandOutput>;
|
|
142
111
|
listGroupMembershipsForMember(args: ListGroupMembershipsForMemberCommandInput, cb: (err: any, data?: ListGroupMembershipsForMemberCommandOutput) => void): void;
|
|
143
112
|
listGroupMembershipsForMember(args: ListGroupMembershipsForMemberCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListGroupMembershipsForMemberCommandOutput) => void): void;
|
|
144
113
|
/**
|
|
145
|
-
* @
|
|
146
|
-
* <p>Lists all groups in the identity store. Returns a paginated list of complete <code>Group</code> objects.
|
|
147
|
-
* Filtering for a <code>Group</code> by the <code>DisplayName</code> attribute is deprecated. Instead, use the <code>GetGroupId</code> API action.</p>
|
|
114
|
+
* @see {@link ListGroupsCommand}
|
|
148
115
|
*/
|
|
149
116
|
listGroups(args: ListGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListGroupsCommandOutput>;
|
|
150
117
|
listGroups(args: ListGroupsCommandInput, cb: (err: any, data?: ListGroupsCommandOutput) => void): void;
|
|
151
118
|
listGroups(args: ListGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListGroupsCommandOutput) => void): void;
|
|
152
119
|
/**
|
|
153
|
-
* @
|
|
154
|
-
* <p>Lists all users in the identity store. Returns a paginated list of complete <code>User</code> objects.
|
|
155
|
-
* Filtering for a <code>User</code> by the <code>UserName</code> attribute is deprecated. Instead, use the <code>GetUserId</code> API action.</p>
|
|
120
|
+
* @see {@link ListUsersCommand}
|
|
156
121
|
*/
|
|
157
122
|
listUsers(args: ListUsersCommandInput, options?: __HttpHandlerOptions): Promise<ListUsersCommandOutput>;
|
|
158
123
|
listUsers(args: ListUsersCommandInput, cb: (err: any, data?: ListUsersCommandOutput) => void): void;
|
|
159
124
|
listUsers(args: ListUsersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListUsersCommandOutput) => void): void;
|
|
160
125
|
/**
|
|
161
|
-
* @
|
|
162
|
-
* <p>For the specified group in the specified identity store, updates the group metadata and attributes.</p>
|
|
126
|
+
* @see {@link UpdateGroupCommand}
|
|
163
127
|
*/
|
|
164
128
|
updateGroup(args: UpdateGroupCommandInput, options?: __HttpHandlerOptions): Promise<UpdateGroupCommandOutput>;
|
|
165
129
|
updateGroup(args: UpdateGroupCommandInput, cb: (err: any, data?: UpdateGroupCommandOutput) => void): void;
|
|
166
130
|
updateGroup(args: UpdateGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateGroupCommandOutput) => void): void;
|
|
167
131
|
/**
|
|
168
|
-
* @
|
|
169
|
-
* <p>For the specified user in the specified identity store, updates the user metadata and attributes.</p>
|
|
132
|
+
* @see {@link UpdateUserCommand}
|
|
170
133
|
*/
|
|
171
134
|
updateUser(args: UpdateUserCommandInput, options?: __HttpHandlerOptions): Promise<UpdateUserCommandOutput>;
|
|
172
135
|
updateUser(args: UpdateUserCommandInput, cb: (err: any, data?: UpdateUserCommandOutput) => void): void;
|
|
173
136
|
updateUser(args: UpdateUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateUserCommandOutput) => void): void;
|
|
174
137
|
}
|
|
138
|
+
/**
|
|
139
|
+
* @public
|
|
140
|
+
* <p>The Identity Store service used by AWS IAM Identity Center (successor to AWS Single Sign-On) provides a single place to retrieve all of
|
|
141
|
+
* your identities (users and groups). For more information, see the <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html">IAM Identity Center User
|
|
142
|
+
* Guide</a>.</p>
|
|
143
|
+
*
|
|
144
|
+
* <note>
|
|
145
|
+
* <p>Although AWS Single Sign-On was renamed, the <code>sso</code> and
|
|
146
|
+
* <code>identitystore</code> API namespaces will continue to retain their original name for
|
|
147
|
+
* backward compatibility purposes. For more information, see <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html#renamed">IAM Identity Center rename</a>.</p>
|
|
148
|
+
* </note>
|
|
149
|
+
*
|
|
150
|
+
* <p>This reference guide describes the identity store operations that you can call
|
|
151
|
+
* programatically and includes detailed information about data types and errors.</p>
|
|
152
|
+
*/
|
|
153
|
+
export declare class Identitystore extends IdentitystoreClient implements Identitystore {
|
|
154
|
+
}
|
|
@@ -76,7 +76,7 @@ import {
|
|
|
76
76
|
UpdateUserCommandOutput,
|
|
77
77
|
} from "./commands/UpdateUserCommand";
|
|
78
78
|
import { IdentitystoreClient } from "./IdentitystoreClient";
|
|
79
|
-
export
|
|
79
|
+
export interface Identitystore {
|
|
80
80
|
createGroup(
|
|
81
81
|
args: CreateGroupCommandInput,
|
|
82
82
|
options?: __HttpHandlerOptions
|
|
@@ -325,3 +325,6 @@ export declare class Identitystore extends IdentitystoreClient {
|
|
|
325
325
|
cb: (err: any, data?: UpdateUserCommandOutput) => void
|
|
326
326
|
): void;
|
|
327
327
|
}
|
|
328
|
+
export declare class Identitystore
|
|
329
|
+
extends IdentitystoreClient
|
|
330
|
+
implements Identitystore {}
|
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.316.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.316.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.316.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",
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.310.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.316.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.316.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.316.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.310.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|