@aws-sdk/client-identitystore 3.1087.0 → 3.1088.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.
Files changed (38) hide show
  1. package/dist-cjs/index.js +1 -1
  2. package/dist-types/ts3.4/Identitystore.d.ts +72 -104
  3. package/dist-types/ts3.4/IdentitystoreClient.d.ts +16 -56
  4. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
  5. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
  6. package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
  7. package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +3 -5
  8. package/dist-types/ts3.4/commands/CreateGroupMembershipCommand.d.ts +5 -10
  9. package/dist-types/ts3.4/commands/CreateUserCommand.d.ts +3 -5
  10. package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +3 -5
  11. package/dist-types/ts3.4/commands/DeleteGroupMembershipCommand.d.ts +5 -10
  12. package/dist-types/ts3.4/commands/DeleteUserCommand.d.ts +3 -5
  13. package/dist-types/ts3.4/commands/DescribeGroupCommand.d.ts +4 -9
  14. package/dist-types/ts3.4/commands/DescribeGroupMembershipCommand.d.ts +4 -6
  15. package/dist-types/ts3.4/commands/DescribeUserCommand.d.ts +3 -5
  16. package/dist-types/ts3.4/commands/GetGroupIdCommand.d.ts +3 -5
  17. package/dist-types/ts3.4/commands/GetGroupMembershipIdCommand.d.ts +5 -10
  18. package/dist-types/ts3.4/commands/GetUserIdCommand.d.ts +7 -5
  19. package/dist-types/ts3.4/commands/IsMemberInGroupsCommand.d.ts +4 -9
  20. package/dist-types/ts3.4/commands/ListGroupMembershipsCommand.d.ts +5 -10
  21. package/dist-types/ts3.4/commands/ListGroupMembershipsForMemberCommand.d.ts +4 -6
  22. package/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +3 -5
  23. package/dist-types/ts3.4/commands/ListUsersCommand.d.ts +7 -5
  24. package/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +3 -5
  25. package/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +3 -5
  26. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  27. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
  28. package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
  29. package/dist-types/ts3.4/models/errors.d.ts +6 -18
  30. package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
  31. package/dist-types/ts3.4/pagination/ListGroupsPaginator.d.ts +1 -4
  32. package/dist-types/ts3.4/pagination/ListUsersPaginator.d.ts +1 -4
  33. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
  34. package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
  35. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
  36. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
  37. package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
  38. package/package.json +38 -38
package/dist-cjs/index.js CHANGED
@@ -69,7 +69,7 @@ const commonParams = {
69
69
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
70
70
  };
71
71
 
72
- var version = "3.1086.0";
72
+ var version = "3.1087.0";
73
73
  var packageInfo = {
74
74
  version: version};
75
75
 
@@ -3,30 +3,18 @@ import {
3
3
  PaginationConfiguration,
4
4
  Paginator,
5
5
  } from "@smithy/types";
6
- import {
7
- CreateGroupCommandInput,
8
- CreateGroupCommandOutput,
9
- } from "./commands/CreateGroupCommand";
6
+ import { CreateGroupCommandInput, CreateGroupCommandOutput } from "./commands/CreateGroupCommand";
10
7
  import {
11
8
  CreateGroupMembershipCommandInput,
12
9
  CreateGroupMembershipCommandOutput,
13
10
  } from "./commands/CreateGroupMembershipCommand";
14
- import {
15
- CreateUserCommandInput,
16
- CreateUserCommandOutput,
17
- } from "./commands/CreateUserCommand";
18
- import {
19
- DeleteGroupCommandInput,
20
- DeleteGroupCommandOutput,
21
- } from "./commands/DeleteGroupCommand";
11
+ import { CreateUserCommandInput, CreateUserCommandOutput } from "./commands/CreateUserCommand";
12
+ import { DeleteGroupCommandInput, DeleteGroupCommandOutput } from "./commands/DeleteGroupCommand";
22
13
  import {
23
14
  DeleteGroupMembershipCommandInput,
24
15
  DeleteGroupMembershipCommandOutput,
25
16
  } from "./commands/DeleteGroupMembershipCommand";
