@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.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/Identitystore.d.ts +327 -100
- package/dist-types/ts3.4/IdentitystoreClient.d.ts +219 -92
- package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CreateGroupMembershipCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateUserCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteGroupMembershipCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteUserCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DescribeGroupCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DescribeGroupMembershipCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeUserCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetGroupIdCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetGroupMembershipIdCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetUserIdCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/IsMemberInGroupsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListGroupMembershipsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListGroupMembershipsForMemberCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListUsersCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/index.d.ts +19 -19
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/IdentitystoreServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +525 -696
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListGroupMembershipsForMemberPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListGroupMembershipsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListGroupsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListUsersPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +5 -5
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +233 -59
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- 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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
import {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
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
|
+
}
|