@aws-sdk/client-identitystore 3.169.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.
Files changed (40) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/Identitystore.d.ts +327 -100
  3. package/dist-types/ts3.4/IdentitystoreClient.d.ts +219 -92
  4. package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +32 -17
  5. package/dist-types/ts3.4/commands/CreateGroupMembershipCommand.d.ts +39 -17
  6. package/dist-types/ts3.4/commands/CreateUserCommand.d.ts +32 -17
  7. package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +32 -17
  8. package/dist-types/ts3.4/commands/DeleteGroupMembershipCommand.d.ts +39 -17
  9. package/dist-types/ts3.4/commands/DeleteUserCommand.d.ts +32 -17
  10. package/dist-types/ts3.4/commands/DescribeGroupCommand.d.ts +35 -17
  11. package/dist-types/ts3.4/commands/DescribeGroupMembershipCommand.d.ts +39 -17
  12. package/dist-types/ts3.4/commands/DescribeUserCommand.d.ts +32 -17
  13. package/dist-types/ts3.4/commands/GetGroupIdCommand.d.ts +32 -17
  14. package/dist-types/ts3.4/commands/GetGroupMembershipIdCommand.d.ts +39 -17
  15. package/dist-types/ts3.4/commands/GetUserIdCommand.d.ts +32 -17
  16. package/dist-types/ts3.4/commands/IsMemberInGroupsCommand.d.ts +35 -17
  17. package/dist-types/ts3.4/commands/ListGroupMembershipsCommand.d.ts +39 -17
  18. package/dist-types/ts3.4/commands/ListGroupMembershipsForMemberCommand.d.ts +39 -17
  19. package/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +32 -17
  20. package/dist-types/ts3.4/commands/ListUsersCommand.d.ts +32 -17
  21. package/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +32 -17
  22. package/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +32 -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 +7 -6
  27. package/dist-types/ts3.4/models/index.d.ts +1 -1
  28. package/dist-types/ts3.4/models/models_0.d.ts +525 -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 +65 -38
  37. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  38. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  39. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -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.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
+
14
+ # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-identitystore
17
+
18
+
19
+
20
+
21
+
6
22
  # [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
7
23
 
8
24
  **Note:** Version bump only for package @aws-sdk/client-identitystore