26
- import {
27
- DeleteUserCommandInput,
28
- DeleteUserCommandOutput,
29
- } from "./commands/DeleteUserCommand";
17
+ import { DeleteUserCommandInput, DeleteUserCommandOutput } from "./commands/DeleteUserCommand";
30
18
  import {
31
19
  DescribeGroupCommandInput,
32
20
  DescribeGroupCommandOutput,
@@ -39,18 +27,12 @@ import {
39
27
  DescribeUserCommandInput,
40
28
  DescribeUserCommandOutput,
41
29
  } from "./commands/DescribeUserCommand";
42
- import {
43
- GetGroupIdCommandInput,
44
- GetGroupIdCommandOutput,
45
- } from "./commands/GetGroupIdCommand";
30
+ import { GetGroupIdCommandInput, GetGroupIdCommandOutput } from "./commands/GetGroupIdCommand";
46
31
  import {
47
32
  GetGroupMembershipIdCommandInput,
48
33
  GetGroupMembershipIdCommandOutput,
49
34
  } from "./commands/GetGroupMembershipIdCommand";
50
- import {
51
- GetUserIdCommandInput,
52
- GetUserIdCommandOutput,
53
- } from "./commands/GetUserIdCommand";
35
+ import { GetUserIdCommandInput, GetUserIdCommandOutput } from "./commands/GetUserIdCommand";
54
36
  import {
55
37
  IsMemberInGroupsCommandInput,
56
38
  IsMemberInGroupsCommandOutput,
@@ -63,300 +45,286 @@ import {
63
45
  ListGroupMembershipsForMemberCommandInput,
64
46
  ListGroupMembershipsForMemberCommandOutput,
65
47
  } from "./commands/ListGroupMembershipsForMemberCommand";
66
- import {
67
- ListGroupsCommandInput,
68
- ListGroupsCommandOutput,
69
- } from "./commands/ListGroupsCommand";
70
- import {
71
- ListUsersCommandInput,
72
- ListUsersCommandOutput,
73
- } from "./commands/ListUsersCommand";
74
- import {
75
- UpdateGroupCommandInput,
76
- UpdateGroupCommandOutput,
77
- } from "./commands/UpdateGroupCommand";
78
- import {
79
- UpdateUserCommandInput,
80
- UpdateUserCommandOutput,
81
- } from "./commands/UpdateUserCommand";
48
+ import { ListGroupsCommandInput, ListGroupsCommandOutput } from "./commands/ListGroupsCommand";
49
+ import { ListUsersCommandInput, ListUsersCommandOutput } from "./commands/ListUsersCommand";
50
+ import { UpdateGroupCommandInput, UpdateGroupCommandOutput } from "./commands/UpdateGroupCommand";
51
+ import { UpdateUserCommandInput, UpdateUserCommandOutput } from "./commands/UpdateUserCommand";
82
52
  import { IdentitystoreClient } from "./IdentitystoreClient";
83
53
  export interface Identitystore {
84
54
  createGroup(
85
55
  args: CreateGroupCommandInput,
86
- options?: __HttpHandlerOptions
56
+ options?: __HttpHandlerOptions,
87
57
  ): Promise<CreateGroupCommandOutput>;
88
58
  createGroup(
89
59
  args: CreateGroupCommandInput,
90
- cb: (err: any, data?: CreateGroupCommandOutput) => void
60
+ cb: (err: any, data?: CreateGroupCommandOutput) => void,
91
61
  ): void;
92
62
  createGroup(
93
63
  args: CreateGroupCommandInput,
94
64
  options: __HttpHandlerOptions,
95
- cb: (err: any, data?: CreateGroupCommandOutput) => void
65
+ cb: (err: any, data?: CreateGroupCommandOutput) => void,
96
66
  ): void;
97
67
  createGroupMembership(
98
68
  args: CreateGroupMembershipCommandInput,
99
- options?: __HttpHandlerOptions
69
+ options?: __HttpHandlerOptions,
100
70
  ): Promise<CreateGroupMembershipCommandOutput>;
101
71
  createGroupMembership(
102
72
  args: CreateGroupMembershipCommandInput,
103
- cb: (err: any, data?: CreateGroupMembershipCommandOutput) => void
73
+ cb: (err: any, data?: CreateGroupMembershipCommandOutput) => void,
104
74
  ): void;
105
75
  createGroupMembership(
106
76
  args: CreateGroupMembershipCommandInput,
107
77
  options: __HttpHandlerOptions,
108
- cb: (err: any, data?: CreateGroupMembershipCommandOutput) => void
78
+ cb: (err: any, data?: CreateGroupMembershipCommandOutput) => void,
109
79
  ): void;
110
80
  createUser(
111
81
  args: CreateUserCommandInput,
112
- options?: __HttpHandlerOptions
82
+ options?: __HttpHandlerOptions,
113
83
  ): Promise<CreateUserCommandOutput>;
114
84
  createUser(
115
85
  args: CreateUserCommandInput,
116
- cb: (err: any, data?: CreateUserCommandOutput) => void
86
+ cb: (err: any, data?: CreateUserCommandOutput) => void,
117
87
  ): void;
118
88
  createUser(
119
89
  args: CreateUserCommandInput,
120
90
  options: __HttpHandlerOptions,
121
- cb: (err: any, data?: CreateUserCommandOutput) => void
91
+ cb: (err: any, data?: CreateUserCommandOutput) => void,
122
92
  ): void;
123
93
  deleteGroup(
124
94
  args: DeleteGroupCommandInput,
125
- options?: __HttpHandlerOptions
95
+ options?: __HttpHandlerOptions,
126
96
  ): Promise<DeleteGroupCommandOutput>;
127
97
  deleteGroup(
128
98
  args: DeleteGroupCommandInput,
129
- cb: (err: any, data?: DeleteGroupCommandOutput) => void
99
+ cb: (err: any, data?: DeleteGroupCommandOutput) => void,
130
100
  ): void;
131
101
  deleteGroup(
132
102
  args: DeleteGroupCommandInput,
133
103
  options: __HttpHandlerOptions,
134
- cb: (err: any, data?: DeleteGroupCommandOutput) => void
104
+ cb: (err: any, data?: DeleteGroupCommandOutput) => void,
135
105
  ): void;
136
106
  deleteGroupMembership(
137
107
  args: DeleteGroupMembershipCommandInput,
138
- options?: __HttpHandlerOptions
108
+ options?: __HttpHandlerOptions,
139
109
  ): Promise<DeleteGroupMembershipCommandOutput>;
140
110
  deleteGroupMembership(
141
111
  args: DeleteGroupMembershipCommandInput,
142
- cb: (err: any, data?: DeleteGroupMembershipCommandOutput) => void
112
+ cb: (err: any, data?: DeleteGroupMembershipCommandOutput) => void,
143
113
  ): void;
144
114
  deleteGroupMembership(
145
115
  args: DeleteGroupMembershipCommandInput,
146
116
  options: __HttpHandlerOptions,
147
- cb: (err: any, data?: DeleteGroupMembershipCommandOutput) => void
117
+ cb: (err: any, data?: DeleteGroupMembershipCommandOutput) => void,
148
118
  ): void;
149
119
  deleteUser(
150
120
  args: DeleteUserCommandInput,
151
- options?: __HttpHandlerOptions
121
+ options?: __HttpHandlerOptions,
152
122
  ): Promise<DeleteUserCommandOutput>;
153
123
  deleteUser(
154
124
  args: DeleteUserCommandInput,
155
- cb: (err: any, data?: DeleteUserCommandOutput) => void
125
+ cb: (err: any, data?: DeleteUserCommandOutput) => void,
156
126
  ): void;
157
127
  deleteUser(
158
128
  args: DeleteUserCommandInput,
159
129
  options: __HttpHandlerOptions,
160
- cb: (err: any, data?: DeleteUserCommandOutput) => void
130
+ cb: (err: any, data?: DeleteUserCommandOutput) => void,
161
131
  ): void;
162
132
  describeGroup(
163
133
  args: DescribeGroupCommandInput,
164
- options?: __HttpHandlerOptions
134
+ options?: __HttpHandlerOptions,
165
135
  ): Promise<DescribeGroupCommandOutput>;
166
136
  describeGroup(
167
137
  args: DescribeGroupCommandInput,
168
- cb: (err: any, data?: DescribeGroupCommandOutput) => void
138
+ cb: (err: any, data?: DescribeGroupCommandOutput) => void,
169
139
  ): void;
170
140
  describeGroup(
171
141
  args: DescribeGroupCommandInput,
172
142
  options: __HttpHandlerOptions,
173
- cb: (err: any, data?: DescribeGroupCommandOutput) => void
143
+ cb: (err: any, data?: DescribeGroupCommandOutput) => void,
174
144
  ): void;
175
145
  describeGroupMembership(
176
146
  args: DescribeGroupMembershipCommandInput,
177
- options?: __HttpHandlerOptions
147
+ options?: __HttpHandlerOptions,
178
148
  ): Promise<DescribeGroupMembershipCommandOutput>;
179
149
  describeGroupMembership(
180
150
  args: DescribeGroupMembershipCommandInput,
181
- cb: (err: any, data?: DescribeGroupMembershipCommandOutput) => void
151
+ cb: (err: any, data?: DescribeGroupMembershipCommandOutput) => void,
182
152
  ): void;
183
153
  describeGroupMembership(
184
154
  args: DescribeGroupMembershipCommandInput,
185
155
  options: __HttpHandlerOptions,
186
- cb: (err: any, data?: DescribeGroupMembershipCommandOutput) => void
156
+ cb: (err: any, data?: DescribeGroupMembershipCommandOutput) => void,
187
157
  ): void;
188
158
  describeUser(
189
159
  args: DescribeUserCommandInput,
190
- options?: __HttpHandlerOptions
160
+ options?: __HttpHandlerOptions,
191
161
  ): Promise<DescribeUserCommandOutput>;
192
162
  describeUser(
193
163
  args: DescribeUserCommandInput,
194
- cb: (err: any, data?: DescribeUserCommandOutput) => void
164
+ cb: (err: any, data?: DescribeUserCommandOutput) => void,
195
165
  ): void;
196
166
  describeUser(
197
167
  args: DescribeUserCommandInput,
198
168
  options: __HttpHandlerOptions,
199
- cb: (err: any, data?: DescribeUserCommandOutput) => void
169
+ cb: (err: any, data?: DescribeUserCommandOutput) => void,
200
170
  ): void;
201
171
  getGroupId(
202
172
  args: GetGroupIdCommandInput,
203
- options?: __HttpHandlerOptions
173
+ options?: __HttpHandlerOptions,
204
174
  ): Promise<GetGroupIdCommandOutput>;
205
175
  getGroupId(
206
176
  args: GetGroupIdCommandInput,
207
- cb: (err: any, data?: GetGroupIdCommandOutput) => void
177
+ cb: (err: any, data?: GetGroupIdCommandOutput) => void,
208
178
  ): void;
209
179
  getGroupId(
210
180
  args: GetGroupIdCommandInput,
211
181
  options: __HttpHandlerOptions,
212
- cb: (err: any, data?: GetGroupIdCommandOutput) => void
182
+ cb: (err: any, data?: GetGroupIdCommandOutput) => void,
213
183
  ): void;
214
184
  getGroupMembershipId(
215
185
  args: GetGroupMembershipIdCommandInput,
216
- options?: __HttpHandlerOptions
186
+ options?: __HttpHandlerOptions,
217
187
  ): Promise<GetGroupMembershipIdCommandOutput>;
218
188
  getGroupMembershipId(
219
189
  args: GetGroupMembershipIdCommandInput,
220
- cb: (err: any, data?: GetGroupMembershipIdCommandOutput) => void
190
+ cb: (err: any, data?: GetGroupMembershipIdCommandOutput) => void,
221
191
  ): void;
222
192
  getGroupMembershipId(
223
193
  args: GetGroupMembershipIdCommandInput,
224
194
  options: __HttpHandlerOptions,
225
- cb: (err: any, data?: GetGroupMembershipIdCommandOutput) => void
195
+ cb: (err: any, data?: GetGroupMembershipIdCommandOutput) => void,
226
196
  ): void;
227
197
  getUserId(
228
198
  args: GetUserIdCommandInput,
229
- options?: __HttpHandlerOptions
199
+ options?: __HttpHandlerOptions,
230
200
  ): Promise<GetUserIdCommandOutput>;
231
201
  getUserId(
232
202
  args: GetUserIdCommandInput,
233
- cb: (err: any, data?: GetUserIdCommandOutput) => void
203
+ cb: (err: any, data?: GetUserIdCommandOutput) => void,
234
204
  ): void;
235
205
  getUserId(
236
206
  args: GetUserIdCommandInput,
237
207
  options: __HttpHandlerOptions,
238
- cb: (err: any, data?: GetUserIdCommandOutput) => void
208
+ cb: (err: any, data?: GetUserIdCommandOutput) => void,
239
209
  ): void;
240
210
  isMemberInGroups(
241
211
  args: IsMemberInGroupsCommandInput,
242
- options?: __HttpHandlerOptions
212
+ options?: __HttpHandlerOptions,
243
213
  ): Promise<IsMemberInGroupsCommandOutput>;
244
214
  isMemberInGroups(
245
215
  args: IsMemberInGroupsCommandInput,
246
- cb: (err: any, data?: IsMemberInGroupsCommandOutput) => void
216
+ cb: (err: any, data?: IsMemberInGroupsCommandOutput) => void,
247
217
  ): void;
248
218
  isMemberInGroups(
249
219
  args: IsMemberInGroupsCommandInput,
250
220
  options: __HttpHandlerOptions,
251
- cb: (err: any, data?: IsMemberInGroupsCommandOutput) => void
221
+ cb: (err: any, data?: IsMemberInGroupsCommandOutput) => void,
252
222
  ): void;
253
223
  listGroupMemberships(
254
224
  args: ListGroupMembershipsCommandInput,
255
- options?: __HttpHandlerOptions
225
+ options?: __HttpHandlerOptions,
256
226
  ): Promise<ListGroupMembershipsCommandOutput>;
257
227
  listGroupMemberships(
258
228
  args: ListGroupMembershipsCommandInput,
259
- cb: (err: any, data?: ListGroupMembershipsCommandOutput) => void
229
+ cb: (err: any, data?: ListGroupMembershipsCommandOutput) => void,
260
230
  ): void;
261
231
  listGroupMemberships(
262
232
  args: ListGroupMembershipsCommandInput,
263
233
  options: __HttpHandlerOptions,
264
- cb: (err: any, data?: ListGroupMembershipsCommandOutput) => void
234
+ cb: (err: any, data?: ListGroupMembershipsCommandOutput) => void,
265
235
  ): void;
266
236
  listGroupMembershipsForMember(
267
237
  args: ListGroupMembershipsForMemberCommandInput,
268
- options?: __HttpHandlerOptions
238
+ options?: __HttpHandlerOptions,
269
239
  ): Promise<ListGroupMembershipsForMemberCommandOutput>;
270
240
  listGroupMembershipsForMember(
271
241
  args: ListGroupMembershipsForMemberCommandInput,
272
- cb: (err: any, data?: ListGroupMembershipsForMemberCommandOutput) => void
242
+ cb: (err: any, data?: ListGroupMembershipsForMemberCommandOutput) => void,
273
243
  ): void;
274
244
  listGroupMembershipsForMember(
275
245
  args: ListGroupMembershipsForMemberCommandInput,
276
246
  options: __HttpHandlerOptions,
277
- cb: (err: any, data?: ListGroupMembershipsForMemberCommandOutput) => void
247
+ cb: (err: any, data?: ListGroupMembershipsForMemberCommandOutput) => void,
278
248
  ): void;
279
249
  listGroups(
280
250
  args: ListGroupsCommandInput,
281
- options?: __HttpHandlerOptions
251
+ options?: __HttpHandlerOptions,
282
252
  ): Promise<ListGroupsCommandOutput>;
283
253
  listGroups(
284
254
  args: ListGroupsCommandInput,
285
- cb: (err: any, data?: ListGroupsCommandOutput) => void
255
+ cb: (err: any, data?: ListGroupsCommandOutput) => void,
286
256
  ): void;
287
257
  listGroups(
288
258
  args: ListGroupsCommandInput,
289
259
  options: __HttpHandlerOptions,
290
- cb: (err: any, data?: ListGroupsCommandOutput) => void
260
+ cb: (err: any, data?: ListGroupsCommandOutput) => void,
291
261
  ): void;
292
262
  listUsers(
293
263
  args: ListUsersCommandInput,
294
- options?: __HttpHandlerOptions
264
+ options?: __HttpHandlerOptions,
295
265
  ): Promise<ListUsersCommandOutput>;
296
266
  listUsers(
297
267
  args: ListUsersCommandInput,
298
- cb: (err: any, data?: ListUsersCommandOutput) => void
268
+ cb: (err: any, data?: ListUsersCommandOutput) => void,
299
269
  ): void;
300
270
  listUsers(
301
271
  args: ListUsersCommandInput,
302
272
  options: __HttpHandlerOptions,
303
- cb: (err: any, data?: ListUsersCommandOutput) => void
273
+ cb: (err: any, data?: ListUsersCommandOutput) => void,
304
274
  ): void;
305
275
  updateGroup(
306
276
  args: UpdateGroupCommandInput,
307
- options?: __HttpHandlerOptions
277
+ options?: __HttpHandlerOptions,
308
278
  ): Promise<UpdateGroupCommandOutput>;
309
279
  updateGroup(
310
280
  args: UpdateGroupCommandInput,
311
- cb: (err: any, data?: UpdateGroupCommandOutput) => void
281
+ cb: (err: any, data?: UpdateGroupCommandOutput) => void,
312
282
  ): void;
313
283
  updateGroup(
314
284
  args: UpdateGroupCommandInput,
315
285
  options: __HttpHandlerOptions,
316
- cb: (err: any, data?: UpdateGroupCommandOutput) => void
286
+ cb: (err: any, data?: UpdateGroupCommandOutput) => void,
317
287
  ): void;
318
288
  updateUser(
319
289
  args: UpdateUserCommandInput,
320
- options?: __HttpHandlerOptions
290
+ options?: __HttpHandlerOptions,
321
291
  ): Promise<UpdateUserCommandOutput>;
322
292
  updateUser(
323
293
  args: UpdateUserCommandInput,
324
- cb: (err: any, data?: UpdateUserCommandOutput) => void
294
+ cb: (err: any, data?: UpdateUserCommandOutput) => void,
325
295
  ): void;
326
296
  updateUser(
327
297
  args: UpdateUserCommandInput,
328
298
  options: __HttpHandlerOptions,
329
- cb: (err: any, data?: UpdateUserCommandOutput) => void
299
+ cb: (err: any, data?: UpdateUserCommandOutput) => void,
330
300
  ): void;
331
301
  paginateListGroupMemberships(
332
302
  args: ListGroupMembershipsCommandInput,
333
303
  paginationConfig?: Pick<
334
304
  PaginationConfiguration,
335
305
  Exclude<keyof PaginationConfiguration, "client">
336
- >
306
+ >,
337
307
  ): Paginator<ListGroupMembershipsCommandOutput>;
338
308
  paginateListGroupMembershipsForMember(
339
309
  args: ListGroupMembershipsForMemberCommandInput,
340
310
  paginationConfig?: Pick<
341
311
  PaginationConfiguration,
342
312
  Exclude<keyof PaginationConfiguration, "client">
343
- >
313
+ >,
344
314
  ): Paginator<ListGroupMembershipsForMemberCommandOutput>;
345
315
  paginateListGroups(
346
316
  args: ListGroupsCommandInput,
347
317
  paginationConfig?: Pick<
348
318
  PaginationConfiguration,
349
319
  Exclude<keyof PaginationConfiguration, "client">
350
- >
320
+ >,
351
321
  ): Paginator<ListGroupsCommandOutput>;
352
322
  paginateListUsers(
353
323
  args: ListUsersCommandInput,
354
324
  paginationConfig?: Pick<
355
325
  PaginationConfiguration,
356
326
  Exclude<keyof PaginationConfiguration, "client">
357
- >
327
+ >,
358
328
  ): Paginator<ListUsersCommandOutput>;
359
329
  }
360
- export declare class Identitystore
361
- extends IdentitystoreClient
362
- implements Identitystore {}
330
+ export declare class Identitystore extends IdentitystoreClient implements Identitystore {}
@@ -11,10 +11,7 @@ import {
11
11
  Client as __Client,
12
12
  } from "@smithy/core/client";
13
13
  import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
14
- import {
15
- EndpointInputConfig,
16
- EndpointResolvedConfig,
17
- } from "@smithy/core/endpoints";
14
+ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
18
15
  import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
19
16
  import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
20
17
  import {
@@ -36,30 +33,18 @@ import {
36
33
  HttpAuthSchemeInputConfig,
37
34
  HttpAuthSchemeResolvedConfig,
38
35
  } from "./auth/httpAuthSchemeProvider";
39
- import {
40
- CreateGroupCommandInput,
41
- CreateGroupCommandOutput,
42
- } from "./commands/CreateGroupCommand";
36
+ import { CreateGroupCommandInput, CreateGroupCommandOutput } from "./commands/CreateGroupCommand";
43
37
  import {
44
38
  CreateGroupMembershipCommandInput,
45
39
  CreateGroupMembershipCommandOutput,
46
40
  } from "./commands/CreateGroupMembershipCommand";
47
- import {
48
- CreateUserCommandInput,
49
- CreateUserCommandOutput,
50
- } from "./commands/CreateUserCommand";
51
- import {
52
- DeleteGroupCommandInput,
53
- DeleteGroupCommandOutput,
54
- } from "./commands/DeleteGroupCommand";
41
+ import { CreateUserCommandInput, CreateUserCommandOutput } from "./commands/CreateUserCommand";
42
+ import { DeleteGroupCommandInput, DeleteGroupCommandOutput } from "./commands/DeleteGroupCommand";
55
43
  import {
56
44
  DeleteGroupMembershipCommandInput,
57
45
  DeleteGroupMembershipCommandOutput,
58
46
  } from "./commands/DeleteGroupMembershipCommand";
59
- import {
60
- DeleteUserCommandInput,
61
- DeleteUserCommandOutput,
62
- } from "./commands/DeleteUserCommand";
47
+ import { DeleteUserCommandInput, DeleteUserCommandOutput } from "./commands/DeleteUserCommand";
63
48
  import {
64
49
  DescribeGroupCommandInput,
65
50
  DescribeGroupCommandOutput,
@@ -72,18 +57,12 @@ import {
72
57
  DescribeUserCommandInput,
73
58
  DescribeUserCommandOutput,
74
59
  } from "./commands/DescribeUserCommand";
75
- import {
76
- GetGroupIdCommandInput,
77
- GetGroupIdCommandOutput,
78
- } from "./commands/GetGroupIdCommand";
60
+ import { GetGroupIdCommandInput, GetGroupIdCommandOutput } from "./commands/GetGroupIdCommand";
79
61
  import {
80
62
  GetGroupMembershipIdCommandInput,
81
63
  GetGroupMembershipIdCommandOutput,
82
64
  } from "./commands/GetGroupMembershipIdCommand";
83
- import {
84
- GetUserIdCommandInput,
85
- GetUserIdCommandOutput,
86
- } from "./commands/GetUserIdCommand";
65
+ import { GetUserIdCommandInput, GetUserIdCommandOutput } from "./commands/GetUserIdCommand";
87
66
  import {
88
67
  IsMemberInGroupsCommandInput,
89
68
  IsMemberInGroupsCommandOutput,
@@ -96,22 +75,10 @@ import {
96
75
  ListGroupMembershipsForMemberCommandInput,
97
76
  ListGroupMembershipsForMemberCommandOutput,
98
77
  } from "./commands/ListGroupMembershipsForMemberCommand";
99
- import {
100
- ListGroupsCommandInput,
101
- ListGroupsCommandOutput,
102
- } from "./commands/ListGroupsCommand";
103
- import {
104
- ListUsersCommandInput,
105
- ListUsersCommandOutput,
106
- } from "./commands/ListUsersCommand";
107
- import {
108
- UpdateGroupCommandInput,
109
- UpdateGroupCommandOutput,
110
- } from "./commands/UpdateGroupCommand";
111
- import {
112
- UpdateUserCommandInput,
113
- UpdateUserCommandOutput,
114
- } from "./commands/UpdateUserCommand";
78
+ import { ListGroupsCommandInput, ListGroupsCommandOutput } from "./commands/ListGroupsCommand";
79
+ import { ListUsersCommandInput, ListUsersCommandOutput } from "./commands/ListUsersCommand";
80
+ import { UpdateGroupCommandInput, UpdateGroupCommandOutput } from "./commands/UpdateGroupCommand";
81
+ import { UpdateUserCommandInput, UpdateUserCommandOutput } from "./commands/UpdateUserCommand";
115
82
  import {
116
83
  ClientInputEndpointParameters,
117
84
  ClientResolvedEndpointParameters,
@@ -159,8 +126,7 @@ export type ServiceOutputTypes =
159
126
  | ListUsersCommandOutput
160
127
  | UpdateGroupCommandOutput
161
128
  | UpdateUserCommandOutput;
162
- export interface ClientDefaults
163
- extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
129
+ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
164
130
  requestHandler?: __HttpHandlerUserInput;
165
131
  sha256?: __ChecksumConstructor | __HashConstructor;
166
132
  urlParser?: __UrlParser;
@@ -185,9 +151,7 @@ export interface ClientDefaults
185
151
  extensions?: RuntimeExtension[];
186
152
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
187
153
  }
188
- export type IdentitystoreClientConfigType = Partial<
189
- __SmithyConfiguration<__HttpHandlerOptions>
190
- > &
154
+ export type IdentitystoreClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
191
155
  ClientDefaults &
192
156
  UserAgentInputConfig &
193
157
  RetryInputConfig &
@@ -196,8 +160,7 @@ export type IdentitystoreClientConfigType = Partial<
196
160
  EndpointInputConfig<EndpointParameters> &
197
161
  HttpAuthSchemeInputConfig &
198
162
  ClientInputEndpointParameters;
199
- export interface IdentitystoreClientConfig
200
- extends IdentitystoreClientConfigType {}
163
+ export interface IdentitystoreClientConfig extends IdentitystoreClientConfigType {}
201
164
  export type IdentitystoreClientResolvedConfigType =
202
165
  __SmithyResolvedConfiguration<__HttpHandlerOptions> &
203
166
  Required<ClientDefaults> &
@@ -209,8 +172,7 @@ export type IdentitystoreClientResolvedConfigType =
209
172
  EndpointResolvedConfig<EndpointParameters> &
210
173
  HttpAuthSchemeResolvedConfig &
211
174
  ClientResolvedEndpointParameters;
212
- export interface IdentitystoreClientResolvedConfig
213
- extends IdentitystoreClientResolvedConfigType {}
175
+ export interface IdentitystoreClientResolvedConfig extends IdentitystoreClientResolvedConfigType {}
214
176
  export declare class IdentitystoreClient extends __Client<
215
177
  __HttpHandlerOptions,
216
178
  ServiceInputTypes,
@@ -218,8 +180,6 @@ export declare class IdentitystoreClient extends __Client<
218
180
  IdentitystoreClientResolvedConfig
219
181
  > {
220
182
  readonly config: IdentitystoreClientResolvedConfig;
221
- constructor(
222
- ...[configuration]: __CheckOptionalClientConfig<IdentitystoreClientConfig>
223
- );
183
+ constructor(...[configuration]: __CheckOptionalClientConfig<IdentitystoreClientConfig>);
224
184
  destroy(): void;
225
185
  }
@@ -7,17 +7,10 @@ import { IdentitystoreHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
7
7
  export interface HttpAuthExtensionConfiguration {
8
8
  setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
9
9
  httpAuthSchemes(): HttpAuthScheme[];
10
- setHttpAuthSchemeProvider(
11
- httpAuthSchemeProvider: IdentitystoreHttpAuthSchemeProvider
12
- ): void;
10
+ setHttpAuthSchemeProvider(httpAuthSchemeProvider: IdentitystoreHttpAuthSchemeProvider): void;
13
11
  httpAuthSchemeProvider(): IdentitystoreHttpAuthSchemeProvider;
14
- setCredentials(
15
- credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
16
- ): void;
17
- credentials():
18
- | AwsCredentialIdentity
19
- | AwsCredentialIdentityProvider
20
- | undefined;
12
+ setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
13
+ credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
21
14
  }
22
15
  export type HttpAuthRuntimeConfig = Partial<{
23
16
  httpAuthSchemes: HttpAuthScheme[];
@@ -25,8 +18,8 @@ export type HttpAuthRuntimeConfig = Partial<{
25
18
  credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
26
19
  }>;
27
20
  export declare const getHttpAuthExtensionConfiguration: (
28
- runtimeConfig: HttpAuthRuntimeConfig
21
+ runtimeConfig: HttpAuthRuntimeConfig,
29
22
  ) => HttpAuthExtensionConfiguration;
30
23
  export declare const resolveHttpAuthRuntimeConfig: (
31
- config: HttpAuthExtensionConfiguration
24
+ config: HttpAuthExtensionConfiguration,
32
25
  ) => HttpAuthRuntimeConfig;
@@ -12,36 +12,32 @@ import {
12
12
  Provider,
13
13
  } from "@smithy/types";
14
14
  import { IdentitystoreClientResolvedConfig } from "../IdentitystoreClient";
15
- export interface IdentitystoreHttpAuthSchemeParameters
16
- extends HttpAuthSchemeParameters {
15
+ export interface IdentitystoreHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
17
16
  region?: string;
18
17
  }
19
- export interface IdentitystoreHttpAuthSchemeParametersProvider
20
- extends HttpAuthSchemeParametersProvider<
21
- IdentitystoreClientResolvedConfig,
22
- HandlerExecutionContext,
23
- IdentitystoreHttpAuthSchemeParameters,
24
- object
25
- > {}
18
+ export interface IdentitystoreHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
19
+ IdentitystoreClientResolvedConfig,
20
+ HandlerExecutionContext,
21
+ IdentitystoreHttpAuthSchemeParameters,
22
+ object
23
+ > {}
26
24
  export declare const defaultIdentitystoreHttpAuthSchemeParametersProvider: (
27
25
  config: IdentitystoreClientResolvedConfig,
28
26
  context: HandlerExecutionContext,
29
- input: object
27
+ input: object,
30
28
  ) => Promise<IdentitystoreHttpAuthSchemeParameters>;
31
- export interface IdentitystoreHttpAuthSchemeProvider
32
- extends HttpAuthSchemeProvider<IdentitystoreHttpAuthSchemeParameters> {}
29
+ export interface IdentitystoreHttpAuthSchemeProvider extends HttpAuthSchemeProvider<IdentitystoreHttpAuthSchemeParameters> {}
33
30
  export declare const defaultIdentitystoreHttpAuthSchemeProvider: IdentitystoreHttpAuthSchemeProvider;
34
31
  export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
35
32
  authSchemePreference?: string[] | Provider<string[]>;
36
33
  httpAuthSchemes?: HttpAuthScheme[];
37
34
  httpAuthSchemeProvider?: IdentitystoreHttpAuthSchemeProvider;
38
35
  }
39
- export interface HttpAuthSchemeResolvedConfig
40
- extends AwsSdkSigV4AuthResolvedConfig {
36
+ export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
41
37
  readonly authSchemePreference: Provider<string[]>;
42
38
  readonly httpAuthSchemes: HttpAuthScheme[];
43
39
  readonly httpAuthSchemeProvider: IdentitystoreHttpAuthSchemeProvider;
44
40
  }
45
41
  export declare const resolveHttpAuthSchemeConfig: <T>(
46
- config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
42
+ config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
47
43
  ) => T & HttpAuthSchemeResolvedConfig;