@aws-sdk/client-identitystore 3.170.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 +8 -0
- package/dist-types/ts3.4/Identitystore.d.ts +0 -19
- package/dist-types/ts3.4/IdentitystoreClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateGroupMembershipCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateUserCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteGroupMembershipCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteUserCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeGroupCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeGroupMembershipCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeUserCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetGroupIdCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetGroupMembershipIdCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetUserIdCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/IsMemberInGroupsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListGroupMembershipsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListGroupMembershipsForMemberCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListUsersCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/IdentitystoreServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -214
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/package.json +26 -26
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-identitystore
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @aws-sdk/client-identitystore
|
|
@@ -76,7 +76,6 @@ import {
|
|
|
76
76
|
UpdateUserCommandOutput,
|
|
77
77
|
} from "./commands/UpdateUserCommand";
|
|
78
78
|
import { IdentitystoreClient } from "./IdentitystoreClient";
|
|
79
|
-
|
|
80
79
|
export declare class Identitystore extends IdentitystoreClient {
|
|
81
80
|
createGroup(
|
|
82
81
|
args: CreateGroupCommandInput,
|
|
@@ -91,7 +90,6 @@ export declare class Identitystore extends IdentitystoreClient {
|
|
|
91
90
|
options: __HttpHandlerOptions,
|
|
92
91
|
cb: (err: any, data?: CreateGroupCommandOutput) => void
|
|
93
92
|
): void;
|
|
94
|
-
|
|
95
93
|
createGroupMembership(
|
|
96
94
|
args: CreateGroupMembershipCommandInput,
|
|
97
95
|
options?: __HttpHandlerOptions
|
|
@@ -105,7 +103,6 @@ export declare class Identitystore extends IdentitystoreClient {
|
|
|
105
103
|
options: __HttpHandlerOptions,
|
|
106
104
|
cb: (err: any, data?: CreateGroupMembershipCommandOutput) => void
|
|
107
105
|
): void;
|
|
108
|
-
|
|
109
106
|
createUser(
|
|
110
107
|
args: CreateUserCommandInput,
|
|
111
108
|
options?: __HttpHandlerOptions
|
|
@@ -119,7 +116,6 @@ export declare class Identitystore extends IdentitystoreClient {
|
|
|
119
116
|
options: __HttpHandlerOptions,
|
|
120
117
|
cb: (err: any, data?: CreateUserCommandOutput) => void
|
|
121
118
|
): void;
|
|
122
|
-
|
|
123
119
|
deleteGroup(
|
|
124
120
|
args: DeleteGroupCommandInput,
|
|
125
121
|
options?: __HttpHandlerOptions
|
|
@@ -133,7 +129,6 @@ export declare class Identitystore extends IdentitystoreClient {
|
|
|
133
129
|
options: __HttpHandlerOptions,
|
|
134
130
|
cb: (err: any, data?: DeleteGroupCommandOutput) => void
|
|
135
131
|
): void;
|
|
136
|
-
|
|
137
132
|
deleteGroupMembership(
|
|
138
133
|
args: DeleteGroupMembershipCommandInput,
|
|
139
134
|
options?: __HttpHandlerOptions
|
|
@@ -147,7 +142,6 @@ export declare class Identitystore extends IdentitystoreClient {
|
|
|
147
142
|
options: __HttpHandlerOptions,
|
|
148
143
|
cb: (err: any, data?: DeleteGroupMembershipCommandOutput) => void
|
|
149
144
|
): void;
|
|
150
|
-
|
|
151
145
|
deleteUser(
|
|
152
146
|
args: DeleteUserCommandInput,
|
|
153
147
|
options?: __HttpHandlerOptions
|
|
@@ -161,7 +155,6 @@ export declare class Identitystore extends IdentitystoreClient {
|
|
|
161
155
|
options: __HttpHandlerOptions,
|
|
162
156
|
cb: (err: any, data?: DeleteUserCommandOutput) => void
|
|
163
157
|
): void;
|
|
164
|
-
|
|
165
158
|
describeGroup(
|
|
166
159
|
args: DescribeGroupCommandInput,
|
|
167
160
|
options?: __HttpHandlerOptions
|
|
@@ -175,7 +168,6 @@ export declare class Identitystore extends IdentitystoreClient {
|
|
|
175
168
|
options: __HttpHandlerOptions,
|
|
176
169
|
cb: (err: any, data?: DescribeGroupCommandOutput) => void
|
|
177
170
|
): void;
|
|
178
|
-
|
|
179
171
|
describeGroupMembership(
|
|
180
172
|
args: DescribeGroupMembershipCommandInput,
|
|
181
173
|
options?: __HttpHandlerOptions
|
|
@@ -189,7 +181,6 @@ export declare class Identitystore extends IdentitystoreClient {
|
|
|
189
181
|
options: __HttpHandlerOptions,
|
|
190
182
|
cb: (err: any, data?: DescribeGroupMembershipCommandOutput) => void
|
|
191
183
|
): void;
|
|
192
|
-
|
|
193
184
|
describeUser(
|
|
194
185
|
args: DescribeUserCommandInput,
|
|
195
186
|
options?: __HttpHandlerOptions
|
|
@@ -203,7 +194,6 @@ export declare class Identitystore extends IdentitystoreClient {
|
|
|
203
194
|
options: __HttpHandlerOptions,
|
|
204
195
|
cb: (err: any, data?: DescribeUserCommandOutput) => void
|
|
205
196
|
): void;
|
|
206
|
-
|
|
207
197
|
getGroupId(
|
|
208
198
|
args: GetGroupIdCommandInput,
|
|
209
199
|
options?: __HttpHandlerOptions
|
|
@@ -217,7 +207,6 @@ export declare class Identitystore extends IdentitystoreClient {
|
|
|
217
207
|
options: __HttpHandlerOptions,
|
|
218
208
|
cb: (err: any, data?: GetGroupIdCommandOutput) => void
|
|
219
209
|
): void;
|
|
220
|
-
|
|
221
210
|
getGroupMembershipId(
|
|
222
211
|
args: GetGroupMembershipIdCommandInput,
|
|
223
212
|
options?: __HttpHandlerOptions
|
|
@@ -231,7 +220,6 @@ export declare class Identitystore extends IdentitystoreClient {
|
|
|
231
220
|
options: __HttpHandlerOptions,
|
|
232
221
|
cb: (err: any, data?: GetGroupMembershipIdCommandOutput) => void
|
|
233
222
|
): void;
|
|
234
|
-
|
|
235
223
|
getUserId(
|
|
236
224
|
args: GetUserIdCommandInput,
|
|
237
225
|
options?: __HttpHandlerOptions
|
|
@@ -245,7 +233,6 @@ export declare class Identitystore extends IdentitystoreClient {
|
|
|
245
233
|
options: __HttpHandlerOptions,
|
|
246
234
|
cb: (err: any, data?: GetUserIdCommandOutput) => void
|
|
247
235
|
): void;
|
|
248
|
-
|
|
249
236
|
isMemberInGroups(
|
|
250
237
|
args: IsMemberInGroupsCommandInput,
|
|
251
238
|
options?: __HttpHandlerOptions
|
|
@@ -259,7 +246,6 @@ export declare class Identitystore extends IdentitystoreClient {
|
|
|
259
246
|
options: __HttpHandlerOptions,
|
|
260
247
|
cb: (err: any, data?: IsMemberInGroupsCommandOutput) => void
|
|
261
248
|
): void;
|
|
262
|
-
|
|
263
249
|
listGroupMemberships(
|
|
264
250
|
args: ListGroupMembershipsCommandInput,
|
|
265
251
|
options?: __HttpHandlerOptions
|
|
@@ -273,7 +259,6 @@ export declare class Identitystore extends IdentitystoreClient {
|
|
|
273
259
|
options: __HttpHandlerOptions,
|
|
274
260
|
cb: (err: any, data?: ListGroupMembershipsCommandOutput) => void
|
|
275
261
|
): void;
|
|
276
|
-
|
|
277
262
|
listGroupMembershipsForMember(
|
|
278
263
|
args: ListGroupMembershipsForMemberCommandInput,
|
|
279
264
|
options?: __HttpHandlerOptions
|
|
@@ -287,7 +272,6 @@ export declare class Identitystore extends IdentitystoreClient {
|
|
|
287
272
|
options: __HttpHandlerOptions,
|
|
288
273
|
cb: (err: any, data?: ListGroupMembershipsForMemberCommandOutput) => void
|
|
289
274
|
): void;
|
|
290
|
-
|
|
291
275
|
listGroups(
|
|
292
276
|
args: ListGroupsCommandInput,
|
|
293
277
|
options?: __HttpHandlerOptions
|
|
@@ -301,7 +285,6 @@ export declare class Identitystore extends IdentitystoreClient {
|
|
|
301
285
|
options: __HttpHandlerOptions,
|
|
302
286
|
cb: (err: any, data?: ListGroupsCommandOutput) => void
|
|
303
287
|
): void;
|
|
304
|
-
|
|
305
288
|
listUsers(
|
|
306
289
|
args: ListUsersCommandInput,
|
|
307
290
|
options?: __HttpHandlerOptions
|
|
@@ -315,7 +298,6 @@ export declare class Identitystore extends IdentitystoreClient {
|
|
|
315
298
|
options: __HttpHandlerOptions,
|
|
316
299
|
cb: (err: any, data?: ListUsersCommandOutput) => void
|
|
317
300
|
): void;
|
|
318
|
-
|
|
319
301
|
updateGroup(
|
|
320
302
|
args: UpdateGroupCommandInput,
|
|
321
303
|
options?: __HttpHandlerOptions
|
|
@@ -329,7 +311,6 @@ export declare class Identitystore extends IdentitystoreClient {
|
|
|
329
311
|
options: __HttpHandlerOptions,
|
|
330
312
|
cb: (err: any, data?: UpdateGroupCommandOutput) => void
|
|
331
313
|
): void;
|
|
332
|
-
|
|
333
314
|
updateUser(
|
|
334
315
|
args: UpdateUserCommandInput,
|
|
335
316
|
options?: __HttpHandlerOptions
|
|
@@ -161,47 +161,26 @@ export declare type ServiceOutputTypes =
|
|
|
161
161
|
export interface ClientDefaults
|
|
162
162
|
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
163
163
|
requestHandler?: __HttpHandler;
|
|
164
|
-
|
|
165
164
|
sha256?: __HashConstructor;
|
|
166
|
-
|
|
167
165
|
urlParser?: __UrlParser;
|
|
168
|
-
|
|
169
166
|
bodyLengthChecker?: __BodyLengthCalculator;
|
|
170
|
-
|
|
171
167
|
streamCollector?: __StreamCollector;
|
|
172
|
-
|
|
173
168
|
base64Decoder?: __Decoder;
|
|
174
|
-
|
|
175
169
|
base64Encoder?: __Encoder;
|
|
176
|
-
|
|
177
170
|
utf8Decoder?: __Decoder;
|
|
178
|
-
|
|
179
171
|
utf8Encoder?: __Encoder;
|
|
180
|
-
|
|
181
172
|
runtime?: string;
|
|
182
|
-
|
|
183
173
|
disableHostPrefix?: boolean;
|
|
184
|
-
|
|
185
174
|
maxAttempts?: number | __Provider<number>;
|
|
186
|
-
|
|
187
175
|
retryMode?: string | __Provider<string>;
|
|
188
|
-
|
|
189
176
|
logger?: __Logger;
|
|
190
|
-
|
|
191
177
|
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
192
|
-
|
|
193
178
|
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
194
|
-
|
|
195
179
|
serviceId?: string;
|
|
196
|
-
|
|
197
180
|
region?: string | __Provider<string>;
|
|
198
|
-
|
|
199
181
|
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
200
|
-
|
|
201
182
|
regionInfoProvider?: RegionInfoProvider;
|
|
202
|
-
|
|
203
183
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
204
|
-
|
|
205
184
|
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
206
185
|
}
|
|
207
186
|
declare type IdentitystoreClientConfigType = Partial<
|
|
@@ -214,7 +193,6 @@ declare type IdentitystoreClientConfigType = Partial<
|
|
|
214
193
|
HostHeaderInputConfig &
|
|
215
194
|
AwsAuthInputConfig &
|
|
216
195
|
UserAgentInputConfig;
|
|
217
|
-
|
|
218
196
|
export interface IdentitystoreClientConfig
|
|
219
197
|
extends IdentitystoreClientConfigType {}
|
|
220
198
|
declare type IdentitystoreClientResolvedConfigType =
|
|
@@ -226,10 +204,8 @@ declare type IdentitystoreClientResolvedConfigType =
|
|
|
226
204
|
HostHeaderResolvedConfig &
|
|
227
205
|
AwsAuthResolvedConfig &
|
|
228
206
|
UserAgentResolvedConfig;
|
|
229
|
-
|
|
230
207
|
export interface IdentitystoreClientResolvedConfig
|
|
231
208
|
extends IdentitystoreClientResolvedConfigType {}
|
|
232
|
-
|
|
233
209
|
export declare class IdentitystoreClient extends __Client<
|
|
234
210
|
__HttpHandlerOptions,
|
|
235
211
|
ServiceInputTypes,
|
|
@@ -238,7 +214,6 @@ export declare class IdentitystoreClient extends __Client<
|
|
|
238
214
|
> {
|
|
239
215
|
readonly config: IdentitystoreClientResolvedConfig;
|
|
240
216
|
constructor(configuration: IdentitystoreClientConfig);
|
|
241
|
-
|
|
242
217
|
destroy(): void;
|
|
243
218
|
}
|
|
244
219
|
export {};
|
|
@@ -15,7 +15,6 @@ export interface CreateGroupCommandInput extends CreateGroupRequest {}
|
|
|
15
15
|
export interface CreateGroupCommandOutput
|
|
16
16
|
extends CreateGroupResponse,
|
|
17
17
|
__MetadataBearer {}
|
|
18
|
-
|
|
19
18
|
export declare class CreateGroupCommand extends $Command<
|
|
20
19
|
CreateGroupCommandInput,
|
|
21
20
|
CreateGroupCommandOutput,
|
|
@@ -23,7 +22,6 @@ export declare class CreateGroupCommand extends $Command<
|
|
|
23
22
|
> {
|
|
24
23
|
readonly input: CreateGroupCommandInput;
|
|
25
24
|
constructor(input: CreateGroupCommandInput);
|
|
26
|
-
|
|
27
25
|
resolveMiddleware(
|
|
28
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
27
|
configuration: IdentitystoreClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface CreateGroupMembershipCommandInput
|
|
|
19
19
|
export interface CreateGroupMembershipCommandOutput
|
|
20
20
|
extends CreateGroupMembershipResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class CreateGroupMembershipCommand extends $Command<
|
|
24
23
|
CreateGroupMembershipCommandInput,
|
|
25
24
|
CreateGroupMembershipCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class CreateGroupMembershipCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: CreateGroupMembershipCommandInput;
|
|
29
28
|
constructor(input: CreateGroupMembershipCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: IdentitystoreClientResolvedConfig,
|
|
@@ -15,7 +15,6 @@ export interface CreateUserCommandInput extends CreateUserRequest {}
|
|
|
15
15
|
export interface CreateUserCommandOutput
|
|
16
16
|
extends CreateUserResponse,
|
|
17
17
|
__MetadataBearer {}
|
|
18
|
-
|
|
19
18
|
export declare class CreateUserCommand extends $Command<
|
|
20
19
|
CreateUserCommandInput,
|
|
21
20
|
CreateUserCommandOutput,
|
|
@@ -23,7 +22,6 @@ export declare class CreateUserCommand extends $Command<
|
|
|
23
22
|
> {
|
|
24
23
|
readonly input: CreateUserCommandInput;
|
|
25
24
|
constructor(input: CreateUserCommandInput);
|
|
26
|
-
|
|
27
25
|
resolveMiddleware(
|
|
28
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
27
|
configuration: IdentitystoreClientResolvedConfig,
|
|
@@ -15,7 +15,6 @@ export interface DeleteGroupCommandInput extends DeleteGroupRequest {}
|
|
|
15
15
|
export interface DeleteGroupCommandOutput
|
|
16
16
|
extends DeleteGroupResponse,
|
|
17
17
|
__MetadataBearer {}
|
|
18
|
-
|
|
19
18
|
export declare class DeleteGroupCommand extends $Command<
|
|
20
19
|
DeleteGroupCommandInput,
|
|
21
20
|
DeleteGroupCommandOutput,
|
|
@@ -23,7 +22,6 @@ export declare class DeleteGroupCommand extends $Command<
|
|
|
23
22
|
> {
|
|
24
23
|
readonly input: DeleteGroupCommandInput;
|
|
25
24
|
constructor(input: DeleteGroupCommandInput);
|
|
26
|
-
|
|
27
25
|
resolveMiddleware(
|
|
28
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
27
|
configuration: IdentitystoreClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface DeleteGroupMembershipCommandInput
|
|
|
19
19
|
export interface DeleteGroupMembershipCommandOutput
|
|
20
20
|
extends DeleteGroupMembershipResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class DeleteGroupMembershipCommand extends $Command<
|
|
24
23
|
DeleteGroupMembershipCommandInput,
|
|
25
24
|
DeleteGroupMembershipCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class DeleteGroupMembershipCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: DeleteGroupMembershipCommandInput;
|
|
29
28
|
constructor(input: DeleteGroupMembershipCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: IdentitystoreClientResolvedConfig,
|
|
@@ -15,7 +15,6 @@ export interface DeleteUserCommandInput extends DeleteUserRequest {}
|
|
|
15
15
|
export interface DeleteUserCommandOutput
|
|
16
16
|
extends DeleteUserResponse,
|
|
17
17
|
__MetadataBearer {}
|
|
18
|
-
|
|
19
18
|
export declare class DeleteUserCommand extends $Command<
|
|
20
19
|
DeleteUserCommandInput,
|
|
21
20
|
DeleteUserCommandOutput,
|
|
@@ -23,7 +22,6 @@ export declare class DeleteUserCommand extends $Command<
|
|
|
23
22
|
> {
|
|
24
23
|
readonly input: DeleteUserCommandInput;
|
|
25
24
|
constructor(input: DeleteUserCommandInput);
|
|
26
|
-
|
|
27
25
|
resolveMiddleware(
|
|
28
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
27
|
configuration: IdentitystoreClientResolvedConfig,
|
|
@@ -18,7 +18,6 @@ export interface DescribeGroupCommandInput extends DescribeGroupRequest {}
|
|
|
18
18
|
export interface DescribeGroupCommandOutput
|
|
19
19
|
extends DescribeGroupResponse,
|
|
20
20
|
__MetadataBearer {}
|
|
21
|
-
|
|
22
21
|
export declare class DescribeGroupCommand extends $Command<
|
|
23
22
|
DescribeGroupCommandInput,
|
|
24
23
|
DescribeGroupCommandOutput,
|
|
@@ -26,7 +25,6 @@ export declare class DescribeGroupCommand extends $Command<
|
|
|
26
25
|
> {
|
|
27
26
|
readonly input: DescribeGroupCommandInput;
|
|
28
27
|
constructor(input: DescribeGroupCommandInput);
|
|
29
|
-
|
|
30
28
|
resolveMiddleware(
|
|
31
29
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
30
|
configuration: IdentitystoreClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface DescribeGroupMembershipCommandInput
|
|
|
19
19
|
export interface DescribeGroupMembershipCommandOutput
|
|
20
20
|
extends DescribeGroupMembershipResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class DescribeGroupMembershipCommand extends $Command<
|
|
24
23
|
DescribeGroupMembershipCommandInput,
|
|
25
24
|
DescribeGroupMembershipCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class DescribeGroupMembershipCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: DescribeGroupMembershipCommandInput;
|
|
29
28
|
constructor(input: DescribeGroupMembershipCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: IdentitystoreClientResolvedConfig,
|
|
@@ -15,7 +15,6 @@ export interface DescribeUserCommandInput extends DescribeUserRequest {}
|
|
|
15
15
|
export interface DescribeUserCommandOutput
|
|
16
16
|
extends DescribeUserResponse,
|
|
17
17
|
__MetadataBearer {}
|
|
18
|
-
|
|
19
18
|
export declare class DescribeUserCommand extends $Command<
|
|
20
19
|
DescribeUserCommandInput,
|
|
21
20
|
DescribeUserCommandOutput,
|
|
@@ -23,7 +22,6 @@ export declare class DescribeUserCommand extends $Command<
|
|
|
23
22
|
> {
|
|
24
23
|
readonly input: DescribeUserCommandInput;
|
|
25
24
|
constructor(input: DescribeUserCommandInput);
|
|
26
|
-
|
|
27
25
|
resolveMiddleware(
|
|
28
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
27
|
configuration: IdentitystoreClientResolvedConfig,
|
|
@@ -15,7 +15,6 @@ export interface GetGroupIdCommandInput extends GetGroupIdRequest {}
|
|
|
15
15
|
export interface GetGroupIdCommandOutput
|
|
16
16
|
extends GetGroupIdResponse,
|
|
17
17
|
__MetadataBearer {}
|
|
18
|
-
|
|
19
18
|
export declare class GetGroupIdCommand extends $Command<
|
|
20
19
|
GetGroupIdCommandInput,
|
|
21
20
|
GetGroupIdCommandOutput,
|
|
@@ -23,7 +22,6 @@ export declare class GetGroupIdCommand extends $Command<
|
|
|
23
22
|
> {
|
|
24
23
|
readonly input: GetGroupIdCommandInput;
|
|
25
24
|
constructor(input: GetGroupIdCommandInput);
|
|
26
|
-
|
|
27
25
|
resolveMiddleware(
|
|
28
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
27
|
configuration: IdentitystoreClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface GetGroupMembershipIdCommandInput
|
|
|
19
19
|
export interface GetGroupMembershipIdCommandOutput
|
|
20
20
|
extends GetGroupMembershipIdResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class GetGroupMembershipIdCommand extends $Command<
|
|
24
23
|
GetGroupMembershipIdCommandInput,
|
|
25
24
|
GetGroupMembershipIdCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class GetGroupMembershipIdCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: GetGroupMembershipIdCommandInput;
|
|
29
28
|
constructor(input: GetGroupMembershipIdCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: IdentitystoreClientResolvedConfig,
|
|
@@ -15,7 +15,6 @@ export interface GetUserIdCommandInput extends GetUserIdRequest {}
|
|
|
15
15
|
export interface GetUserIdCommandOutput
|
|
16
16
|
extends GetUserIdResponse,
|
|
17
17
|
__MetadataBearer {}
|
|
18
|
-
|
|
19
18
|
export declare class GetUserIdCommand extends $Command<
|
|
20
19
|
GetUserIdCommandInput,
|
|
21
20
|
GetUserIdCommandOutput,
|
|
@@ -23,7 +22,6 @@ export declare class GetUserIdCommand extends $Command<
|
|
|
23
22
|
> {
|
|
24
23
|
readonly input: GetUserIdCommandInput;
|
|
25
24
|
constructor(input: GetUserIdCommandInput);
|
|
26
|
-
|
|
27
25
|
resolveMiddleware(
|
|
28
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
27
|
configuration: IdentitystoreClientResolvedConfig,
|
|
@@ -18,7 +18,6 @@ export interface IsMemberInGroupsCommandInput extends IsMemberInGroupsRequest {}
|
|
|
18
18
|
export interface IsMemberInGroupsCommandOutput
|
|
19
19
|
extends IsMemberInGroupsResponse,
|
|
20
20
|
__MetadataBearer {}
|
|
21
|
-
|
|
22
21
|
export declare class IsMemberInGroupsCommand extends $Command<
|
|
23
22
|
IsMemberInGroupsCommandInput,
|
|
24
23
|
IsMemberInGroupsCommandOutput,
|
|
@@ -26,7 +25,6 @@ export declare class IsMemberInGroupsCommand extends $Command<
|
|
|
26
25
|
> {
|
|
27
26
|
readonly input: IsMemberInGroupsCommandInput;
|
|
28
27
|
constructor(input: IsMemberInGroupsCommandInput);
|
|
29
|
-
|
|
30
28
|
resolveMiddleware(
|
|
31
29
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
30
|
configuration: IdentitystoreClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface ListGroupMembershipsCommandInput
|
|
|
19
19
|
export interface ListGroupMembershipsCommandOutput
|
|
20
20
|
extends ListGroupMembershipsResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class ListGroupMembershipsCommand extends $Command<
|
|
24
23
|
ListGroupMembershipsCommandInput,
|
|
25
24
|
ListGroupMembershipsCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class ListGroupMembershipsCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: ListGroupMembershipsCommandInput;
|
|
29
28
|
constructor(input: ListGroupMembershipsCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: IdentitystoreClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface ListGroupMembershipsForMemberCommandInput
|
|
|
19
19
|
export interface ListGroupMembershipsForMemberCommandOutput
|
|
20
20
|
extends ListGroupMembershipsForMemberResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class ListGroupMembershipsForMemberCommand extends $Command<
|
|
24
23
|
ListGroupMembershipsForMemberCommandInput,
|
|
25
24
|
ListGroupMembershipsForMemberCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class ListGroupMembershipsForMemberCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: ListGroupMembershipsForMemberCommandInput;
|
|
29
28
|
constructor(input: ListGroupMembershipsForMemberCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: IdentitystoreClientResolvedConfig,
|
|
@@ -15,7 +15,6 @@ export interface ListGroupsCommandInput extends ListGroupsRequest {}
|
|
|
15
15
|
export interface ListGroupsCommandOutput
|
|
16
16
|
extends ListGroupsResponse,
|
|
17
17
|
__MetadataBearer {}
|
|
18
|
-
|
|
19
18
|
export declare class ListGroupsCommand extends $Command<
|
|
20
19
|
ListGroupsCommandInput,
|
|
21
20
|
ListGroupsCommandOutput,
|
|
@@ -23,7 +22,6 @@ export declare class ListGroupsCommand extends $Command<
|
|
|
23
22
|
> {
|
|
24
23
|
readonly input: ListGroupsCommandInput;
|
|
25
24
|
constructor(input: ListGroupsCommandInput);
|
|
26
|
-
|
|
27
25
|
resolveMiddleware(
|
|
28
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
27
|
configuration: IdentitystoreClientResolvedConfig,
|
|
@@ -15,7 +15,6 @@ export interface ListUsersCommandInput extends ListUsersRequest {}
|
|
|
15
15
|
export interface ListUsersCommandOutput
|
|
16
16
|
extends ListUsersResponse,
|
|
17
17
|
__MetadataBearer {}
|
|
18
|
-
|
|
19
18
|
export declare class ListUsersCommand extends $Command<
|
|
20
19
|
ListUsersCommandInput,
|
|
21
20
|
ListUsersCommandOutput,
|
|
@@ -23,7 +22,6 @@ export declare class ListUsersCommand extends $Command<
|
|
|
23
22
|
> {
|
|
24
23
|
readonly input: ListUsersCommandInput;
|
|
25
24
|
constructor(input: ListUsersCommandInput);
|
|
26
|
-
|
|
27
25
|
resolveMiddleware(
|
|
28
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
27
|
configuration: IdentitystoreClientResolvedConfig,
|
|
@@ -15,7 +15,6 @@ export interface UpdateGroupCommandInput extends UpdateGroupRequest {}
|
|
|
15
15
|
export interface UpdateGroupCommandOutput
|
|
16
16
|
extends UpdateGroupResponse,
|
|
17
17
|
__MetadataBearer {}
|
|
18
|
-
|
|
19
18
|
export declare class UpdateGroupCommand extends $Command<
|
|
20
19
|
UpdateGroupCommandInput,
|
|
21
20
|
UpdateGroupCommandOutput,
|
|
@@ -23,7 +22,6 @@ export declare class UpdateGroupCommand extends $Command<
|
|
|
23
22
|
> {
|
|
24
23
|
readonly input: UpdateGroupCommandInput;
|
|
25
24
|
constructor(input: UpdateGroupCommandInput);
|
|
26
|
-
|
|
27
25
|
resolveMiddleware(
|
|
28
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
27
|
configuration: IdentitystoreClientResolvedConfig,
|
|
@@ -15,7 +15,6 @@ export interface UpdateUserCommandInput extends UpdateUserRequest {}
|
|
|
15
15
|
export interface UpdateUserCommandOutput
|
|
16
16
|
extends UpdateUserResponse,
|
|
17
17
|
__MetadataBearer {}
|
|
18
|
-
|
|
19
18
|
export declare class UpdateUserCommand extends $Command<
|
|
20
19
|
UpdateUserCommandInput,
|
|
21
20
|
UpdateUserCommandOutput,
|
|
@@ -23,7 +22,6 @@ export declare class UpdateUserCommand extends $Command<
|
|
|
23
22
|
> {
|
|
24
23
|
readonly input: UpdateUserCommandInput;
|
|
25
24
|
constructor(input: UpdateUserCommandInput);
|
|
26
|
-
|
|
27
25
|
resolveMiddleware(
|
|
28
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
27
|
configuration: IdentitystoreClientResolvedConfig,
|
|
@@ -2,7 +2,6 @@ import {
|
|
|
2
2
|
ServiceException as __ServiceException,
|
|
3
3
|
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
4
|
} from "@aws-sdk/smithy-client";
|
|
5
|
-
|
|
6
5
|
export declare class IdentitystoreServiceException extends __ServiceException {
|
|
7
6
|
constructor(options: __ServiceExceptionOptions);
|
|
8
7
|
}
|