@@ -1,100 +1,327 @@
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
+ export declare class Identitystore extends IdentitystoreClient {
80
+ createGroup(
81
+ args: CreateGroupCommandInput,
82
+ options?: __HttpHandlerOptions
83
+ ): Promise<CreateGroupCommandOutput>;
84
+ createGroup(
85
+ args: CreateGroupCommandInput,
86
+ cb: (err: any, data?: CreateGroupCommandOutput) => void
87
+ ): void;
88
+ createGroup(
89
+ args: CreateGroupCommandInput,
90
+ options: __HttpHandlerOptions,
91
+ cb: (err: any, data?: CreateGroupCommandOutput) => void
92
+ ): void;
93
+ createGroupMembership(
94
+ args: CreateGroupMembershipCommandInput,
95
+ options?: __HttpHandlerOptions
96
+ ): Promise<CreateGroupMembershipCommandOutput>;
97
+ createGroupMembership(
98
+ args: CreateGroupMembershipCommandInput,
99
+ cb: (err: any, data?: CreateGroupMembershipCommandOutput) => void
100
+ ): void;
101
+ createGroupMembership(
102
+ args: CreateGroupMembershipCommandInput,
103
+ options: __HttpHandlerOptions,
104
+ cb: (err: any, data?: CreateGroupMembershipCommandOutput) => void
105
+ ): void;
106
+ createUser(
107
+ args: CreateUserCommandInput,
108
+ options?: __HttpHandlerOptions
109
+ ): Promise<CreateUserCommandOutput>;
110
+ createUser(
111
+ args: CreateUserCommandInput,
112
+ cb: (err: any, data?: CreateUserCommandOutput) => void
113
+ ): void;
114
+ createUser(
115
+ args: CreateUserCommandInput,
116
+ options: __HttpHandlerOptions,
117
+ cb: (err: any, data?: CreateUserCommandOutput) => void
118
+ ): void;
119
+ deleteGroup(
120
+ args: DeleteGroupCommandInput,
121
+ options?: __HttpHandlerOptions
122
+ ): Promise<DeleteGroupCommandOutput>;
123
+ deleteGroup(
124
+ args: DeleteGroupCommandInput,
125
+ cb: (err: any, data?: DeleteGroupCommandOutput) => void
126
+ ): void;
127
+ deleteGroup(
128
+ args: DeleteGroupCommandInput,
129
+ options: __HttpHandlerOptions,
130
+ cb: (err: any, data?: DeleteGroupCommandOutput) => void
131
+ ): void;
132
+ deleteGroupMembership(
133
+ args: DeleteGroupMembershipCommandInput,
134
+ options?: __HttpHandlerOptions
135
+ ): Promise<DeleteGroupMembershipCommandOutput>;
136
+ deleteGroupMembership(
137
+ args: DeleteGroupMembershipCommandInput,
138
+ cb: (err: any, data?: DeleteGroupMembershipCommandOutput) => void
139
+ ): void;
140
+ deleteGroupMembership(
141
+ args: DeleteGroupMembershipCommandInput,
142
+ options: __HttpHandlerOptions,
143
+ cb: (err: any, data?: DeleteGroupMembershipCommandOutput) => void
144
+ ): void;
145
+ deleteUser(
146
+ args: DeleteUserCommandInput,
147
+ options?: __HttpHandlerOptions
148
+ ): Promise<DeleteUserCommandOutput>;
149
+ deleteUser(
150
+ args: DeleteUserCommandInput,
151
+ cb: (err: any, data?: DeleteUserCommandOutput) => void
152
+ ): void;
153
+ deleteUser(
154
+ args: DeleteUserCommandInput,
155
+ options: __HttpHandlerOptions,
156
+ cb: (err: any, data?: DeleteUserCommandOutput) => void
157
+ ): void;
158
+ describeGroup(
159
+ args: DescribeGroupCommandInput,
160
+ options?: __HttpHandlerOptions
161
+ ): Promise<DescribeGroupCommandOutput>;
162
+ describeGroup(
163
+ args: DescribeGroupCommandInput,
164
+ cb: (err: any, data?: DescribeGroupCommandOutput) => void
165
+ ): void;
166
+ describeGroup(
167
+ args: DescribeGroupCommandInput,
168
+ options: __HttpHandlerOptions,
169
+ cb: (err: any, data?: DescribeGroupCommandOutput) => void
170
+ ): void;
171
+ describeGroupMembership(
172
+ args: DescribeGroupMembershipCommandInput,
173
+ options?: __HttpHandlerOptions
174
+ ): Promise<DescribeGroupMembershipCommandOutput>;
175
+ describeGroupMembership(
176
+ args: DescribeGroupMembershipCommandInput,
177
+ cb: (err: any, data?: DescribeGroupMembershipCommandOutput) => void
178
+ ): void;
179
+ describeGroupMembership(
180
+ args: DescribeGroupMembershipCommandInput,
181
+ options: __HttpHandlerOptions,
182
+ cb: (err: any, data?: DescribeGroupMembershipCommandOutput) => void
183
+ ): void;
184
+ describeUser(
185
+ args: DescribeUserCommandInput,
186
+ options?: __HttpHandlerOptions
187
+ ): Promise<DescribeUserCommandOutput>;
188
+ describeUser(
189
+ args: DescribeUserCommandInput,
190
+ cb: (err: any, data?: DescribeUserCommandOutput) => void
191
+ ): void;
192
+ describeUser(
193
+ args: DescribeUserCommandInput,
194
+ options: __HttpHandlerOptions,
195
+ cb: (err: any, data?: DescribeUserCommandOutput) => void
196
+ ): void;
197
+ getGroupId(
198
+ args: GetGroupIdCommandInput,
199
+ options?: __HttpHandlerOptions
200
+ ): Promise<GetGroupIdCommandOutput>;
201
+ getGroupId(
202
+ args: GetGroupIdCommandInput,
203
+ cb: (err: any, data?: GetGroupIdCommandOutput) => void
204
+ ): void;
205
+ getGroupId(
206
+ args: GetGroupIdCommandInput,
207
+ options: __HttpHandlerOptions,
208
+ cb: (err: any, data?: GetGroupIdCommandOutput) => void
209
+ ): void;
210
+ getGroupMembershipId(
211
+ args: GetGroupMembershipIdCommandInput,
212
+ options?: __HttpHandlerOptions
213
+ ): Promise<GetGroupMembershipIdCommandOutput>;
214
+ getGroupMembershipId(
215
+ args: GetGroupMembershipIdCommandInput,
216
+ cb: (err: any, data?: GetGroupMembershipIdCommandOutput) => void
217
+ ): void;
218
+ getGroupMembershipId(
219
+ args: GetGroupMembershipIdCommandInput,
220
+ options: __HttpHandlerOptions,
221
+ cb: (err: any, data?: GetGroupMembershipIdCommandOutput) => void
222
+ ): void;
223
+ getUserId(
224
+ args: GetUserIdCommandInput,
225
+ options?: __HttpHandlerOptions
226
+ ): Promise<GetUserIdCommandOutput>;
227
+ getUserId(
228
+ args: GetUserIdCommandInput,
229
+ cb: (err: any, data?: GetUserIdCommandOutput) => void
230
+ ): void;
231
+ getUserId(
232
+ args: GetUserIdCommandInput,
233
+ options: __HttpHandlerOptions,
234
+ cb: (err: any, data?: GetUserIdCommandOutput) => void
235
+ ): void;
236
+ isMemberInGroups(
237
+ args: IsMemberInGroupsCommandInput,
238
+ options?: __HttpHandlerOptions
239
+ ): Promise<IsMemberInGroupsCommandOutput>;
240
+ isMemberInGroups(
241
+ args: IsMemberInGroupsCommandInput,
242
+ cb: (err: any, data?: IsMemberInGroupsCommandOutput) => void
243
+ ): void;
244
+ isMemberInGroups(
245
+ args: IsMemberInGroupsCommandInput,
246
+ options: __HttpHandlerOptions,
247
+ cb: (err: any, data?: IsMemberInGroupsCommandOutput) => void
248
+ ): void;
249
+ listGroupMemberships(
250
+ args: ListGroupMembershipsCommandInput,
251
+ options?: __HttpHandlerOptions
252
+ ): Promise<ListGroupMembershipsCommandOutput>;
253
+ listGroupMemberships(
254
+ args: ListGroupMembershipsCommandInput,
255
+ cb: (err: any, data?: ListGroupMembershipsCommandOutput) => void
256
+ ): void;
257
+ listGroupMemberships(
258
+ args: ListGroupMembershipsCommandInput,
259
+ options: __HttpHandlerOptions,
260
+ cb: (err: any, data?: ListGroupMembershipsCommandOutput) => void
261
+ ): void;
262
+ listGroupMembershipsForMember(
263
+ args: ListGroupMembershipsForMemberCommandInput,
264
+ options?: __HttpHandlerOptions
265
+ ): Promise<ListGroupMembershipsForMemberCommandOutput>;
266
+ listGroupMembershipsForMember(
267
+ args: ListGroupMembershipsForMemberCommandInput,
268
+ cb: (err: any, data?: ListGroupMembershipsForMemberCommandOutput) => void
269
+ ): void;
270
+ listGroupMembershipsForMember(
271
+ args: ListGroupMembershipsForMemberCommandInput,
272
+ options: __HttpHandlerOptions,
273
+ cb: (err: any, data?: ListGroupMembershipsForMemberCommandOutput) => void
274
+ ): void;
275
+ listGroups(
276
+ args: ListGroupsCommandInput,
277
+ options?: __HttpHandlerOptions
278
+ ): Promise<ListGroupsCommandOutput>;
279
+ listGroups(
280
+ args: ListGroupsCommandInput,
281
+ cb: (err: any, data?: ListGroupsCommandOutput) => void
282
+ ): void;
283
+ listGroups(
284
+ args: ListGroupsCommandInput,
285
+ options: __HttpHandlerOptions,
286
+ cb: (err: any, data?: ListGroupsCommandOutput) => void
287
+ ): void;
288
+ listUsers(
289
+ args: ListUsersCommandInput,
290
+ options?: __HttpHandlerOptions
291
+ ): Promise<ListUsersCommandOutput>;
292
+ listUsers(
293
+ args: ListUsersCommandInput,
294
+ cb: (err: any, data?: ListUsersCommandOutput) => void
295
+ ): void;
296
+ listUsers(
297
+ args: ListUsersCommandInput,
298
+ options: __HttpHandlerOptions,
299
+ cb: (err: any, data?: ListUsersCommandOutput) => void
300
+ ): void;
301
+ updateGroup(
302
+ args: UpdateGroupCommandInput,
303
+ options?: __HttpHandlerOptions
304
+ ): Promise<UpdateGroupCommandOutput>;
305
+ updateGroup(
306
+ args: UpdateGroupCommandInput,
307
+ cb: (err: any, data?: UpdateGroupCommandOutput) => void
308
+ ): void;
309
+ updateGroup(
310
+ args: UpdateGroupCommandInput,
311
+ options: __HttpHandlerOptions,
312
+ cb: (err: any, data?: UpdateGroupCommandOutput) => void
313
+ ): void;
314
+ updateUser(
315
+ args: UpdateUserCommandInput,
316
+ options?: __HttpHandlerOptions
317
+ ): Promise<UpdateUserCommandOutput>;
318
+ updateUser(
319
+ args: UpdateUserCommandInput,
320
+ cb: (err: any, data?: UpdateUserCommandOutput) => void
321
+ ): void;
322
+ updateUser(
323
+ args: UpdateUserCommandInput,
324
+ options: __HttpHandlerOptions,
325
+ cb: (err: any, data?: UpdateUserCommandOutput) => void
326
+ ): void;
327
+ }