@aws-sdk/client-directory-service-data 3.1087.0 → 3.1089.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/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/DirectoryServiceData.d.ts +67 -97
- package/dist-types/ts3.4/DirectoryServiceDataClient.d.ts +15 -55
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -10
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/AddGroupMemberCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreateUserCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteUserCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DescribeGroupCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DescribeUserCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DisableUserCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListGroupMembersCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListGroupsForMemberCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListUsersCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/RemoveGroupMemberCommand.d.ts +5 -11
- package/dist-types/ts3.4/commands/SearchGroupsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/SearchUsersCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +3 -5
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +1 -2
- package/dist-types/ts3.4/models/errors.d.ts +7 -23
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/ListGroupsPaginator.d.ts +1 -4
- package/dist-types/ts3.4/pagination/ListUsersPaginator.d.ts +1 -4
- package/dist-types/ts3.4/pagination/SearchUsersPaginator.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
- package/package.json +38 -38
package/dist-cjs/index.js
CHANGED
|
@@ -7,22 +7,10 @@ import {
|
|
|
7
7
|
AddGroupMemberCommandInput,
|
|
8
8
|
AddGroupMemberCommandOutput,
|
|
9
9
|
} from "./commands/AddGroupMemberCommand";
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
} from "./commands/
|
|
14
|
-
import {
|
|
15
|
-
CreateUserCommandInput,
|
|
16
|
-
CreateUserCommandOutput,
|
|
17
|
-
} from "./commands/CreateUserCommand";
|
|
18
|
-
import {
|
|
19
|
-
DeleteGroupCommandInput,
|
|
20
|
-
DeleteGroupCommandOutput,
|
|
21
|
-
} from "./commands/DeleteGroupCommand";
|
|
22
|
-
import {
|
|
23
|
-
DeleteUserCommandInput,
|
|
24
|
-
DeleteUserCommandOutput,
|
|
25
|
-
} from "./commands/DeleteUserCommand";
|
|
10
|
+
import { CreateGroupCommandInput, CreateGroupCommandOutput } from "./commands/CreateGroupCommand";
|
|
11
|
+
import { CreateUserCommandInput, CreateUserCommandOutput } from "./commands/CreateUserCommand";
|
|
12
|
+
import { DeleteGroupCommandInput, DeleteGroupCommandOutput } from "./commands/DeleteGroupCommand";
|
|
13
|
+
import { DeleteUserCommandInput, DeleteUserCommandOutput } from "./commands/DeleteUserCommand";
|
|
26
14
|
import {
|
|
27
15
|
DescribeGroupCommandInput,
|
|
28
16
|
DescribeGroupCommandOutput,
|
|
@@ -31,26 +19,17 @@ import {
|
|
|
31
19
|
DescribeUserCommandInput,
|
|
32
20
|
DescribeUserCommandOutput,
|
|
33
21
|
} from "./commands/DescribeUserCommand";
|
|
34
|
-
import {
|
|
35
|
-
DisableUserCommandInput,
|
|
36
|
-
DisableUserCommandOutput,
|
|
37
|
-
} from "./commands/DisableUserCommand";
|
|
22
|
+
import { DisableUserCommandInput, DisableUserCommandOutput } from "./commands/DisableUserCommand";
|
|
38
23
|
import {
|
|
39
24
|
ListGroupMembersCommandInput,
|
|
40
25
|
ListGroupMembersCommandOutput,
|
|
41
26
|
} from "./commands/ListGroupMembersCommand";
|
|
42
|
-
import {
|
|
43
|
-
ListGroupsCommandInput,
|
|
44
|
-
ListGroupsCommandOutput,
|
|
45
|
-
} from "./commands/ListGroupsCommand";
|
|
27
|
+
import { ListGroupsCommandInput, ListGroupsCommandOutput } from "./commands/ListGroupsCommand";
|
|
46
28
|
import {
|
|
47
29
|
ListGroupsForMemberCommandInput,
|
|
48
30
|
ListGroupsForMemberCommandOutput,
|
|
49
31
|
} from "./commands/ListGroupsForMemberCommand";
|
|
50
|
-
import {
|
|
51
|
-
ListUsersCommandInput,
|
|
52
|
-
ListUsersCommandOutput,
|
|
53
|
-
} from "./commands/ListUsersCommand";
|
|
32
|
+
import { ListUsersCommandInput, ListUsersCommandOutput } from "./commands/ListUsersCommand";
|
|
54
33
|
import {
|
|
55
34
|
RemoveGroupMemberCommandInput,
|
|
56
35
|
RemoveGroupMemberCommandOutput,
|
|
@@ -59,282 +38,273 @@ import {
|
|
|
59
38
|
SearchGroupsCommandInput,
|
|
60
39
|
SearchGroupsCommandOutput,
|
|
61
40
|
} from "./commands/SearchGroupsCommand";
|
|
62
|
-
import {
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
} from "./commands/SearchUsersCommand";
|
|
66
|
-
import {
|
|
67
|
-
UpdateGroupCommandInput,
|
|
68
|
-
UpdateGroupCommandOutput,
|
|
69
|
-
} from "./commands/UpdateGroupCommand";
|
|
70
|
-
import {
|
|
71
|
-
UpdateUserCommandInput,
|
|
72
|
-
UpdateUserCommandOutput,
|
|
73
|
-
} from "./commands/UpdateUserCommand";
|
|
41
|
+
import { SearchUsersCommandInput, SearchUsersCommandOutput } from "./commands/SearchUsersCommand";
|
|
42
|
+
import { UpdateGroupCommandInput, UpdateGroupCommandOutput } from "./commands/UpdateGroupCommand";
|
|
43
|
+
import { UpdateUserCommandInput, UpdateUserCommandOutput } from "./commands/UpdateUserCommand";
|
|
74
44
|
import { DirectoryServiceDataClient } from "./DirectoryServiceDataClient";
|
|
75
45
|
export interface DirectoryServiceData {
|
|
76
46
|
addGroupMember(
|
|
77
47
|
args: AddGroupMemberCommandInput,
|
|
78
|
-
options?: __HttpHandlerOptions
|
|
48
|
+
options?: __HttpHandlerOptions,
|
|
79
49
|
): Promise<AddGroupMemberCommandOutput>;
|
|
80
50
|
addGroupMember(
|
|
81
51
|
args: AddGroupMemberCommandInput,
|
|
82
|
-
cb: (err: any, data?: AddGroupMemberCommandOutput) => void
|
|
52
|
+
cb: (err: any, data?: AddGroupMemberCommandOutput) => void,
|
|
83
53
|
): void;
|
|
84
54
|
addGroupMember(
|
|
85
55
|
args: AddGroupMemberCommandInput,
|
|
86
56
|
options: __HttpHandlerOptions,
|
|
87
|
-
cb: (err: any, data?: AddGroupMemberCommandOutput) => void
|
|
57
|
+
cb: (err: any, data?: AddGroupMemberCommandOutput) => void,
|
|
88
58
|
): void;
|
|
89
59
|
createGroup(
|
|
90
60
|
args: CreateGroupCommandInput,
|
|
91
|
-
options?: __HttpHandlerOptions
|
|
61
|
+
options?: __HttpHandlerOptions,
|
|
92
62
|
): Promise<CreateGroupCommandOutput>;
|
|
93
63
|
createGroup(
|
|
94
64
|
args: CreateGroupCommandInput,
|
|
95
|
-
cb: (err: any, data?: CreateGroupCommandOutput) => void
|
|
65
|
+
cb: (err: any, data?: CreateGroupCommandOutput) => void,
|
|
96
66
|
): void;
|
|
97
67
|
createGroup(
|
|
98
68
|
args: CreateGroupCommandInput,
|
|
99
69
|
options: __HttpHandlerOptions,
|
|
100
|
-
cb: (err: any, data?: CreateGroupCommandOutput) => void
|
|
70
|
+
cb: (err: any, data?: CreateGroupCommandOutput) => void,
|
|
101
71
|
): void;
|
|
102
72
|
createUser(
|
|
103
73
|
args: CreateUserCommandInput,
|
|
104
|
-
options?: __HttpHandlerOptions
|
|
74
|
+
options?: __HttpHandlerOptions,
|
|
105
75
|
): Promise<CreateUserCommandOutput>;
|
|
106
76
|
createUser(
|
|
107
77
|
args: CreateUserCommandInput,
|
|
108
|
-
cb: (err: any, data?: CreateUserCommandOutput) => void
|
|
78
|
+
cb: (err: any, data?: CreateUserCommandOutput) => void,
|
|
109
79
|
): void;
|
|
110
80
|
createUser(
|
|
111
81
|
args: CreateUserCommandInput,
|
|
112
82
|
options: __HttpHandlerOptions,
|
|
113
|
-
cb: (err: any, data?: CreateUserCommandOutput) => void
|
|
83
|
+
cb: (err: any, data?: CreateUserCommandOutput) => void,
|
|
114
84
|
): void;
|
|
115
85
|
deleteGroup(
|
|
116
86
|
args: DeleteGroupCommandInput,
|
|
117
|
-
options?: __HttpHandlerOptions
|
|
87
|
+
options?: __HttpHandlerOptions,
|
|
118
88
|
): Promise<DeleteGroupCommandOutput>;
|
|
119
89
|
deleteGroup(
|
|
120
90
|
args: DeleteGroupCommandInput,
|
|
121
|
-
cb: (err: any, data?: DeleteGroupCommandOutput) => void
|
|
91
|
+
cb: (err: any, data?: DeleteGroupCommandOutput) => void,
|
|
122
92
|
): void;
|
|
123
93
|
deleteGroup(
|
|
124
94
|
args: DeleteGroupCommandInput,
|
|
125
95
|
options: __HttpHandlerOptions,
|
|
126
|
-
cb: (err: any, data?: DeleteGroupCommandOutput) => void
|
|
96
|
+
cb: (err: any, data?: DeleteGroupCommandOutput) => void,
|
|
127
97
|
): void;
|
|
128
98
|
deleteUser(
|
|
129
99
|
args: DeleteUserCommandInput,
|
|
130
|
-
options?: __HttpHandlerOptions
|
|
100
|
+
options?: __HttpHandlerOptions,
|
|
131
101
|
): Promise<DeleteUserCommandOutput>;
|
|
132
102
|
deleteUser(
|
|
133
103
|
args: DeleteUserCommandInput,
|
|
134
|
-
cb: (err: any, data?: DeleteUserCommandOutput) => void
|
|
104
|
+
cb: (err: any, data?: DeleteUserCommandOutput) => void,
|
|
135
105
|
): void;
|
|
136
106
|
deleteUser(
|
|
137
107
|
args: DeleteUserCommandInput,
|
|
138
108
|
options: __HttpHandlerOptions,
|
|
139
|
-
cb: (err: any, data?: DeleteUserCommandOutput) => void
|
|
109
|
+
cb: (err: any, data?: DeleteUserCommandOutput) => void,
|
|
140
110
|
): void;
|
|
141
111
|
describeGroup(
|
|
142
112
|
args: DescribeGroupCommandInput,
|
|
143
|
-
options?: __HttpHandlerOptions
|
|
113
|
+
options?: __HttpHandlerOptions,
|
|
144
114
|
): Promise<DescribeGroupCommandOutput>;
|
|
145
115
|
describeGroup(
|
|
146
116
|
args: DescribeGroupCommandInput,
|
|
147
|
-
cb: (err: any, data?: DescribeGroupCommandOutput) => void
|
|
117
|
+
cb: (err: any, data?: DescribeGroupCommandOutput) => void,
|
|
148
118
|
): void;
|
|
149
119
|
describeGroup(
|
|
150
120
|
args: DescribeGroupCommandInput,
|
|
151
121
|
options: __HttpHandlerOptions,
|
|
152
|
-
cb: (err: any, data?: DescribeGroupCommandOutput) => void
|
|
122
|
+
cb: (err: any, data?: DescribeGroupCommandOutput) => void,
|
|
153
123
|
): void;
|
|
154
124
|
describeUser(
|
|
155
125
|
args: DescribeUserCommandInput,
|
|
156
|
-
options?: __HttpHandlerOptions
|
|
126
|
+
options?: __HttpHandlerOptions,
|
|
157
127
|
): Promise<DescribeUserCommandOutput>;
|
|
158
128
|
describeUser(
|
|
159
129
|
args: DescribeUserCommandInput,
|
|
160
|
-
cb: (err: any, data?: DescribeUserCommandOutput) => void
|
|
130
|
+
cb: (err: any, data?: DescribeUserCommandOutput) => void,
|
|
161
131
|
): void;
|
|
162
132
|
describeUser(
|
|
163
133
|
args: DescribeUserCommandInput,
|
|
164
134
|
options: __HttpHandlerOptions,
|
|
165
|
-
cb: (err: any, data?: DescribeUserCommandOutput) => void
|
|
135
|
+
cb: (err: any, data?: DescribeUserCommandOutput) => void,
|
|
166
136
|
): void;
|
|
167
137
|
disableUser(
|
|
168
138
|
args: DisableUserCommandInput,
|
|
169
|
-
options?: __HttpHandlerOptions
|
|
139
|
+
options?: __HttpHandlerOptions,
|
|
170
140
|
): Promise<DisableUserCommandOutput>;
|
|
171
141
|
disableUser(
|
|
172
142
|
args: DisableUserCommandInput,
|
|
173
|
-
cb: (err: any, data?: DisableUserCommandOutput) => void
|
|
143
|
+
cb: (err: any, data?: DisableUserCommandOutput) => void,
|
|
174
144
|
): void;
|
|
175
145
|
disableUser(
|
|
176
146
|
args: DisableUserCommandInput,
|
|
177
147
|
options: __HttpHandlerOptions,
|
|
178
|
-
cb: (err: any, data?: DisableUserCommandOutput) => void
|
|
148
|
+
cb: (err: any, data?: DisableUserCommandOutput) => void,
|
|
179
149
|
): void;
|
|
180
150
|
listGroupMembers(
|
|
181
151
|
args: ListGroupMembersCommandInput,
|
|
182
|
-
options?: __HttpHandlerOptions
|
|
152
|
+
options?: __HttpHandlerOptions,
|
|
183
153
|
): Promise<ListGroupMembersCommandOutput>;
|
|
184
154
|
listGroupMembers(
|
|
185
155
|
args: ListGroupMembersCommandInput,
|
|
186
|
-
cb: (err: any, data?: ListGroupMembersCommandOutput) => void
|
|
156
|
+
cb: (err: any, data?: ListGroupMembersCommandOutput) => void,
|
|
187
157
|
): void;
|
|
188
158
|
listGroupMembers(
|
|
189
159
|
args: ListGroupMembersCommandInput,
|
|
190
160
|
options: __HttpHandlerOptions,
|
|
191
|
-
cb: (err: any, data?: ListGroupMembersCommandOutput) => void
|
|
161
|
+
cb: (err: any, data?: ListGroupMembersCommandOutput) => void,
|
|
192
162
|
): void;
|
|
193
163
|
listGroups(
|
|
194
164
|
args: ListGroupsCommandInput,
|
|
195
|
-
options?: __HttpHandlerOptions
|
|
165
|
+
options?: __HttpHandlerOptions,
|
|
196
166
|
): Promise<ListGroupsCommandOutput>;
|
|
197
167
|
listGroups(
|
|
198
168
|
args: ListGroupsCommandInput,
|
|
199
|
-
cb: (err: any, data?: ListGroupsCommandOutput) => void
|
|
169
|
+
cb: (err: any, data?: ListGroupsCommandOutput) => void,
|
|
200
170
|
): void;
|
|
201
171
|
listGroups(
|
|
202
172
|
args: ListGroupsCommandInput,
|
|
203
173
|
options: __HttpHandlerOptions,
|
|
204
|
-
cb: (err: any, data?: ListGroupsCommandOutput) => void
|
|
174
|
+
cb: (err: any, data?: ListGroupsCommandOutput) => void,
|
|
205
175
|
): void;
|
|
206
176
|
listGroupsForMember(
|
|
207
177
|
args: ListGroupsForMemberCommandInput,
|
|
208
|
-
options?: __HttpHandlerOptions
|
|
178
|
+
options?: __HttpHandlerOptions,
|
|
209
179
|
): Promise<ListGroupsForMemberCommandOutput>;
|
|
210
180
|
listGroupsForMember(
|
|
211
181
|
args: ListGroupsForMemberCommandInput,
|
|
212
|
-
cb: (err: any, data?: ListGroupsForMemberCommandOutput) => void
|
|
182
|
+
cb: (err: any, data?: ListGroupsForMemberCommandOutput) => void,
|
|
213
183
|
): void;
|
|
214
184
|
listGroupsForMember(
|
|
215
185
|
args: ListGroupsForMemberCommandInput,
|
|
216
186
|
options: __HttpHandlerOptions,
|
|
217
|
-
cb: (err: any, data?: ListGroupsForMemberCommandOutput) => void
|
|
187
|
+
cb: (err: any, data?: ListGroupsForMemberCommandOutput) => void,
|
|
218
188
|
): void;
|
|
219
189
|
listUsers(
|
|
220
190
|
args: ListUsersCommandInput,
|
|
221
|
-
options?: __HttpHandlerOptions
|
|
191
|
+
options?: __HttpHandlerOptions,
|
|
222
192
|
): Promise<ListUsersCommandOutput>;
|
|
223
193
|
listUsers(
|
|
224
194
|
args: ListUsersCommandInput,
|
|
225
|
-
cb: (err: any, data?: ListUsersCommandOutput) => void
|
|
195
|
+
cb: (err: any, data?: ListUsersCommandOutput) => void,
|
|
226
196
|
): void;
|
|
227
197
|
listUsers(
|
|
228
198
|
args: ListUsersCommandInput,
|
|
229
199
|
options: __HttpHandlerOptions,
|
|
230
|
-
cb: (err: any, data?: ListUsersCommandOutput) => void
|
|
200
|
+
cb: (err: any, data?: ListUsersCommandOutput) => void,
|
|
231
201
|
): void;
|
|
232
202
|
removeGroupMember(
|
|
233
203
|
args: RemoveGroupMemberCommandInput,
|
|
234
|
-
options?: __HttpHandlerOptions
|
|
204
|
+
options?: __HttpHandlerOptions,
|
|
235
205
|
): Promise<RemoveGroupMemberCommandOutput>;
|
|
236
206
|
removeGroupMember(
|
|
237
207
|
args: RemoveGroupMemberCommandInput,
|
|
238
|
-
cb: (err: any, data?: RemoveGroupMemberCommandOutput) => void
|
|
208
|
+
cb: (err: any, data?: RemoveGroupMemberCommandOutput) => void,
|
|
239
209
|
): void;
|
|
240
210
|
removeGroupMember(
|
|
241
211
|
args: RemoveGroupMemberCommandInput,
|
|
242
212
|
options: __HttpHandlerOptions,
|
|
243
|
-
cb: (err: any, data?: RemoveGroupMemberCommandOutput) => void
|
|
213
|
+
cb: (err: any, data?: RemoveGroupMemberCommandOutput) => void,
|
|
244
214
|
): void;
|
|
245
215
|
searchGroups(
|
|
246
216
|
args: SearchGroupsCommandInput,
|
|
247
|
-
options?: __HttpHandlerOptions
|
|
217
|
+
options?: __HttpHandlerOptions,
|
|
248
218
|
): Promise<SearchGroupsCommandOutput>;
|
|
249
219
|
searchGroups(
|
|
250
220
|
args: SearchGroupsCommandInput,
|
|
251
|
-
cb: (err: any, data?: SearchGroupsCommandOutput) => void
|
|
221
|
+
cb: (err: any, data?: SearchGroupsCommandOutput) => void,
|
|
252
222
|
): void;
|
|
253
223
|
searchGroups(
|
|
254
224
|
args: SearchGroupsCommandInput,
|
|
255
225
|
options: __HttpHandlerOptions,
|
|
256
|
-
cb: (err: any, data?: SearchGroupsCommandOutput) => void
|
|
226
|
+
cb: (err: any, data?: SearchGroupsCommandOutput) => void,
|
|
257
227
|
): void;
|
|
258
228
|
searchUsers(
|
|
259
229
|
args: SearchUsersCommandInput,
|
|
260
|
-
options?: __HttpHandlerOptions
|
|
230
|
+
options?: __HttpHandlerOptions,
|
|
261
231
|
): Promise<SearchUsersCommandOutput>;
|
|
262
232
|
searchUsers(
|
|
263
233
|
args: SearchUsersCommandInput,
|
|
264
|
-
cb: (err: any, data?: SearchUsersCommandOutput) => void
|
|
234
|
+
cb: (err: any, data?: SearchUsersCommandOutput) => void,
|
|
265
235
|
): void;
|
|
266
236
|
searchUsers(
|
|
267
237
|
args: SearchUsersCommandInput,
|
|
268
238
|
options: __HttpHandlerOptions,
|
|
269
|
-
cb: (err: any, data?: SearchUsersCommandOutput) => void
|
|
239
|
+
cb: (err: any, data?: SearchUsersCommandOutput) => void,
|
|
270
240
|
): void;
|
|
271
241
|
updateGroup(
|
|
272
242
|
args: UpdateGroupCommandInput,
|
|
273
|
-
options?: __HttpHandlerOptions
|
|
243
|
+
options?: __HttpHandlerOptions,
|
|
274
244
|
): Promise<UpdateGroupCommandOutput>;
|
|
275
245
|
updateGroup(
|
|
276
246
|
args: UpdateGroupCommandInput,
|
|
277
|
-
cb: (err: any, data?: UpdateGroupCommandOutput) => void
|
|
247
|
+
cb: (err: any, data?: UpdateGroupCommandOutput) => void,
|
|
278
248
|
): void;
|
|
279
249
|
updateGroup(
|
|
280
250
|
args: UpdateGroupCommandInput,
|
|
281
251
|
options: __HttpHandlerOptions,
|
|
282
|
-
cb: (err: any, data?: UpdateGroupCommandOutput) => void
|
|
252
|
+
cb: (err: any, data?: UpdateGroupCommandOutput) => void,
|
|
283
253
|
): void;
|
|
284
254
|
updateUser(
|
|
285
255
|
args: UpdateUserCommandInput,
|
|
286
|
-
options?: __HttpHandlerOptions
|
|
256
|
+
options?: __HttpHandlerOptions,
|
|
287
257
|
): Promise<UpdateUserCommandOutput>;
|
|
288
258
|
updateUser(
|
|
289
259
|
args: UpdateUserCommandInput,
|
|
290
|
-
cb: (err: any, data?: UpdateUserCommandOutput) => void
|
|
260
|
+
cb: (err: any, data?: UpdateUserCommandOutput) => void,
|
|
291
261
|
): void;
|
|
292
262
|
updateUser(
|
|
293
263
|
args: UpdateUserCommandInput,
|
|
294
264
|
options: __HttpHandlerOptions,
|
|
295
|
-
cb: (err: any, data?: UpdateUserCommandOutput) => void
|
|
265
|
+
cb: (err: any, data?: UpdateUserCommandOutput) => void,
|
|
296
266
|
): void;
|
|
297
267
|
paginateListGroupMembers(
|
|
298
268
|
args: ListGroupMembersCommandInput,
|
|
299
269
|
paginationConfig?: Pick<
|
|
300
270
|
PaginationConfiguration,
|
|
301
271
|
Exclude<keyof PaginationConfiguration, "client">
|
|
302
|
-
|
|
272
|
+
>,
|
|
303
273
|
): Paginator<ListGroupMembersCommandOutput>;
|
|
304
274
|
paginateListGroups(
|
|
305
275
|
args: ListGroupsCommandInput,
|
|
306
276
|
paginationConfig?: Pick<
|
|
307
277
|
PaginationConfiguration,
|
|
308
278
|
Exclude<keyof PaginationConfiguration, "client">
|
|
309
|
-
|
|
279
|
+
>,
|
|
310
280
|
): Paginator<ListGroupsCommandOutput>;
|
|
311
281
|
paginateListGroupsForMember(
|
|
312
282
|
args: ListGroupsForMemberCommandInput,
|
|
313
283
|
paginationConfig?: Pick<
|
|
314
284
|
PaginationConfiguration,
|
|
315
285
|
Exclude<keyof PaginationConfiguration, "client">
|
|
316
|
-
|
|
286
|
+
>,
|
|
317
287
|
): Paginator<ListGroupsForMemberCommandOutput>;
|
|
318
288
|
paginateListUsers(
|
|
319
289
|
args: ListUsersCommandInput,
|
|
320
290
|
paginationConfig?: Pick<
|
|
321
291
|
PaginationConfiguration,
|
|
322
292
|
Exclude<keyof PaginationConfiguration, "client">
|
|
323
|
-
|
|
293
|
+
>,
|
|
324
294
|
): Paginator<ListUsersCommandOutput>;
|
|
325
295
|
paginateSearchGroups(
|
|
326
296
|
args: SearchGroupsCommandInput,
|
|
327
297
|
paginationConfig?: Pick<
|
|
328
298
|
PaginationConfiguration,
|
|
329
299
|
Exclude<keyof PaginationConfiguration, "client">
|
|
330
|
-
|
|
300
|
+
>,
|
|
331
301
|
): Paginator<SearchGroupsCommandOutput>;
|
|
332
302
|
paginateSearchUsers(
|
|
333
303
|
args: SearchUsersCommandInput,
|
|
334
304
|
paginationConfig?: Pick<
|
|
335
305
|
PaginationConfiguration,
|
|
336
306
|
Exclude<keyof PaginationConfiguration, "client">
|
|
337
|
-
|
|
307
|
+
>,
|
|
338
308
|
): Paginator<SearchUsersCommandOutput>;
|
|
339
309
|
}
|
|
340
310
|
export declare class DirectoryServiceData
|
|
@@ -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 {
|
|
@@ -40,22 +37,10 @@ import {
|
|
|
40
37
|
AddGroupMemberCommandInput,
|
|
41
38
|
AddGroupMemberCommandOutput,
|
|
42
39
|
} from "./commands/AddGroupMemberCommand";
|
|
43
|
-
import {
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
} from "./commands/
|
|
47
|
-
import {
|
|
48
|
-
CreateUserCommandInput,
|
|
49
|
-
CreateUserCommandOutput,
|
|
50
|
-
} from "./commands/CreateUserCommand";
|
|
51
|
-
import {
|
|
52
|
-
DeleteGroupCommandInput,
|
|
53
|
-
DeleteGroupCommandOutput,
|
|
54
|
-
} from "./commands/DeleteGroupCommand";
|
|
55
|
-
import {
|
|
56
|
-
DeleteUserCommandInput,
|
|
57
|
-
DeleteUserCommandOutput,
|
|
58
|
-
} from "./commands/DeleteUserCommand";
|
|
40
|
+
import { CreateGroupCommandInput, CreateGroupCommandOutput } from "./commands/CreateGroupCommand";
|
|
41
|
+
import { CreateUserCommandInput, CreateUserCommandOutput } from "./commands/CreateUserCommand";
|
|
42
|
+
import { DeleteGroupCommandInput, DeleteGroupCommandOutput } from "./commands/DeleteGroupCommand";
|
|
43
|
+
import { DeleteUserCommandInput, DeleteUserCommandOutput } from "./commands/DeleteUserCommand";
|
|
59
44
|
import {
|
|
60
45
|
DescribeGroupCommandInput,
|
|
61
46
|
DescribeGroupCommandOutput,
|
|
@@ -64,26 +49,17 @@ import {
|
|
|
64
49
|
DescribeUserCommandInput,
|
|
65
50
|
DescribeUserCommandOutput,
|
|
66
51
|
} from "./commands/DescribeUserCommand";
|
|
67
|
-
import {
|
|
68
|
-
DisableUserCommandInput,
|
|
69
|
-
DisableUserCommandOutput,
|
|
70
|
-
} from "./commands/DisableUserCommand";
|
|
52
|
+
import { DisableUserCommandInput, DisableUserCommandOutput } from "./commands/DisableUserCommand";
|
|
71
53
|
import {
|
|
72
54
|
ListGroupMembersCommandInput,
|
|
73
55
|
ListGroupMembersCommandOutput,
|
|
74
56
|
} from "./commands/ListGroupMembersCommand";
|
|
75
|
-
import {
|
|
76
|
-
ListGroupsCommandInput,
|
|
77
|
-
ListGroupsCommandOutput,
|
|
78
|
-
} from "./commands/ListGroupsCommand";
|
|
57
|
+
import { ListGroupsCommandInput, ListGroupsCommandOutput } from "./commands/ListGroupsCommand";
|
|
79
58
|
import {
|
|
80
59
|
ListGroupsForMemberCommandInput,
|
|
81
60
|
ListGroupsForMemberCommandOutput,
|
|
82
61
|
} from "./commands/ListGroupsForMemberCommand";
|
|
83
|
-
import {
|
|
84
|
-
ListUsersCommandInput,
|
|
85
|
-
ListUsersCommandOutput,
|
|
86
|
-
} from "./commands/ListUsersCommand";
|
|
62
|
+
import { ListUsersCommandInput, ListUsersCommandOutput } from "./commands/ListUsersCommand";
|
|
87
63
|
import {
|
|
88
64
|
RemoveGroupMemberCommandInput,
|
|
89
65
|
RemoveGroupMemberCommandOutput,
|
|
@@ -92,18 +68,9 @@ import {
|
|
|
92
68
|
SearchGroupsCommandInput,
|
|
93
69
|
SearchGroupsCommandOutput,
|
|
94
70
|
} from "./commands/SearchGroupsCommand";
|
|
95
|
-
import {
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
} from "./commands/SearchUsersCommand";
|
|
99
|
-
import {
|
|
100
|
-
UpdateGroupCommandInput,
|
|
101
|
-
UpdateGroupCommandOutput,
|
|
102
|
-
} from "./commands/UpdateGroupCommand";
|
|
103
|
-
import {
|
|
104
|
-
UpdateUserCommandInput,
|
|
105
|
-
UpdateUserCommandOutput,
|
|
106
|
-
} from "./commands/UpdateUserCommand";
|
|
71
|
+
import { SearchUsersCommandInput, SearchUsersCommandOutput } from "./commands/SearchUsersCommand";
|
|
72
|
+
import { UpdateGroupCommandInput, UpdateGroupCommandOutput } from "./commands/UpdateGroupCommand";
|
|
73
|
+
import { UpdateUserCommandInput, UpdateUserCommandOutput } from "./commands/UpdateUserCommand";
|
|
107
74
|
import {
|
|
108
75
|
ClientInputEndpointParameters,
|
|
109
76
|
ClientResolvedEndpointParameters,
|
|
@@ -147,8 +114,7 @@ export type ServiceOutputTypes =
|
|
|
147
114
|
| SearchUsersCommandOutput
|
|
148
115
|
| UpdateGroupCommandOutput
|
|
149
116
|
| UpdateUserCommandOutput;
|
|
150
|
-
export interface ClientDefaults
|
|
151
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
117
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
152
118
|
requestHandler?: __HttpHandlerUserInput;
|
|
153
119
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
154
120
|
urlParser?: __UrlParser;
|
|
@@ -184,8 +150,7 @@ export type DirectoryServiceDataClientConfigType = Partial<
|
|
|
184
150
|
EndpointInputConfig<EndpointParameters> &
|
|
185
151
|
HttpAuthSchemeInputConfig &
|
|
186
152
|
ClientInputEndpointParameters;
|
|
187
|
-
export interface DirectoryServiceDataClientConfig
|
|
188
|
-
extends DirectoryServiceDataClientConfigType {}
|
|
153
|
+
export interface DirectoryServiceDataClientConfig extends DirectoryServiceDataClientConfigType {}
|
|
189
154
|
export type DirectoryServiceDataClientResolvedConfigType =
|
|
190
155
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
191
156
|
Required<ClientDefaults> &
|
|
@@ -197,8 +162,7 @@ export type DirectoryServiceDataClientResolvedConfigType =
|
|
|
197
162
|
EndpointResolvedConfig<EndpointParameters> &
|
|
198
163
|
HttpAuthSchemeResolvedConfig &
|
|
199
164
|
ClientResolvedEndpointParameters;
|
|
200
|
-
export interface DirectoryServiceDataClientResolvedConfig
|
|
201
|
-
extends DirectoryServiceDataClientResolvedConfigType {}
|
|
165
|
+
export interface DirectoryServiceDataClientResolvedConfig extends DirectoryServiceDataClientResolvedConfigType {}
|
|
202
166
|
export declare class DirectoryServiceDataClient extends __Client<
|
|
203
167
|
__HttpHandlerOptions,
|
|
204
168
|
ServiceInputTypes,
|
|
@@ -206,10 +170,6 @@ export declare class DirectoryServiceDataClient extends __Client<
|
|
|
206
170
|
DirectoryServiceDataClientResolvedConfig
|
|
207
171
|
> {
|
|
208
172
|
readonly config: DirectoryServiceDataClientResolvedConfig;
|
|
209
|
-
constructor(
|
|
210
|
-
...[
|
|
211
|
-
configuration,
|
|
212
|
-
]: __CheckOptionalClientConfig<DirectoryServiceDataClientConfig>
|
|
213
|
-
);
|
|
173
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<DirectoryServiceDataClientConfig>);
|
|
214
174
|
destroy(): void;
|
|
215
175
|
}
|
|
@@ -8,16 +8,11 @@ export interface HttpAuthExtensionConfiguration {
|
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
10
|
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: DirectoryServiceDataHttpAuthSchemeProvider
|
|
11
|
+
httpAuthSchemeProvider: DirectoryServiceDataHttpAuthSchemeProvider,
|
|
12
12
|
): void;
|
|
13
13
|
httpAuthSchemeProvider(): DirectoryServiceDataHttpAuthSchemeProvider;
|
|
14
|
-
setCredentials(
|
|
15
|
-
|
|
16
|
-
): void;
|
|
17
|
-
credentials():
|
|
18
|
-
| AwsCredentialIdentity
|
|
19
|
-
| AwsCredentialIdentityProvider
|
|
20
|
-
| undefined;
|
|
14
|
+
setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
|
|
15
|
+
credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
|
|
21
16
|
}
|
|
22
17
|
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
18
|
httpAuthSchemes: HttpAuthScheme[];
|
|
@@ -25,8 +20,8 @@ export type HttpAuthRuntimeConfig = Partial<{
|
|
|
25
20
|
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
21
|
}>;
|
|
27
22
|
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
-
runtimeConfig: HttpAuthRuntimeConfig
|
|
23
|
+
runtimeConfig: HttpAuthRuntimeConfig,
|
|
29
24
|
) => HttpAuthExtensionConfiguration;
|
|
30
25
|
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
-
config: HttpAuthExtensionConfiguration
|
|
26
|
+
config: HttpAuthExtensionConfiguration,
|
|
32
27
|
) => HttpAuthRuntimeConfig;
|
|
@@ -12,36 +12,32 @@ import {
|
|
|
12
12
|
Provider,
|
|
13
13
|
} from "@smithy/types";
|
|
14
14
|
import { DirectoryServiceDataClientResolvedConfig } from "../DirectoryServiceDataClient";
|
|
15
|
-
export interface DirectoryServiceDataHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface DirectoryServiceDataHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface DirectoryServiceDataHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface DirectoryServiceDataHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
DirectoryServiceDataClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
DirectoryServiceDataHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultDirectoryServiceDataHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: DirectoryServiceDataClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<DirectoryServiceDataHttpAuthSchemeParameters>;
|
|
31
|
-
export interface DirectoryServiceDataHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<DirectoryServiceDataHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface DirectoryServiceDataHttpAuthSchemeProvider extends HttpAuthSchemeProvider<DirectoryServiceDataHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultDirectoryServiceDataHttpAuthSchemeProvider: DirectoryServiceDataHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: DirectoryServiceDataHttpAuthSchemeProvider;
|
|
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: DirectoryServiceDataHttpAuthSchemeProvider;
|
|
44
40
|
}
|
|
45
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
47
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -4,22 +4,21 @@ import {
|
|
|
4
4
|
ServiceInputTypes,
|
|
5
5
|
ServiceOutputTypes,
|
|
6
6
|
} from "./DirectoryServiceDataClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
7
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
8
|
added: EndpointParameterInstructions,
|
|
12
9
|
plugins: (
|
|
13
10
|
CommandCtor: any,
|
|
14
11
|
clientStack: any,
|
|
15
12
|
config: any,
|
|
16
|
-
options: any
|
|
13
|
+
options: any,
|
|
17
14
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
15
|
op: string,
|
|
19
16
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
17
|
+
smithyContext?: Record<string, unknown>,
|
|
21
18
|
) => {
|
|
22
|
-
new (
|
|
19
|
+
new (
|
|
20
|
+
input: I,
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
22
|
I,
|
|
24
23
|
O,
|
|
25
24
|
DirectoryServiceDataClientResolvedConfig,
|
|
@@ -38,9 +37,4 @@ export declare const command: <
|
|
|
38
37
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
38
|
};
|
|
40
39
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
40
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|