@aws-sdk/client-identitystore 3.168.0 → 3.170.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/Identitystore.d.ts +346 -100
  3. package/dist-types/ts3.4/IdentitystoreClient.d.ts +244 -92
  4. package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +34 -17
  5. package/dist-types/ts3.4/commands/CreateGroupMembershipCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/CreateUserCommand.d.ts +34 -17
  7. package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +34 -17
  8. package/dist-types/ts3.4/commands/DeleteGroupMembershipCommand.d.ts +41 -17
  9. package/dist-types/ts3.4/commands/DeleteUserCommand.d.ts +34 -17
  10. package/dist-types/ts3.4/commands/DescribeGroupCommand.d.ts +37 -17
  11. package/dist-types/ts3.4/commands/DescribeGroupMembershipCommand.d.ts +41 -17
  12. package/dist-types/ts3.4/commands/DescribeUserCommand.d.ts +34 -17
  13. package/dist-types/ts3.4/commands/GetGroupIdCommand.d.ts +34 -17
  14. package/dist-types/ts3.4/commands/GetGroupMembershipIdCommand.d.ts +41 -17
  15. package/dist-types/ts3.4/commands/GetUserIdCommand.d.ts +34 -17
  16. package/dist-types/ts3.4/commands/IsMemberInGroupsCommand.d.ts +37 -17
  17. package/dist-types/ts3.4/commands/ListGroupMembershipsCommand.d.ts +41 -17
  18. package/dist-types/ts3.4/commands/ListGroupMembershipsForMemberCommand.d.ts +41 -17
  19. package/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +34 -17
  20. package/dist-types/ts3.4/commands/ListUsersCommand.d.ts +34 -17
  21. package/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +34 -17
  22. package/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +34 -17
  23. package/dist-types/ts3.4/commands/index.d.ts +19 -19
  24. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  25. package/dist-types/ts3.4/index.d.ts +6 -6
  26. package/dist-types/ts3.4/models/IdentitystoreServiceException.d.ts +8 -6
  27. package/dist-types/ts3.4/models/index.d.ts +1 -1
  28. package/dist-types/ts3.4/models/models_0.d.ts +739 -696
  29. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  30. package/dist-types/ts3.4/pagination/ListGroupMembershipsForMemberPaginator.d.ts +11 -4
  31. package/dist-types/ts3.4/pagination/ListGroupMembershipsPaginator.d.ts +11 -4
  32. package/dist-types/ts3.4/pagination/ListGroupsPaginator.d.ts +11 -4
  33. package/dist-types/ts3.4/pagination/ListUsersPaginator.d.ts +11 -4
  34. package/dist-types/ts3.4/pagination/index.d.ts +5 -5
  35. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +233 -59
  36. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  37. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  38. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  39. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  40. package/package.json +34 -34
package/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
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.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-identitystore
9
+
10
+
11
+
12
+
13
+
14
+ # [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-identitystore
17
+
18
+
19
+
20
+
21
+
6
22
  # [3.168.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.167.0...v3.168.0) (2022-09-09)
7
23
 
8
24
  **Note:** Version bump only for package @aws-sdk/client-identitystore
