@aws-sdk/client-securitylake 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/SecurityLake.d.ts +99 -152
- package/dist-types/ts3.4/SecurityLakeClient.d.ts +7 -20
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- 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/CreateAwsLogSourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateCustomLogSourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateDataLakeCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateDataLakeExceptionSubscriptionCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateDataLakeOrganizationConfigurationCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreateSubscriberCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateSubscriberNotificationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteAwsLogSourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteCustomLogSourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteDataLakeCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteDataLakeExceptionSubscriptionCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteDataLakeOrganizationConfigurationCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteSubscriberCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteSubscriberNotificationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeregisterDataLakeDelegatedAdministratorCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetDataLakeExceptionSubscriptionCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetDataLakeOrganizationConfigurationCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetDataLakeSourcesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetSubscriberCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListDataLakeExceptionsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListDataLakesCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListLogSourcesCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListSubscribersCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/RegisterDataLakeDelegatedAdministratorCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateDataLakeCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateDataLakeExceptionSubscriptionCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UpdateSubscriberCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateSubscriberNotificationCommand.d.ts +4 -6
- 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 +3 -6
- package/dist-types/ts3.4/models/errors.d.ts +5 -15
- package/dist-types/ts3.4/models/models_0.d.ts +4 -12
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/package.json +38 -38
package/dist-cjs/index.js
CHANGED
|
@@ -103,10 +103,7 @@ import {
|
|
|
103
103
|
RegisterDataLakeDelegatedAdministratorCommandInput,
|
|
104
104
|
RegisterDataLakeDelegatedAdministratorCommandOutput,
|
|
105
105
|
} from "./commands/RegisterDataLakeDelegatedAdministratorCommand";
|
|
106
|
-
import {
|
|
107
|
-
TagResourceCommandInput,
|
|
108
|
-
TagResourceCommandOutput,
|
|
109
|
-
} from "./commands/TagResourceCommand";
|
|
106
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
110
107
|
import {
|
|
111
108
|
UntagResourceCommandInput,
|
|
112
109
|
UntagResourceCommandOutput,
|
|
@@ -131,495 +128,445 @@ import { SecurityLakeClient } from "./SecurityLakeClient";
|
|
|
131
128
|
export interface SecurityLake {
|
|
132
129
|
createAwsLogSource(
|
|
133
130
|
args: CreateAwsLogSourceCommandInput,
|
|
134
|
-
options?: __HttpHandlerOptions
|
|
131
|
+
options?: __HttpHandlerOptions,
|
|
135
132
|
): Promise<CreateAwsLogSourceCommandOutput>;
|
|
136
133
|
createAwsLogSource(
|
|
137
134
|
args: CreateAwsLogSourceCommandInput,
|
|
138
|
-
cb: (err: any, data?: CreateAwsLogSourceCommandOutput) => void
|
|
135
|
+
cb: (err: any, data?: CreateAwsLogSourceCommandOutput) => void,
|
|
139
136
|
): void;
|
|
140
137
|
createAwsLogSource(
|
|
141
138
|
args: CreateAwsLogSourceCommandInput,
|
|
142
139
|
options: __HttpHandlerOptions,
|
|
143
|
-
cb: (err: any, data?: CreateAwsLogSourceCommandOutput) => void
|
|
140
|
+
cb: (err: any, data?: CreateAwsLogSourceCommandOutput) => void,
|
|
144
141
|
): void;
|
|
145
142
|
createCustomLogSource(
|
|
146
143
|
args: CreateCustomLogSourceCommandInput,
|
|
147
|
-
options?: __HttpHandlerOptions
|
|
144
|
+
options?: __HttpHandlerOptions,
|
|
148
145
|
): Promise<CreateCustomLogSourceCommandOutput>;
|
|
149
146
|
createCustomLogSource(
|
|
150
147
|
args: CreateCustomLogSourceCommandInput,
|
|
151
|
-
cb: (err: any, data?: CreateCustomLogSourceCommandOutput) => void
|
|
148
|
+
cb: (err: any, data?: CreateCustomLogSourceCommandOutput) => void,
|
|
152
149
|
): void;
|
|
153
150
|
createCustomLogSource(
|
|
154
151
|
args: CreateCustomLogSourceCommandInput,
|
|
155
152
|
options: __HttpHandlerOptions,
|
|
156
|
-
cb: (err: any, data?: CreateCustomLogSourceCommandOutput) => void
|
|
153
|
+
cb: (err: any, data?: CreateCustomLogSourceCommandOutput) => void,
|
|
157
154
|
): void;
|
|
158
155
|
createDataLake(
|
|
159
156
|
args: CreateDataLakeCommandInput,
|
|
160
|
-
options?: __HttpHandlerOptions
|
|
157
|
+
options?: __HttpHandlerOptions,
|
|
161
158
|
): Promise<CreateDataLakeCommandOutput>;
|
|
162
159
|
createDataLake(
|
|
163
160
|
args: CreateDataLakeCommandInput,
|
|
164
|
-
cb: (err: any, data?: CreateDataLakeCommandOutput) => void
|
|
161
|
+
cb: (err: any, data?: CreateDataLakeCommandOutput) => void,
|
|
165
162
|
): void;
|
|
166
163
|
createDataLake(
|
|
167
164
|
args: CreateDataLakeCommandInput,
|
|
168
165
|
options: __HttpHandlerOptions,
|
|
169
|
-
cb: (err: any, data?: CreateDataLakeCommandOutput) => void
|
|
166
|
+
cb: (err: any, data?: CreateDataLakeCommandOutput) => void,
|
|
170
167
|
): void;
|
|
171
168
|
createDataLakeExceptionSubscription(
|
|
172
169
|
args: CreateDataLakeExceptionSubscriptionCommandInput,
|
|
173
|
-
options?: __HttpHandlerOptions
|
|
170
|
+
options?: __HttpHandlerOptions,
|
|
174
171
|
): Promise<CreateDataLakeExceptionSubscriptionCommandOutput>;
|
|
175
172
|
createDataLakeExceptionSubscription(
|
|
176
173
|
args: CreateDataLakeExceptionSubscriptionCommandInput,
|
|
177
|
-
cb: (
|
|
178
|
-
err: any,
|
|
179
|
-
data?: CreateDataLakeExceptionSubscriptionCommandOutput
|
|
180
|
-
) => void
|
|
174
|
+
cb: (err: any, data?: CreateDataLakeExceptionSubscriptionCommandOutput) => void,
|
|
181
175
|
): void;
|
|
182
176
|
createDataLakeExceptionSubscription(
|
|
183
177
|
args: CreateDataLakeExceptionSubscriptionCommandInput,
|
|
184
178
|
options: __HttpHandlerOptions,
|
|
185
|
-
cb: (
|
|
186
|
-
err: any,
|
|
187
|
-
data?: CreateDataLakeExceptionSubscriptionCommandOutput
|
|
188
|
-
) => void
|
|
179
|
+
cb: (err: any, data?: CreateDataLakeExceptionSubscriptionCommandOutput) => void,
|
|
189
180
|
): void;
|
|
190
181
|
createDataLakeOrganizationConfiguration(): Promise<CreateDataLakeOrganizationConfigurationCommandOutput>;
|
|
191
182
|
createDataLakeOrganizationConfiguration(
|
|
192
183
|
args: CreateDataLakeOrganizationConfigurationCommandInput,
|
|
193
|
-
options?: __HttpHandlerOptions
|
|
184
|
+
options?: __HttpHandlerOptions,
|
|
194
185
|
): Promise<CreateDataLakeOrganizationConfigurationCommandOutput>;
|
|
195
186
|
createDataLakeOrganizationConfiguration(
|
|
196
187
|
args: CreateDataLakeOrganizationConfigurationCommandInput,
|
|
197
|
-
cb: (
|
|
198
|
-
err: any,
|
|
199
|
-
data?: CreateDataLakeOrganizationConfigurationCommandOutput
|
|
200
|
-
) => void
|
|
188
|
+
cb: (err: any, data?: CreateDataLakeOrganizationConfigurationCommandOutput) => void,
|
|
201
189
|
): void;
|
|
202
190
|
createDataLakeOrganizationConfiguration(
|
|
203
191
|
args: CreateDataLakeOrganizationConfigurationCommandInput,
|
|
204
192
|
options: __HttpHandlerOptions,
|
|
205
|
-
cb: (
|
|
206
|
-
err: any,
|
|
207
|
-
data?: CreateDataLakeOrganizationConfigurationCommandOutput
|
|
208
|
-
) => void
|
|
193
|
+
cb: (err: any, data?: CreateDataLakeOrganizationConfigurationCommandOutput) => void,
|
|
209
194
|
): void;
|
|
210
195
|
createSubscriber(
|
|
211
196
|
args: CreateSubscriberCommandInput,
|
|
212
|
-
options?: __HttpHandlerOptions
|
|
197
|
+
options?: __HttpHandlerOptions,
|
|
213
198
|
): Promise<CreateSubscriberCommandOutput>;
|
|
214
199
|
createSubscriber(
|
|
215
200
|
args: CreateSubscriberCommandInput,
|
|
216
|
-
cb: (err: any, data?: CreateSubscriberCommandOutput) => void
|
|
201
|
+
cb: (err: any, data?: CreateSubscriberCommandOutput) => void,
|
|
217
202
|
): void;
|
|
218
203
|
createSubscriber(
|
|
219
204
|
args: CreateSubscriberCommandInput,
|
|
220
205
|
options: __HttpHandlerOptions,
|
|
221
|
-
cb: (err: any, data?: CreateSubscriberCommandOutput) => void
|
|
206
|
+
cb: (err: any, data?: CreateSubscriberCommandOutput) => void,
|
|
222
207
|
): void;
|
|
223
208
|
createSubscriberNotification(
|
|
224
209
|
args: CreateSubscriberNotificationCommandInput,
|
|
225
|
-
options?: __HttpHandlerOptions
|
|
210
|
+
options?: __HttpHandlerOptions,
|
|
226
211
|
): Promise<CreateSubscriberNotificationCommandOutput>;
|
|
227
212
|
createSubscriberNotification(
|
|
228
213
|
args: CreateSubscriberNotificationCommandInput,
|
|
229
|
-
cb: (err: any, data?: CreateSubscriberNotificationCommandOutput) => void
|
|
214
|
+
cb: (err: any, data?: CreateSubscriberNotificationCommandOutput) => void,
|
|
230
215
|
): void;
|
|
231
216
|
createSubscriberNotification(
|
|
232
217
|
args: CreateSubscriberNotificationCommandInput,
|
|
233
218
|
options: __HttpHandlerOptions,
|
|
234
|
-
cb: (err: any, data?: CreateSubscriberNotificationCommandOutput) => void
|
|
219
|
+
cb: (err: any, data?: CreateSubscriberNotificationCommandOutput) => void,
|
|
235
220
|
): void;
|
|
236
221
|
deleteAwsLogSource(
|
|
237
222
|
args: DeleteAwsLogSourceCommandInput,
|
|
238
|
-
options?: __HttpHandlerOptions
|
|
223
|
+
options?: __HttpHandlerOptions,
|
|
239
224
|
): Promise<DeleteAwsLogSourceCommandOutput>;
|
|
240
225
|
deleteAwsLogSource(
|
|
241
226
|
args: DeleteAwsLogSourceCommandInput,
|
|
242
|
-
cb: (err: any, data?: DeleteAwsLogSourceCommandOutput) => void
|
|
227
|
+
cb: (err: any, data?: DeleteAwsLogSourceCommandOutput) => void,
|
|
243
228
|
): void;
|
|
244
229
|
deleteAwsLogSource(
|
|
245
230
|
args: DeleteAwsLogSourceCommandInput,
|
|
246
231
|
options: __HttpHandlerOptions,
|
|
247
|
-
cb: (err: any, data?: DeleteAwsLogSourceCommandOutput) => void
|
|
232
|
+
cb: (err: any, data?: DeleteAwsLogSourceCommandOutput) => void,
|
|
248
233
|
): void;
|
|
249
234
|
deleteCustomLogSource(
|
|
250
235
|
args: DeleteCustomLogSourceCommandInput,
|
|
251
|
-
options?: __HttpHandlerOptions
|
|
236
|
+
options?: __HttpHandlerOptions,
|
|
252
237
|
): Promise<DeleteCustomLogSourceCommandOutput>;
|
|
253
238
|
deleteCustomLogSource(
|
|
254
239
|
args: DeleteCustomLogSourceCommandInput,
|
|
255
|
-
cb: (err: any, data?: DeleteCustomLogSourceCommandOutput) => void
|
|
240
|
+
cb: (err: any, data?: DeleteCustomLogSourceCommandOutput) => void,
|
|
256
241
|
): void;
|
|
257
242
|
deleteCustomLogSource(
|
|
258
243
|
args: DeleteCustomLogSourceCommandInput,
|
|
259
244
|
options: __HttpHandlerOptions,
|
|
260
|
-
cb: (err: any, data?: DeleteCustomLogSourceCommandOutput) => void
|
|
245
|
+
cb: (err: any, data?: DeleteCustomLogSourceCommandOutput) => void,
|
|
261
246
|
): void;
|
|
262
247
|
deleteDataLake(
|
|
263
248
|
args: DeleteDataLakeCommandInput,
|
|
264
|
-
options?: __HttpHandlerOptions
|
|
249
|
+
options?: __HttpHandlerOptions,
|
|
265
250
|
): Promise<DeleteDataLakeCommandOutput>;
|
|
266
251
|
deleteDataLake(
|
|
267
252
|
args: DeleteDataLakeCommandInput,
|
|
268
|
-
cb: (err: any, data?: DeleteDataLakeCommandOutput) => void
|
|
253
|
+
cb: (err: any, data?: DeleteDataLakeCommandOutput) => void,
|
|
269
254
|
): void;
|
|
270
255
|
deleteDataLake(
|
|
271
256
|
args: DeleteDataLakeCommandInput,
|
|
272
257
|
options: __HttpHandlerOptions,
|
|
273
|
-
cb: (err: any, data?: DeleteDataLakeCommandOutput) => void
|
|
258
|
+
cb: (err: any, data?: DeleteDataLakeCommandOutput) => void,
|
|
274
259
|
): void;
|
|
275
260
|
deleteDataLakeExceptionSubscription(): Promise<DeleteDataLakeExceptionSubscriptionCommandOutput>;
|
|
276
261
|
deleteDataLakeExceptionSubscription(
|
|
277
262
|
args: DeleteDataLakeExceptionSubscriptionCommandInput,
|
|
278
|
-
options?: __HttpHandlerOptions
|
|
263
|
+
options?: __HttpHandlerOptions,
|
|
279
264
|
): Promise<DeleteDataLakeExceptionSubscriptionCommandOutput>;
|
|
280
265
|
deleteDataLakeExceptionSubscription(
|
|
281
266
|
args: DeleteDataLakeExceptionSubscriptionCommandInput,
|
|
282
|
-
cb: (
|
|
283
|
-
err: any,
|
|
284
|
-
data?: DeleteDataLakeExceptionSubscriptionCommandOutput
|
|
285
|
-
) => void
|
|
267
|
+
cb: (err: any, data?: DeleteDataLakeExceptionSubscriptionCommandOutput) => void,
|
|
286
268
|
): void;
|
|
287
269
|
deleteDataLakeExceptionSubscription(
|
|
288
270
|
args: DeleteDataLakeExceptionSubscriptionCommandInput,
|
|
289
271
|
options: __HttpHandlerOptions,
|
|
290
|
-
cb: (
|
|
291
|
-
err: any,
|
|
292
|
-
data?: DeleteDataLakeExceptionSubscriptionCommandOutput
|
|
293
|
-
) => void
|
|
272
|
+
cb: (err: any, data?: DeleteDataLakeExceptionSubscriptionCommandOutput) => void,
|
|
294
273
|
): void;
|
|
295
274
|
deleteDataLakeOrganizationConfiguration(): Promise<DeleteDataLakeOrganizationConfigurationCommandOutput>;
|
|
296
275
|
deleteDataLakeOrganizationConfiguration(
|
|
297
276
|
args: DeleteDataLakeOrganizationConfigurationCommandInput,
|
|
298
|
-
options?: __HttpHandlerOptions
|
|
277
|
+
options?: __HttpHandlerOptions,
|
|
299
278
|
): Promise<DeleteDataLakeOrganizationConfigurationCommandOutput>;
|
|
300
279
|
deleteDataLakeOrganizationConfiguration(
|
|
301
280
|
args: DeleteDataLakeOrganizationConfigurationCommandInput,
|
|
302
|
-
cb: (
|
|
303
|
-
err: any,
|
|
304
|
-
data?: DeleteDataLakeOrganizationConfigurationCommandOutput
|
|
305
|
-
) => void
|
|
281
|
+
cb: (err: any, data?: DeleteDataLakeOrganizationConfigurationCommandOutput) => void,
|
|
306
282
|
): void;
|
|
307
283
|
deleteDataLakeOrganizationConfiguration(
|
|
308
284
|
args: DeleteDataLakeOrganizationConfigurationCommandInput,
|
|
309
285
|
options: __HttpHandlerOptions,
|
|
310
|
-
cb: (
|
|
311
|
-
err: any,
|
|
312
|
-
data?: DeleteDataLakeOrganizationConfigurationCommandOutput
|
|
313
|
-
) => void
|
|
286
|
+
cb: (err: any, data?: DeleteDataLakeOrganizationConfigurationCommandOutput) => void,
|
|
314
287
|
): void;
|
|
315
288
|
deleteSubscriber(
|
|
316
289
|
args: DeleteSubscriberCommandInput,
|
|
317
|
-
options?: __HttpHandlerOptions
|
|
290
|
+
options?: __HttpHandlerOptions,
|
|
318
291
|
): Promise<DeleteSubscriberCommandOutput>;
|
|
319
292
|
deleteSubscriber(
|
|
320
293
|
args: DeleteSubscriberCommandInput,
|
|
321
|
-
cb: (err: any, data?: DeleteSubscriberCommandOutput) => void
|
|
294
|
+
cb: (err: any, data?: DeleteSubscriberCommandOutput) => void,
|
|
322
295
|
): void;
|
|
323
296
|
deleteSubscriber(
|
|
324
297
|
args: DeleteSubscriberCommandInput,
|
|
325
298
|
options: __HttpHandlerOptions,
|
|
326
|
-
cb: (err: any, data?: DeleteSubscriberCommandOutput) => void
|
|
299
|
+
cb: (err: any, data?: DeleteSubscriberCommandOutput) => void,
|
|
327
300
|
): void;
|
|
328
301
|
deleteSubscriberNotification(
|
|
329
302
|
args: DeleteSubscriberNotificationCommandInput,
|
|
330
|
-
options?: __HttpHandlerOptions
|
|
303
|
+
options?: __HttpHandlerOptions,
|
|
331
304
|
): Promise<DeleteSubscriberNotificationCommandOutput>;
|
|
332
305
|
deleteSubscriberNotification(
|
|
333
306
|
args: DeleteSubscriberNotificationCommandInput,
|
|
334
|
-
cb: (err: any, data?: DeleteSubscriberNotificationCommandOutput) => void
|
|
307
|
+
cb: (err: any, data?: DeleteSubscriberNotificationCommandOutput) => void,
|
|
335
308
|
): void;
|
|
336
309
|
deleteSubscriberNotification(
|
|
337
310
|
args: DeleteSubscriberNotificationCommandInput,
|
|
338
311
|
options: __HttpHandlerOptions,
|
|
339
|
-
cb: (err: any, data?: DeleteSubscriberNotificationCommandOutput) => void
|
|
312
|
+
cb: (err: any, data?: DeleteSubscriberNotificationCommandOutput) => void,
|
|
340
313
|
): void;
|
|
341
314
|
deregisterDataLakeDelegatedAdministrator(): Promise<DeregisterDataLakeDelegatedAdministratorCommandOutput>;
|
|
342
315
|
deregisterDataLakeDelegatedAdministrator(
|
|
343
316
|
args: DeregisterDataLakeDelegatedAdministratorCommandInput,
|
|
344
|
-
options?: __HttpHandlerOptions
|
|
317
|
+
options?: __HttpHandlerOptions,
|
|
345
318
|
): Promise<DeregisterDataLakeDelegatedAdministratorCommandOutput>;
|
|
346
319
|
deregisterDataLakeDelegatedAdministrator(
|
|
347
320
|
args: DeregisterDataLakeDelegatedAdministratorCommandInput,
|
|
348
|
-
cb: (
|
|
349
|
-
err: any,
|
|
350
|
-
data?: DeregisterDataLakeDelegatedAdministratorCommandOutput
|
|
351
|
-
) => void
|
|
321
|
+
cb: (err: any, data?: DeregisterDataLakeDelegatedAdministratorCommandOutput) => void,
|
|
352
322
|
): void;
|
|
353
323
|
deregisterDataLakeDelegatedAdministrator(
|
|
354
324
|
args: DeregisterDataLakeDelegatedAdministratorCommandInput,
|
|
355
325
|
options: __HttpHandlerOptions,
|
|
356
|
-
cb: (
|
|
357
|
-
err: any,
|
|
358
|
-
data?: DeregisterDataLakeDelegatedAdministratorCommandOutput
|
|
359
|
-
) => void
|
|
326
|
+
cb: (err: any, data?: DeregisterDataLakeDelegatedAdministratorCommandOutput) => void,
|
|
360
327
|
): void;
|
|
361
328
|
getDataLakeExceptionSubscription(): Promise<GetDataLakeExceptionSubscriptionCommandOutput>;
|
|
362
329
|
getDataLakeExceptionSubscription(
|
|
363
330
|
args: GetDataLakeExceptionSubscriptionCommandInput,
|
|
364
|
-
options?: __HttpHandlerOptions
|
|
331
|
+
options?: __HttpHandlerOptions,
|
|
365
332
|
): Promise<GetDataLakeExceptionSubscriptionCommandOutput>;
|
|
366
333
|
getDataLakeExceptionSubscription(
|
|
367
334
|
args: GetDataLakeExceptionSubscriptionCommandInput,
|
|
368
|
-
cb: (err: any, data?: GetDataLakeExceptionSubscriptionCommandOutput) => void
|
|
335
|
+
cb: (err: any, data?: GetDataLakeExceptionSubscriptionCommandOutput) => void,
|
|
369
336
|
): void;
|
|
370
337
|
getDataLakeExceptionSubscription(
|
|
371
338
|
args: GetDataLakeExceptionSubscriptionCommandInput,
|
|
372
339
|
options: __HttpHandlerOptions,
|
|
373
|
-
cb: (err: any, data?: GetDataLakeExceptionSubscriptionCommandOutput) => void
|
|
340
|
+
cb: (err: any, data?: GetDataLakeExceptionSubscriptionCommandOutput) => void,
|
|
374
341
|
): void;
|
|
375
342
|
getDataLakeOrganizationConfiguration(): Promise<GetDataLakeOrganizationConfigurationCommandOutput>;
|
|
376
343
|
getDataLakeOrganizationConfiguration(
|
|
377
344
|
args: GetDataLakeOrganizationConfigurationCommandInput,
|
|
378
|
-
options?: __HttpHandlerOptions
|
|
345
|
+
options?: __HttpHandlerOptions,
|
|
379
346
|
): Promise<GetDataLakeOrganizationConfigurationCommandOutput>;
|
|
380
347
|
getDataLakeOrganizationConfiguration(
|
|
381
348
|
args: GetDataLakeOrganizationConfigurationCommandInput,
|
|
382
|
-
cb: (
|
|
383
|
-
err: any,
|
|
384
|
-
data?: GetDataLakeOrganizationConfigurationCommandOutput
|
|
385
|
-
) => void
|
|
349
|
+
cb: (err: any, data?: GetDataLakeOrganizationConfigurationCommandOutput) => void,
|
|
386
350
|
): void;
|
|
387
351
|
getDataLakeOrganizationConfiguration(
|
|
388
352
|
args: GetDataLakeOrganizationConfigurationCommandInput,
|
|
389
353
|
options: __HttpHandlerOptions,
|
|
390
|
-
cb: (
|
|
391
|
-
err: any,
|
|
392
|
-
data?: GetDataLakeOrganizationConfigurationCommandOutput
|
|
393
|
-
) => void
|
|
354
|
+
cb: (err: any, data?: GetDataLakeOrganizationConfigurationCommandOutput) => void,
|
|
394
355
|
): void;
|
|
395
356
|
getDataLakeSources(): Promise<GetDataLakeSourcesCommandOutput>;
|
|
396
357
|
getDataLakeSources(
|
|
397
358
|
args: GetDataLakeSourcesCommandInput,
|
|
398
|
-
options?: __HttpHandlerOptions
|
|
359
|
+
options?: __HttpHandlerOptions,
|
|
399
360
|
): Promise<GetDataLakeSourcesCommandOutput>;
|
|
400
361
|
getDataLakeSources(
|
|
401
362
|
args: GetDataLakeSourcesCommandInput,
|
|
402
|
-
cb: (err: any, data?: GetDataLakeSourcesCommandOutput) => void
|
|
363
|
+
cb: (err: any, data?: GetDataLakeSourcesCommandOutput) => void,
|
|
403
364
|
): void;
|
|
404
365
|
getDataLakeSources(
|
|
405
366
|
args: GetDataLakeSourcesCommandInput,
|
|
406
367
|
options: __HttpHandlerOptions,
|
|
407
|
-
cb: (err: any, data?: GetDataLakeSourcesCommandOutput) => void
|
|
368
|
+
cb: (err: any, data?: GetDataLakeSourcesCommandOutput) => void,
|
|
408
369
|
): void;
|
|
409
370
|
getSubscriber(
|
|
410
371
|
args: GetSubscriberCommandInput,
|
|
411
|
-
options?: __HttpHandlerOptions
|
|
372
|
+
options?: __HttpHandlerOptions,
|
|
412
373
|
): Promise<GetSubscriberCommandOutput>;
|
|
413
374
|
getSubscriber(
|
|
414
375
|
args: GetSubscriberCommandInput,
|
|
415
|
-
cb: (err: any, data?: GetSubscriberCommandOutput) => void
|
|
376
|
+
cb: (err: any, data?: GetSubscriberCommandOutput) => void,
|
|
416
377
|
): void;
|
|
417
378
|
getSubscriber(
|
|
418
379
|
args: GetSubscriberCommandInput,
|
|
419
380
|
options: __HttpHandlerOptions,
|
|
420
|
-
cb: (err: any, data?: GetSubscriberCommandOutput) => void
|
|
381
|
+
cb: (err: any, data?: GetSubscriberCommandOutput) => void,
|
|
421
382
|
): void;
|
|
422
383
|
listDataLakeExceptions(): Promise<ListDataLakeExceptionsCommandOutput>;
|
|
423
384
|
listDataLakeExceptions(
|
|
424
385
|
args: ListDataLakeExceptionsCommandInput,
|
|
425
|
-
options?: __HttpHandlerOptions
|
|
386
|
+
options?: __HttpHandlerOptions,
|
|
426
387
|
): Promise<ListDataLakeExceptionsCommandOutput>;
|
|
427
388
|
listDataLakeExceptions(
|
|
428
389
|
args: ListDataLakeExceptionsCommandInput,
|
|
429
|
-
cb: (err: any, data?: ListDataLakeExceptionsCommandOutput) => void
|
|
390
|
+
cb: (err: any, data?: ListDataLakeExceptionsCommandOutput) => void,
|
|
430
391
|
): void;
|
|
431
392
|
listDataLakeExceptions(
|
|
432
393
|
args: ListDataLakeExceptionsCommandInput,
|
|
433
394
|
options: __HttpHandlerOptions,
|
|
434
|
-
cb: (err: any, data?: ListDataLakeExceptionsCommandOutput) => void
|
|
395
|
+
cb: (err: any, data?: ListDataLakeExceptionsCommandOutput) => void,
|
|
435
396
|
): void;
|
|
436
397
|
listDataLakes(): Promise<ListDataLakesCommandOutput>;
|
|
437
398
|
listDataLakes(
|
|
438
399
|
args: ListDataLakesCommandInput,
|
|
439
|
-
options?: __HttpHandlerOptions
|
|
400
|
+
options?: __HttpHandlerOptions,
|
|
440
401
|
): Promise<ListDataLakesCommandOutput>;
|
|
441
402
|
listDataLakes(
|
|
442
403
|
args: ListDataLakesCommandInput,
|
|
443
|
-
cb: (err: any, data?: ListDataLakesCommandOutput) => void
|
|
404
|
+
cb: (err: any, data?: ListDataLakesCommandOutput) => void,
|
|
444
405
|
): void;
|
|
445
406
|
listDataLakes(
|
|
446
407
|
args: ListDataLakesCommandInput,
|
|
447
408
|
options: __HttpHandlerOptions,
|
|
448
|
-
cb: (err: any, data?: ListDataLakesCommandOutput) => void
|
|
409
|
+
cb: (err: any, data?: ListDataLakesCommandOutput) => void,
|
|
449
410
|
): void;
|
|
450
411
|
listLogSources(): Promise<ListLogSourcesCommandOutput>;
|
|
451
412
|
listLogSources(
|
|
452
413
|
args: ListLogSourcesCommandInput,
|
|
453
|
-
options?: __HttpHandlerOptions
|
|
414
|
+
options?: __HttpHandlerOptions,
|
|
454
415
|
): Promise<ListLogSourcesCommandOutput>;
|
|
455
416
|
listLogSources(
|
|
456
417
|
args: ListLogSourcesCommandInput,
|
|
457
|
-
cb: (err: any, data?: ListLogSourcesCommandOutput) => void
|
|
418
|
+
cb: (err: any, data?: ListLogSourcesCommandOutput) => void,
|
|
458
419
|
): void;
|
|
459
420
|
listLogSources(
|
|
460
421
|
args: ListLogSourcesCommandInput,
|
|
461
422
|
options: __HttpHandlerOptions,
|
|
462
|
-
cb: (err: any, data?: ListLogSourcesCommandOutput) => void
|
|
423
|
+
cb: (err: any, data?: ListLogSourcesCommandOutput) => void,
|
|
463
424
|
): void;
|
|
464
425
|
listSubscribers(): Promise<ListSubscribersCommandOutput>;
|
|
465
426
|
listSubscribers(
|
|
466
427
|
args: ListSubscribersCommandInput,
|
|
467
|
-
options?: __HttpHandlerOptions
|
|
428
|
+
options?: __HttpHandlerOptions,
|
|
468
429
|
): Promise<ListSubscribersCommandOutput>;
|
|
469
430
|
listSubscribers(
|
|
470
431
|
args: ListSubscribersCommandInput,
|
|
471
|
-
cb: (err: any, data?: ListSubscribersCommandOutput) => void
|
|
432
|
+
cb: (err: any, data?: ListSubscribersCommandOutput) => void,
|
|
472
433
|
): void;
|
|
473
434
|
listSubscribers(
|
|
474
435
|
args: ListSubscribersCommandInput,
|
|
475
436
|
options: __HttpHandlerOptions,
|
|
476
|
-
cb: (err: any, data?: ListSubscribersCommandOutput) => void
|
|
437
|
+
cb: (err: any, data?: ListSubscribersCommandOutput) => void,
|
|
477
438
|
): void;
|
|
478
439
|
listTagsForResource(
|
|
479
440
|
args: ListTagsForResourceCommandInput,
|
|
480
|
-
options?: __HttpHandlerOptions
|
|
441
|
+
options?: __HttpHandlerOptions,
|
|
481
442
|
): Promise<ListTagsForResourceCommandOutput>;
|
|
482
443
|
listTagsForResource(
|
|
483
444
|
args: ListTagsForResourceCommandInput,
|
|
484
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
445
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
485
446
|
): void;
|
|
486
447
|
listTagsForResource(
|
|
487
448
|
args: ListTagsForResourceCommandInput,
|
|
488
449
|
options: __HttpHandlerOptions,
|
|
489
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
450
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
490
451
|
): void;
|
|
491
452
|
registerDataLakeDelegatedAdministrator(
|
|
492
453
|
args: RegisterDataLakeDelegatedAdministratorCommandInput,
|
|
493
|
-
options?: __HttpHandlerOptions
|
|
454
|
+
options?: __HttpHandlerOptions,
|
|
494
455
|
): Promise<RegisterDataLakeDelegatedAdministratorCommandOutput>;
|
|
495
456
|
registerDataLakeDelegatedAdministrator(
|
|
496
457
|
args: RegisterDataLakeDelegatedAdministratorCommandInput,
|
|
497
|
-
cb: (
|
|
498
|
-
err: any,
|
|
499
|
-
data?: RegisterDataLakeDelegatedAdministratorCommandOutput
|
|
500
|
-
) => void
|
|
458
|
+
cb: (err: any, data?: RegisterDataLakeDelegatedAdministratorCommandOutput) => void,
|
|
501
459
|
): void;
|
|
502
460
|
registerDataLakeDelegatedAdministrator(
|
|
503
461
|
args: RegisterDataLakeDelegatedAdministratorCommandInput,
|
|
504
462
|
options: __HttpHandlerOptions,
|
|
505
|
-
cb: (
|
|
506
|
-
err: any,
|
|
507
|
-
data?: RegisterDataLakeDelegatedAdministratorCommandOutput
|
|
508
|
-
) => void
|
|
463
|
+
cb: (err: any, data?: RegisterDataLakeDelegatedAdministratorCommandOutput) => void,
|
|
509
464
|
): void;
|
|
510
465
|
tagResource(
|
|
511
466
|
args: TagResourceCommandInput,
|
|
512
|
-
options?: __HttpHandlerOptions
|
|
467
|
+
options?: __HttpHandlerOptions,
|
|
513
468
|
): Promise<TagResourceCommandOutput>;
|
|
514
469
|
tagResource(
|
|
515
470
|
args: TagResourceCommandInput,
|
|
516
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
471
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
517
472
|
): void;
|
|
518
473
|
tagResource(
|
|
519
474
|
args: TagResourceCommandInput,
|
|
520
475
|
options: __HttpHandlerOptions,
|
|
521
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
476
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
522
477
|
): void;
|
|
523
478
|
untagResource(
|
|
524
479
|
args: UntagResourceCommandInput,
|
|
525
|
-
options?: __HttpHandlerOptions
|
|
480
|
+
options?: __HttpHandlerOptions,
|
|
526
481
|
): Promise<UntagResourceCommandOutput>;
|
|
527
482
|
untagResource(
|
|
528
483
|
args: UntagResourceCommandInput,
|
|
529
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
484
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
530
485
|
): void;
|
|
531
486
|
untagResource(
|
|
532
487
|
args: UntagResourceCommandInput,
|
|
533
488
|
options: __HttpHandlerOptions,
|
|
534
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
489
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
535
490
|
): void;
|
|
536
491
|
updateDataLake(
|
|
537
492
|
args: UpdateDataLakeCommandInput,
|
|
538
|
-
options?: __HttpHandlerOptions
|
|
493
|
+
options?: __HttpHandlerOptions,
|
|
539
494
|
): Promise<UpdateDataLakeCommandOutput>;
|
|
540
495
|
updateDataLake(
|
|
541
496
|
args: UpdateDataLakeCommandInput,
|
|
542
|
-
cb: (err: any, data?: UpdateDataLakeCommandOutput) => void
|
|
497
|
+
cb: (err: any, data?: UpdateDataLakeCommandOutput) => void,
|
|
543
498
|
): void;
|
|
544
499
|
updateDataLake(
|
|
545
500
|
args: UpdateDataLakeCommandInput,
|
|
546
501
|
options: __HttpHandlerOptions,
|
|
547
|
-
cb: (err: any, data?: UpdateDataLakeCommandOutput) => void
|
|
502
|
+
cb: (err: any, data?: UpdateDataLakeCommandOutput) => void,
|
|
548
503
|
): void;
|
|
549
504
|
updateDataLakeExceptionSubscription(
|
|
550
505
|
args: UpdateDataLakeExceptionSubscriptionCommandInput,
|
|
551
|
-
options?: __HttpHandlerOptions
|
|
506
|
+
options?: __HttpHandlerOptions,
|
|
552
507
|
): Promise<UpdateDataLakeExceptionSubscriptionCommandOutput>;
|
|
553
508
|
updateDataLakeExceptionSubscription(
|
|
554
509
|
args: UpdateDataLakeExceptionSubscriptionCommandInput,
|
|
555
|
-
cb: (
|
|
556
|
-
err: any,
|
|
557
|
-
data?: UpdateDataLakeExceptionSubscriptionCommandOutput
|
|
558
|
-
) => void
|
|
510
|
+
cb: (err: any, data?: UpdateDataLakeExceptionSubscriptionCommandOutput) => void,
|
|
559
511
|
): void;
|
|
560
512
|
updateDataLakeExceptionSubscription(
|
|
561
513
|
args: UpdateDataLakeExceptionSubscriptionCommandInput,
|
|
562
514
|
options: __HttpHandlerOptions,
|
|
563
|
-
cb: (
|
|
564
|
-
err: any,
|
|
565
|
-
data?: UpdateDataLakeExceptionSubscriptionCommandOutput
|
|
566
|
-
) => void
|
|
515
|
+
cb: (err: any, data?: UpdateDataLakeExceptionSubscriptionCommandOutput) => void,
|
|
567
516
|
): void;
|
|
568
517
|
updateSubscriber(
|
|
569
518
|
args: UpdateSubscriberCommandInput,
|
|
570
|
-
options?: __HttpHandlerOptions
|
|
519
|
+
options?: __HttpHandlerOptions,
|
|
571
520
|
): Promise<UpdateSubscriberCommandOutput>;
|
|
572
521
|
updateSubscriber(
|
|
573
522
|
args: UpdateSubscriberCommandInput,
|
|
574
|
-
cb: (err: any, data?: UpdateSubscriberCommandOutput) => void
|
|
523
|
+
cb: (err: any, data?: UpdateSubscriberCommandOutput) => void,
|
|
575
524
|
): void;
|
|
576
525
|
updateSubscriber(
|
|
577
526
|
args: UpdateSubscriberCommandInput,
|
|
578
527
|
options: __HttpHandlerOptions,
|
|
579
|
-
cb: (err: any, data?: UpdateSubscriberCommandOutput) => void
|
|
528
|
+
cb: (err: any, data?: UpdateSubscriberCommandOutput) => void,
|
|
580
529
|
): void;
|
|
581
530
|
updateSubscriberNotification(
|
|
582
531
|
args: UpdateSubscriberNotificationCommandInput,
|
|
583
|
-
options?: __HttpHandlerOptions
|
|
532
|
+
options?: __HttpHandlerOptions,
|
|
584
533
|
): Promise<UpdateSubscriberNotificationCommandOutput>;
|
|
585
534
|
updateSubscriberNotification(
|
|
586
535
|
args: UpdateSubscriberNotificationCommandInput,
|
|
587
|
-
cb: (err: any, data?: UpdateSubscriberNotificationCommandOutput) => void
|
|
536
|
+
cb: (err: any, data?: UpdateSubscriberNotificationCommandOutput) => void,
|
|
588
537
|
): void;
|
|
589
538
|
updateSubscriberNotification(
|
|
590
539
|
args: UpdateSubscriberNotificationCommandInput,
|
|
591
540
|
options: __HttpHandlerOptions,
|
|
592
|
-
cb: (err: any, data?: UpdateSubscriberNotificationCommandOutput) => void
|
|
541
|
+
cb: (err: any, data?: UpdateSubscriberNotificationCommandOutput) => void,
|
|
593
542
|
): void;
|
|
594
543
|
paginateGetDataLakeSources(
|
|
595
544
|
args?: GetDataLakeSourcesCommandInput,
|
|
596
545
|
paginationConfig?: Pick<
|
|
597
546
|
PaginationConfiguration,
|
|
598
547
|
Exclude<keyof PaginationConfiguration, "client">
|
|
599
|
-
|
|
548
|
+
>,
|
|
600
549
|
): Paginator<GetDataLakeSourcesCommandOutput>;
|
|
601
550
|
paginateListDataLakeExceptions(
|
|
602
551
|
args?: ListDataLakeExceptionsCommandInput,
|
|
603
552
|
paginationConfig?: Pick<
|
|
604
553
|
PaginationConfiguration,
|
|
605
554
|
Exclude<keyof PaginationConfiguration, "client">
|
|
606
|
-
|
|
555
|
+
>,
|
|
607
556
|
): Paginator<ListDataLakeExceptionsCommandOutput>;
|
|
608
557
|
paginateListLogSources(
|
|
609
558
|
args?: ListLogSourcesCommandInput,
|
|
610
559
|
paginationConfig?: Pick<
|
|
611
560
|
PaginationConfiguration,
|
|
612
561
|
Exclude<keyof PaginationConfiguration, "client">
|
|
613
|
-
|
|
562
|
+
>,
|
|
614
563
|
): Paginator<ListLogSourcesCommandOutput>;
|
|
615
564
|
paginateListSubscribers(
|
|
616
565
|
args?: ListSubscribersCommandInput,
|
|
617
566
|
paginationConfig?: Pick<
|
|
618
567
|
PaginationConfiguration,
|
|
619
568
|
Exclude<keyof PaginationConfiguration, "client">
|
|
620
|
-
|
|
569
|
+
>,
|
|
621
570
|
): Paginator<ListSubscribersCommandOutput>;
|
|
622
571
|
}
|
|
623
|
-
export declare class SecurityLake
|
|
624
|
-
extends SecurityLakeClient
|
|
625
|
-
implements SecurityLake {}
|
|
572
|
+
export declare class SecurityLake extends SecurityLakeClient implements SecurityLake {}
|