@@ -1,100 +1,346 @@
1
- import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
- import { CreateGroupCommandInput, CreateGroupCommandOutput } from "./commands/CreateGroupCommand";
3
- import { CreateGroupMembershipCommandInput, CreateGroupMembershipCommandOutput } from "./commands/CreateGroupMembershipCommand";
4
- import { CreateUserCommandInput, CreateUserCommandOutput } from "./commands/CreateUserCommand";
5
- import { DeleteGroupCommandInput, DeleteGroupCommandOutput } from "./commands/DeleteGroupCommand";
6
- import { DeleteGroupMembershipCommandInput, DeleteGroupMembershipCommandOutput } from "./commands/DeleteGroupMembershipCommand";
7
- import { DeleteUserCommandInput, DeleteUserCommandOutput } from "./commands/DeleteUserCommand";
8
- import { DescribeGroupCommandInput, DescribeGroupCommandOutput } from "./commands/DescribeGroupCommand";
9
- import { DescribeGroupMembershipCommandInput, DescribeGroupMembershipCommandOutput } from "./commands/DescribeGroupMembershipCommand";
10
- import { DescribeUserCommandInput, DescribeUserCommandOutput } from "./commands/DescribeUserCommand";
11
- import { GetGroupIdCommandInput, GetGroupIdCommandOutput } from "./commands/GetGroupIdCommand";
12
- import { GetGroupMembershipIdCommandInput, GetGroupMembershipIdCommandOutput } from "./commands/GetGroupMembershipIdCommand";
13
- import { GetUserIdCommandInput, GetUserIdCommandOutput } from "./commands/GetUserIdCommand";
14
- import { IsMemberInGroupsCommandInput, IsMemberInGroupsCommandOutput } from "./commands/IsMemberInGroupsCommand";
15
- import { ListGroupMembershipsCommandInput, ListGroupMembershipsCommandOutput } from "./commands/ListGroupMembershipsCommand";
16
- import { ListGroupMembershipsForMemberCommandInput, ListGroupMembershipsForMemberCommandOutput } from "./commands/ListGroupMembershipsForMemberCommand";
17
- import { ListGroupsCommandInput, ListGroupsCommandOutput } from "./commands/ListGroupsCommand";
18
- import { ListUsersCommandInput, ListUsersCommandOutput } from "./commands/ListUsersCommand";
19
- import { UpdateGroupCommandInput, UpdateGroupCommandOutput } from "./commands/UpdateGroupCommand";
20
- import { UpdateUserCommandInput, UpdateUserCommandOutput } from "./commands/UpdateUserCommand";
21
- import { IdentitystoreClient } from "./IdentitystoreClient";
22
-
23
- export declare class Identitystore extends IdentitystoreClient {
24
-
25
- createGroup(args: CreateGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateGroupCommandOutput>;
26
- createGroup(args: CreateGroupCommandInput, cb: (err: any, data?: CreateGroupCommandOutput) => void): void;
27
- createGroup(args: CreateGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateGroupCommandOutput) => void): void;
28
-
29
- createGroupMembership(args: CreateGroupMembershipCommandInput, options?: __HttpHandlerOptions): Promise<CreateGroupMembershipCommandOutput>;
30
- createGroupMembership(args: CreateGroupMembershipCommandInput, cb: (err: any, data?: CreateGroupMembershipCommandOutput) => void): void;
31
- createGroupMembership(args: CreateGroupMembershipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateGroupMembershipCommandOutput) => void): void;
32
-
33
- createUser(args: CreateUserCommandInput, options?: __HttpHandlerOptions): Promise<CreateUserCommandOutput>;
34
- createUser(args: CreateUserCommandInput, cb: (err: any, data?: CreateUserCommandOutput) => void): void;
35
- createUser(args: CreateUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateUserCommandOutput) => void): void;
36
-
37
- deleteGroup(args: DeleteGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteGroupCommandOutput>;
38
- deleteGroup(args: DeleteGroupCommandInput, cb: (err: any, data?: DeleteGroupCommandOutput) => void): void;
39
- deleteGroup(args: DeleteGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteGroupCommandOutput) => void): void;
40
-
41
- deleteGroupMembership(args: DeleteGroupMembershipCommandInput, options?: __HttpHandlerOptions): Promise<DeleteGroupMembershipCommandOutput>;
42
- deleteGroupMembership(args: DeleteGroupMembershipCommandInput, cb: (err: any, data?: DeleteGroupMembershipCommandOutput) => void): void;
43
- deleteGroupMembership(args: DeleteGroupMembershipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteGroupMembershipCommandOutput) => void): void;
44
-
45
- deleteUser(args: DeleteUserCommandInput, options?: __HttpHandlerOptions): Promise<DeleteUserCommandOutput>;
46
- deleteUser(args: DeleteUserCommandInput, cb: (err: any, data?: DeleteUserCommandOutput) => void): void;
47
- deleteUser(args: DeleteUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteUserCommandOutput) => void): void;
48
-
49
- describeGroup(args: DescribeGroupCommandInput, options?: __HttpHandlerOptions): Promise<DescribeGroupCommandOutput>;
50
- describeGroup(args: DescribeGroupCommandInput, cb: (err: any, data?: DescribeGroupCommandOutput) => void): void;
51
- describeGroup(args: DescribeGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeGroupCommandOutput) => void): void;
52
-
53
- describeGroupMembership(args: DescribeGroupMembershipCommandInput, options?: __HttpHandlerOptions): Promise<DescribeGroupMembershipCommandOutput>;
54
- describeGroupMembership(args: DescribeGroupMembershipCommandInput, cb: (err: any, data?: DescribeGroupMembershipCommandOutput) => void): void;
55
- describeGroupMembership(args: DescribeGroupMembershipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeGroupMembershipCommandOutput) => void): void;
56
-
57
- describeUser(args: DescribeUserCommandInput, options?: __HttpHandlerOptions): Promise<DescribeUserCommandOutput>;
58
- describeUser(args: DescribeUserCommandInput, cb: (err: any, data?: DescribeUserCommandOutput) => void): void;
59
- describeUser(args: DescribeUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeUserCommandOutput) => void): void;
60
-
61
- getGroupId(args: GetGroupIdCommandInput, options?: __HttpHandlerOptions): Promise<GetGroupIdCommandOutput>;
62
- getGroupId(args: GetGroupIdCommandInput, cb: (err: any, data?: GetGroupIdCommandOutput) => void): void;
63
- getGroupId(args: GetGroupIdCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetGroupIdCommandOutput) => void): void;
64
-
65
- getGroupMembershipId(args: GetGroupMembershipIdCommandInput, options?: __HttpHandlerOptions): Promise<GetGroupMembershipIdCommandOutput>;
66
- getGroupMembershipId(args: GetGroupMembershipIdCommandInput, cb: (err: any, data?: GetGroupMembershipIdCommandOutput) => void): void;
67
- getGroupMembershipId(args: GetGroupMembershipIdCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetGroupMembershipIdCommandOutput) => void): void;
68
-
69
- getUserId(args: GetUserIdCommandInput, options?: __HttpHandlerOptions): Promise<GetUserIdCommandOutput>;
70
- getUserId(args: GetUserIdCommandInput, cb: (err: any, data?: GetUserIdCommandOutput) => void): void;
71
- getUserId(args: GetUserIdCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetUserIdCommandOutput) => void): void;
72
-
73
- isMemberInGroups(args: IsMemberInGroupsCommandInput, options?: __HttpHandlerOptions): Promise<IsMemberInGroupsCommandOutput>;
74
- isMemberInGroups(args: IsMemberInGroupsCommandInput, cb: (err: any, data?: IsMemberInGroupsCommandOutput) => void): void;
75
- isMemberInGroups(args: IsMemberInGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: IsMemberInGroupsCommandOutput) => void): void;
76
-
77
- listGroupMemberships(args: ListGroupMembershipsCommandInput, options?: __HttpHandlerOptions): Promise<ListGroupMembershipsCommandOutput>;
78
- listGroupMemberships(args: ListGroupMembershipsCommandInput, cb: (err: any, data?: ListGroupMembershipsCommandOutput) => void): void;
79
- listGroupMemberships(args: ListGroupMembershipsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListGroupMembershipsCommandOutput) => void): void;
80
-
81
- listGroupMembershipsForMember(args: ListGroupMembershipsForMemberCommandInput, options?: __HttpHandlerOptions): Promise<ListGroupMembershipsForMemberCommandOutput>;
82
- listGroupMembershipsForMember(args: ListGroupMembershipsForMemberCommandInput, cb: (err: any, data?: ListGroupMembershipsForMemberCommandOutput) => void): void;
83
- listGroupMembershipsForMember(args: ListGroupMembershipsForMemberCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListGroupMembershipsForMemberCommandOutput) => void): void;
84
-
85
- listGroups(args: ListGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListGroupsCommandOutput>;
86
- listGroups(args: ListGroupsCommandInput, cb: (err: any, data?: ListGroupsCommandOutput) => void): void;
87
- listGroups(args: ListGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListGroupsCommandOutput) => void): void;
88
-
89
- listUsers(args: ListUsersCommandInput, options?: __HttpHandlerOptions): Promise<ListUsersCommandOutput>;
90
- listUsers(args: ListUsersCommandInput, cb: (err: any, data?: ListUsersCommandOutput) => void): void;
91
- listUsers(args: ListUsersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListUsersCommandOutput) => void): void;
92
-
93
- updateGroup(args: UpdateGroupCommandInput, options?: __HttpHandlerOptions): Promise<UpdateGroupCommandOutput>;
94
- updateGroup(args: UpdateGroupCommandInput, cb: (err: any, data?: UpdateGroupCommandOutput) => void): void;
95
- updateGroup(args: UpdateGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateGroupCommandOutput) => void): void;
96
-
97
- updateUser(args: UpdateUserCommandInput, options?: __HttpHandlerOptions): Promise<UpdateUserCommandOutput>;
98
- updateUser(args: UpdateUserCommandInput, cb: (err: any, data?: UpdateUserCommandOutput) => void): void;
99
- updateUser(args: UpdateUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateUserCommandOutput) => void): void;
100
- }
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import {
3
+ CreateGroupCommandInput,
4
+ CreateGroupCommandOutput,
5
+ } from "./commands/CreateGroupCommand";
6
+ import {
7
+ CreateGroupMembershipCommandInput,
8
+ CreateGroupMembershipCommandOutput,
9
+ } from "./commands/CreateGroupMembershipCommand";
10
+ import {
11
+ CreateUserCommandInput,
12
+ CreateUserCommandOutput,
13
+ } from "./commands/CreateUserCommand";
14
+ import {
15
+ DeleteGroupCommandInput,
16
+ DeleteGroupCommandOutput,
17
+ } from "./commands/DeleteGroupCommand";
18
+ import {
19
+ DeleteGroupMembershipCommandInput,
20
+ DeleteGroupMembershipCommandOutput,
21
+ } from "./commands/DeleteGroupMembershipCommand";
22
+ import {
23
+ DeleteUserCommandInput,
24
+ DeleteUserCommandOutput,
25
+ } from "./commands/DeleteUserCommand";
26
+ import {
27
+ DescribeGroupCommandInput,
28
+ DescribeGroupCommandOutput,
29
+ } from "./commands/DescribeGroupCommand";
30
+ import {
31
+ DescribeGroupMembershipCommandInput,
32
+ DescribeGroupMembershipCommandOutput,
33
+ } from "./commands/DescribeGroupMembershipCommand";
34
+ import {
35
+ DescribeUserCommandInput,
36
+ DescribeUserCommandOutput,
37
+ } from "./commands/DescribeUserCommand";
38
+ import {
39
+ GetGroupIdCommandInput,
40
+ GetGroupIdCommandOutput,
41
+ } from "./commands/GetGroupIdCommand";
42
+ import {
43
+ GetGroupMembershipIdCommandInput,
44
+ GetGroupMembershipIdCommandOutput,
45
+ } from "./commands/GetGroupMembershipIdCommand";
46
+ import {
47
+ GetUserIdCommandInput,
48
+ GetUserIdCommandOutput,
49
+ } from "./commands/GetUserIdCommand";
50
+ import {
51
+ IsMemberInGroupsCommandInput,
52
+ IsMemberInGroupsCommandOutput,
53
+ } from "./commands/IsMemberInGroupsCommand";
54
+ import {
55
+ ListGroupMembershipsCommandInput,
56
+ ListGroupMembershipsCommandOutput,
57
+ } from "./commands/ListGroupMembershipsCommand";
58
+ import {
59
+ ListGroupMembershipsForMemberCommandInput,
60
+ ListGroupMembershipsForMemberCommandOutput,
61
+ } from "./commands/ListGroupMembershipsForMemberCommand";
62
+ import {
63
+ ListGroupsCommandInput,
64
+ ListGroupsCommandOutput,
65
+ } from "./commands/ListGroupsCommand";
66
+ import {
67
+ ListUsersCommandInput,
68
+ ListUsersCommandOutput,
69
+ } from "./commands/ListUsersCommand";
70
+ import {
71
+ UpdateGroupCommandInput,
72
+ UpdateGroupCommandOutput,
73
+ } from "./commands/UpdateGroupCommand";
74
+ import {
75
+ UpdateUserCommandInput,
76
+ UpdateUserCommandOutput,
77
+ } from "./commands/UpdateUserCommand";
78
+ import { IdentitystoreClient } from "./IdentitystoreClient";
79
+
80
+ export declare class Identitystore extends IdentitystoreClient {
81
+ createGroup(
82
+ args: CreateGroupCommandInput,
83
+ options?: __HttpHandlerOptions
84
+ ): Promise<CreateGroupCommandOutput>;
85
+ createGroup(
86
+ args: CreateGroupCommandInput,
87
+ cb: (err: any, data?: CreateGroupCommandOutput) => void
88
+ ): void;
89
+ createGroup(
90
+ args: CreateGroupCommandInput,
91
+ options: __HttpHandlerOptions,
92
+ cb: (err: any, data?: CreateGroupCommandOutput) => void
93
+ ): void;
94
+
95
+ createGroupMembership(
96
+ args: CreateGroupMembershipCommandInput,
97
+ options?: __HttpHandlerOptions
98
+ ): Promise<CreateGroupMembershipCommandOutput>;
99
+ createGroupMembership(
100
+ args: CreateGroupMembershipCommandInput,
101
+ cb: (err: any, data?: CreateGroupMembershipCommandOutput) => void
102
+ ): void;
103
+ createGroupMembership(
104
+ args: CreateGroupMembershipCommandInput,
105
+ options: __HttpHandlerOptions,
106
+ cb: (err: any, data?: CreateGroupMembershipCommandOutput) => void
107
+ ): void;
108
+
109
+ createUser(
110
+ args: CreateUserCommandInput,
111
+ options?: __HttpHandlerOptions
112
+ ): Promise<CreateUserCommandOutput>;
113
+ createUser(
114
+ args: CreateUserCommandInput,
115
+ cb: (err: any, data?: CreateUserCommandOutput) => void
116
+ ): void;
117
+ createUser(
118
+ args: CreateUserCommandInput,
119
+ options: __HttpHandlerOptions,
120
+ cb: (err: any, data?: CreateUserCommandOutput) => void
121
+ ): void;
122
+
123
+ deleteGroup(
124
+ args: DeleteGroupCommandInput,
125
+ options?: __HttpHandlerOptions
126
+ ): Promise<DeleteGroupCommandOutput>;
127
+ deleteGroup(
128
+ args: DeleteGroupCommandInput,
129
+ cb: (err: any, data?: DeleteGroupCommandOutput) => void
130
+ ): void;
131
+ deleteGroup(
132
+ args: DeleteGroupCommandInput,
133
+ options: __HttpHandlerOptions,
134
+ cb: (err: any, data?: DeleteGroupCommandOutput) => void
135
+ ): void;
136
+
137
+ deleteGroupMembership(
138
+ args: DeleteGroupMembershipCommandInput,
139
+ options?: __HttpHandlerOptions
140
+ ): Promise<DeleteGroupMembershipCommandOutput>;
141
+ deleteGroupMembership(
142
+ args: DeleteGroupMembershipCommandInput,
143
+ cb: (err: any, data?: DeleteGroupMembershipCommandOutput) => void
144
+ ): void;
145
+ deleteGroupMembership(
146
+ args: DeleteGroupMembershipCommandInput,
147
+ options: __HttpHandlerOptions,
148
+ cb: (err: any, data?: DeleteGroupMembershipCommandOutput) => void
149
+ ): void;
150
+
151
+ deleteUser(
152
+ args: DeleteUserCommandInput,
153
+ options?: __HttpHandlerOptions
154
+ ): Promise<DeleteUserCommandOutput>;
155
+ deleteUser(
156
+ args: DeleteUserCommandInput,
157
+ cb: (err: any, data?: DeleteUserCommandOutput) => void
158
+ ): void;
159
+ deleteUser(
160
+ args: DeleteUserCommandInput,
161
+ options: __HttpHandlerOptions,
162
+ cb: (err: any, data?: DeleteUserCommandOutput) => void
163
+ ): void;
164
+
165
+ describeGroup(
166
+ args: DescribeGroupCommandInput,
167
+ options?: __HttpHandlerOptions
168
+ ): Promise<DescribeGroupCommandOutput>;
169
+ describeGroup(
170
+ args: DescribeGroupCommandInput,
171
+ cb: (err: any, data?: DescribeGroupCommandOutput) => void
172
+ ): void;
173
+ describeGroup(
174
+ args: DescribeGroupCommandInput,
175
+ options: __HttpHandlerOptions,
176
+ cb: (err: any, data?: DescribeGroupCommandOutput) => void
177
+ ): void;
178
+
179
+ describeGroupMembership(
180
+ args: DescribeGroupMembershipCommandInput,
181
+ options?: __HttpHandlerOptions
182
+ ): Promise<DescribeGroupMembershipCommandOutput>;
183
+ describeGroupMembership(
184
+ args: DescribeGroupMembershipCommandInput,
185
+ cb: (err: any, data?: DescribeGroupMembershipCommandOutput) => void
186
+ ): void;
187
+ describeGroupMembership(
188
+ args: DescribeGroupMembershipCommandInput,
189
+ options: __HttpHandlerOptions,
190
+ cb: (err: any, data?: DescribeGroupMembershipCommandOutput) => void
191
+ ): void;
192
+
193
+ describeUser(
194
+ args: DescribeUserCommandInput,
195
+ options?: __HttpHandlerOptions
196
+ ): Promise<DescribeUserCommandOutput>;
197
+ describeUser(
198
+ args: DescribeUserCommandInput,
199
+ cb: (err: any, data?: DescribeUserCommandOutput) => void
200
+ ): void;
201
+ describeUser(
202
+ args: DescribeUserCommandInput,
203
+ options: __HttpHandlerOptions,
204
+ cb: (err: any, data?: DescribeUserCommandOutput) => void
205
+ ): void;
206
+
207
+ getGroupId(
208
+ args: GetGroupIdCommandInput,
209
+ options?: __HttpHandlerOptions
210
+ ): Promise<GetGroupIdCommandOutput>;
211
+ getGroupId(
212
+ args: GetGroupIdCommandInput,
213
+ cb: (err: any, data?: GetGroupIdCommandOutput) => void
214
+ ): void;
215
+ getGroupId(
216
+ args: GetGroupIdCommandInput,
217
+ options: __HttpHandlerOptions,
218
+ cb: (err: any, data?: GetGroupIdCommandOutput) => void
219
+ ): void;
220
+
221
+ getGroupMembershipId(
222
+ args: GetGroupMembershipIdCommandInput,
223
+ options?: __HttpHandlerOptions
224
+ ): Promise<GetGroupMembershipIdCommandOutput>;
225
+ getGroupMembershipId(
226
+ args: GetGroupMembershipIdCommandInput,
227
+ cb: (err: any, data?: GetGroupMembershipIdCommandOutput) => void
228
+ ): void;
229
+ getGroupMembershipId(
230
+ args: GetGroupMembershipIdCommandInput,
231
+ options: __HttpHandlerOptions,
232
+ cb: (err: any, data?: GetGroupMembershipIdCommandOutput) => void
233
+ ): void;
234
+
235
+ getUserId(
236
+ args: GetUserIdCommandInput,
237
+ options?: __HttpHandlerOptions
238
+ ): Promise<GetUserIdCommandOutput>;
239
+ getUserId(
240
+ args: GetUserIdCommandInput,
241
+ cb: (err: any, data?: GetUserIdCommandOutput) => void
242
+ ): void;
243
+ getUserId(
244
+ args: GetUserIdCommandInput,
245
+ options: __HttpHandlerOptions,
246
+ cb: (err: any, data?: GetUserIdCommandOutput) => void
247
+ ): void;
248
+
249
+ isMemberInGroups(
250
+ args: IsMemberInGroupsCommandInput,
251
+ options?: __HttpHandlerOptions
252
+ ): Promise<IsMemberInGroupsCommandOutput>;
253
+ isMemberInGroups(
254
+ args: IsMemberInGroupsCommandInput,
255
+ cb: (err: any, data?: IsMemberInGroupsCommandOutput) => void
256
+ ): void;
257
+ isMemberInGroups(
258
+ args: IsMemberInGroupsCommandInput,
259
+ options: __HttpHandlerOptions,
260
+ cb: (err: any, data?: IsMemberInGroupsCommandOutput) => void
261
+ ): void;
262
+
263
+ listGroupMemberships(
264
+ args: ListGroupMembershipsCommandInput,
265
+ options?: __HttpHandlerOptions
266
+ ): Promise<ListGroupMembershipsCommandOutput>;
267
+ listGroupMemberships(
268
+ args: ListGroupMembershipsCommandInput,
269
+ cb: (err: any, data?: ListGroupMembershipsCommandOutput) => void
270
+ ): void;
271
+ listGroupMemberships(
272
+ args: ListGroupMembershipsCommandInput,
273
+ options: __HttpHandlerOptions,
274
+ cb: (err: any, data?: ListGroupMembershipsCommandOutput) => void
275
+ ): void;
276
+
277
+ listGroupMembershipsForMember(
278
+ args: ListGroupMembershipsForMemberCommandInput,
279
+ options?: __HttpHandlerOptions
280
+ ): Promise<ListGroupMembershipsForMemberCommandOutput>;
281
+ listGroupMembershipsForMember(
282
+ args: ListGroupMembershipsForMemberCommandInput,
283
+ cb: (err: any, data?: ListGroupMembershipsForMemberCommandOutput) => void
284
+ ): void;
285
+ listGroupMembershipsForMember(
286
+ args: ListGroupMembershipsForMemberCommandInput,
287
+ options: __HttpHandlerOptions,
288
+ cb: (err: any, data?: ListGroupMembershipsForMemberCommandOutput) => void
289
+ ): void;
290
+
291
+ listGroups(
292
+ args: ListGroupsCommandInput,
293
+ options?: __HttpHandlerOptions
294
+ ): Promise<ListGroupsCommandOutput>;
295
+ listGroups(
296
+ args: ListGroupsCommandInput,
297
+ cb: (err: any, data?: ListGroupsCommandOutput) => void
298
+ ): void;
299
+ listGroups(
300
+ args: ListGroupsCommandInput,
301
+ options: __HttpHandlerOptions,
302
+ cb: (err: any, data?: ListGroupsCommandOutput) => void
303
+ ): void;
304
+
305
+ listUsers(
306
+ args: ListUsersCommandInput,
307
+ options?: __HttpHandlerOptions
308
+ ): Promise<ListUsersCommandOutput>;
309
+ listUsers(
310
+ args: ListUsersCommandInput,
311
+ cb: (err: any, data?: ListUsersCommandOutput) => void
312
+ ): void;
313
+ listUsers(
314
+ args: ListUsersCommandInput,
315
+ options: __HttpHandlerOptions,
316
+ cb: (err: any, data?: ListUsersCommandOutput) => void
317
+ ): void;
318
+
319
+ updateGroup(
320
+ args: UpdateGroupCommandInput,
321
+ options?: __HttpHandlerOptions
322
+ ): Promise<UpdateGroupCommandOutput>;
323
+ updateGroup(
324
+ args: UpdateGroupCommandInput,
325
+ cb: (err: any, data?: UpdateGroupCommandOutput) => void
326
+ ): void;
327
+ updateGroup(
328
+ args: UpdateGroupCommandInput,
329
+ options: __HttpHandlerOptions,
330
+ cb: (err: any, data?: UpdateGroupCommandOutput) => void
331
+ ): void;
332
+
333
+ updateUser(
334
+ args: UpdateUserCommandInput,
335
+ options?: __HttpHandlerOptions
336
+ ): Promise<UpdateUserCommandOutput>;
337
+ updateUser(
338
+ args: UpdateUserCommandInput,
339
+ cb: (err: any, data?: UpdateUserCommandOutput) => void
340
+ ): void;
341
+ updateUser(
342
+ args: UpdateUserCommandInput,
343
+ options: __HttpHandlerOptions,
344
+ cb: (err: any, data?: UpdateUserCommandOutput) => void
345
+ ): void;
346
+ }