@aws-sdk/client-securitylake 3.928.0 → 3.929.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 +1131 -1193
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/SecurityLakeClient.js +2 -0
- package/dist-es/commands/CreateAwsLogSourceCommand.js +3 -9
- package/dist-es/commands/CreateCustomLogSourceCommand.js +3 -9
- package/dist-es/commands/CreateDataLakeCommand.js +3 -9
- package/dist-es/commands/CreateDataLakeExceptionSubscriptionCommand.js +3 -9
- package/dist-es/commands/CreateDataLakeOrganizationConfigurationCommand.js +3 -9
- package/dist-es/commands/CreateSubscriberCommand.js +3 -9
- package/dist-es/commands/CreateSubscriberNotificationCommand.js +3 -9
- package/dist-es/commands/DeleteAwsLogSourceCommand.js +3 -9
- package/dist-es/commands/DeleteCustomLogSourceCommand.js +3 -9
- package/dist-es/commands/DeleteDataLakeCommand.js +3 -9
- package/dist-es/commands/DeleteDataLakeExceptionSubscriptionCommand.js +3 -9
- package/dist-es/commands/DeleteDataLakeOrganizationConfigurationCommand.js +3 -9
- package/dist-es/commands/DeleteSubscriberCommand.js +3 -9
- package/dist-es/commands/DeleteSubscriberNotificationCommand.js +3 -9
- package/dist-es/commands/DeregisterDataLakeDelegatedAdministratorCommand.js +3 -9
- package/dist-es/commands/GetDataLakeExceptionSubscriptionCommand.js +3 -9
- package/dist-es/commands/GetDataLakeOrganizationConfigurationCommand.js +3 -9
- package/dist-es/commands/GetDataLakeSourcesCommand.js +3 -9
- package/dist-es/commands/GetSubscriberCommand.js +3 -9
- package/dist-es/commands/ListDataLakeExceptionsCommand.js +3 -9
- package/dist-es/commands/ListDataLakesCommand.js +3 -9
- package/dist-es/commands/ListLogSourcesCommand.js +3 -9
- package/dist-es/commands/ListSubscribersCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/RegisterDataLakeDelegatedAdministratorCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateDataLakeCommand.js +3 -9
- package/dist-es/commands/UpdateDataLakeExceptionSubscriptionCommand.js +3 -9
- package/dist-es/commands/UpdateSubscriberCommand.js +3 -9
- package/dist-es/commands/UpdateSubscriberNotificationCommand.js +3 -9
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1061 -0
- package/dist-types/SecurityLakeClient.d.ts +10 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +148 -0
- package/dist-types/ts3.4/SecurityLakeClient.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +153 -0
- package/package.json +2 -2
- package/dist-es/protocols/Aws_restJson1.js +0 -965
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -281
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -377
package/dist-cjs/index.js
CHANGED
|
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
|
|
|
6
6
|
var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
|
|
7
7
|
var configResolver = require('@smithy/config-resolver');
|
|
8
8
|
var core = require('@smithy/core');
|
|
9
|
+
var schema = require('@smithy/core/schema');
|
|
9
10
|
var middlewareContentLength = require('@smithy/middleware-content-length');
|
|
10
11
|
var middlewareEndpoint = require('@smithy/middleware-endpoint');
|
|
11
12
|
var middlewareRetry = require('@smithy/middleware-retry');
|
|
@@ -14,8 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
14
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
15
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
16
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
17
|
-
var middlewareSerde = require('@smithy/middleware-serde');
|
|
18
|
-
var core$1 = require('@aws-sdk/core');
|
|
19
18
|
|
|
20
19
|
const resolveClientEndpointParameters = (options) => {
|
|
21
20
|
return Object.assign(options, {
|
|
@@ -91,6 +90,7 @@ class SecurityLakeClient extends smithyClient.Client {
|
|
|
91
90
|
const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
|
|
92
91
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
93
92
|
this.config = _config_8;
|
|
93
|
+
this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
|
|
94
94
|
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
95
95
|
this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
|
|
96
96
|
this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
|
|
@@ -110,14 +110,14 @@ class SecurityLakeClient extends smithyClient.Client {
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
class SecurityLakeServiceException extends smithyClient.ServiceException {
|
|
113
|
+
let SecurityLakeServiceException$1 = class SecurityLakeServiceException extends smithyClient.ServiceException {
|
|
114
114
|
constructor(options) {
|
|
115
115
|
super(options);
|
|
116
116
|
Object.setPrototypeOf(this, SecurityLakeServiceException.prototype);
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
};
|
|
119
119
|
|
|
120
|
-
class AccessDeniedException extends SecurityLakeServiceException {
|
|
120
|
+
let AccessDeniedException$1 = class AccessDeniedException extends SecurityLakeServiceException$1 {
|
|
121
121
|
name = "AccessDeniedException";
|
|
122
122
|
$fault = "client";
|
|
123
123
|
errorCode;
|
|
@@ -130,7 +130,7 @@ class AccessDeniedException extends SecurityLakeServiceException {
|
|
|
130
130
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
131
131
|
this.errorCode = opts.errorCode;
|
|
132
132
|
}
|
|
133
|
-
}
|
|
133
|
+
};
|
|
134
134
|
const AccessType = {
|
|
135
135
|
LAKEFORMATION: "LAKEFORMATION",
|
|
136
136
|
S3: "S3",
|
|
@@ -145,7 +145,7 @@ const AwsLogSourceName = {
|
|
|
145
145
|
VPC_FLOW: "VPC_FLOW",
|
|
146
146
|
WAF: "WAF",
|
|
147
147
|
};
|
|
148
|
-
class BadRequestException extends SecurityLakeServiceException {
|
|
148
|
+
let BadRequestException$1 = class BadRequestException extends SecurityLakeServiceException$1 {
|
|
149
149
|
name = "BadRequestException";
|
|
150
150
|
$fault = "client";
|
|
151
151
|
constructor(opts) {
|
|
@@ -156,8 +156,8 @@ class BadRequestException extends SecurityLakeServiceException {
|
|
|
156
156
|
});
|
|
157
157
|
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
158
158
|
}
|
|
159
|
-
}
|
|
160
|
-
class ConflictException extends SecurityLakeServiceException {
|
|
159
|
+
};
|
|
160
|
+
let ConflictException$1 = class ConflictException extends SecurityLakeServiceException$1 {
|
|
161
161
|
name = "ConflictException";
|
|
162
162
|
$fault = "client";
|
|
163
163
|
resourceName;
|
|
@@ -172,8 +172,8 @@ class ConflictException extends SecurityLakeServiceException {
|
|
|
172
172
|
this.resourceName = opts.resourceName;
|
|
173
173
|
this.resourceType = opts.resourceType;
|
|
174
174
|
}
|
|
175
|
-
}
|
|
176
|
-
class InternalServerException extends SecurityLakeServiceException {
|
|
175
|
+
};
|
|
176
|
+
let InternalServerException$1 = class InternalServerException extends SecurityLakeServiceException$1 {
|
|
177
177
|
name = "InternalServerException";
|
|
178
178
|
$fault = "server";
|
|
179
179
|
$retryable = {};
|
|
@@ -185,8 +185,8 @@ class InternalServerException extends SecurityLakeServiceException {
|
|
|
185
185
|
});
|
|
186
186
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
187
187
|
}
|
|
188
|
-
}
|
|
189
|
-
class ResourceNotFoundException extends SecurityLakeServiceException {
|
|
188
|
+
};
|
|
189
|
+
let ResourceNotFoundException$1 = class ResourceNotFoundException extends SecurityLakeServiceException$1 {
|
|
190
190
|
name = "ResourceNotFoundException";
|
|
191
191
|
$fault = "client";
|
|
192
192
|
resourceName;
|
|
@@ -201,8 +201,8 @@ class ResourceNotFoundException extends SecurityLakeServiceException {
|
|
|
201
201
|
this.resourceName = opts.resourceName;
|
|
202
202
|
this.resourceType = opts.resourceType;
|
|
203
203
|
}
|
|
204
|
-
}
|
|
205
|
-
class ThrottlingException extends SecurityLakeServiceException {
|
|
204
|
+
};
|
|
205
|
+
let ThrottlingException$1 = class ThrottlingException extends SecurityLakeServiceException$1 {
|
|
206
206
|
name = "ThrottlingException";
|
|
207
207
|
$fault = "client";
|
|
208
208
|
$retryable = {
|
|
@@ -222,7 +222,7 @@ class ThrottlingException extends SecurityLakeServiceException {
|
|
|
222
222
|
this.quotaCode = opts.quotaCode;
|
|
223
223
|
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
224
224
|
}
|
|
225
|
-
}
|
|
225
|
+
};
|
|
226
226
|
const DataLakeStatus = {
|
|
227
227
|
COMPLETED: "COMPLETED",
|
|
228
228
|
FAILED: "FAILED",
|
|
@@ -265,980 +265,1068 @@ const SourceCollectionStatus = {
|
|
|
265
265
|
NOT_COLLECTING: "NOT_COLLECTING",
|
|
266
266
|
};
|
|
267
267
|
|
|
268
|
-
const
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
const
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
const
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
const
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
const
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
const
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
const
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
const
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
const
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
const
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
const
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
const
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
const
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
const
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
const
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
b.m("DELETE").h(headers).b(body);
|
|
455
|
-
return b.build();
|
|
456
|
-
};
|
|
457
|
-
const se_GetDataLakeExceptionSubscriptionCommand = async (input, context) => {
|
|
458
|
-
const b = core.requestBuilder(input, context);
|
|
459
|
-
const headers = {};
|
|
460
|
-
b.bp("/v1/datalake/exceptions/subscription");
|
|
461
|
-
let body;
|
|
462
|
-
b.m("GET").h(headers).b(body);
|
|
463
|
-
return b.build();
|
|
464
|
-
};
|
|
465
|
-
const se_GetDataLakeOrganizationConfigurationCommand = async (input, context) => {
|
|
466
|
-
const b = core.requestBuilder(input, context);
|
|
467
|
-
const headers = {};
|
|
468
|
-
b.bp("/v1/datalake/organization/configuration");
|
|
469
|
-
let body;
|
|
470
|
-
b.m("GET").h(headers).b(body);
|
|
471
|
-
return b.build();
|
|
472
|
-
};
|
|
473
|
-
const se_GetDataLakeSourcesCommand = async (input, context) => {
|
|
474
|
-
const b = core.requestBuilder(input, context);
|
|
475
|
-
const headers = {
|
|
476
|
-
"content-type": "application/json",
|
|
477
|
-
};
|
|
478
|
-
b.bp("/v1/datalake/sources");
|
|
479
|
-
let body;
|
|
480
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
481
|
-
accounts: (_) => smithyClient._json(_),
|
|
482
|
-
maxResults: [],
|
|
483
|
-
nextToken: [],
|
|
484
|
-
}));
|
|
485
|
-
b.m("POST").h(headers).b(body);
|
|
486
|
-
return b.build();
|
|
487
|
-
};
|
|
488
|
-
const se_GetSubscriberCommand = async (input, context) => {
|
|
489
|
-
const b = core.requestBuilder(input, context);
|
|
490
|
-
const headers = {};
|
|
491
|
-
b.bp("/v1/subscribers/{subscriberId}");
|
|
492
|
-
b.p("subscriberId", () => input.subscriberId, "{subscriberId}", false);
|
|
493
|
-
let body;
|
|
494
|
-
b.m("GET").h(headers).b(body);
|
|
495
|
-
return b.build();
|
|
496
|
-
};
|
|
497
|
-
const se_ListDataLakeExceptionsCommand = async (input, context) => {
|
|
498
|
-
const b = core.requestBuilder(input, context);
|
|
499
|
-
const headers = {
|
|
500
|
-
"content-type": "application/json",
|
|
501
|
-
};
|
|
502
|
-
b.bp("/v1/datalake/exceptions");
|
|
503
|
-
let body;
|
|
504
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
505
|
-
maxResults: [],
|
|
506
|
-
nextToken: [],
|
|
507
|
-
regions: (_) => smithyClient._json(_),
|
|
508
|
-
}));
|
|
509
|
-
b.m("POST").h(headers).b(body);
|
|
510
|
-
return b.build();
|
|
511
|
-
};
|
|
512
|
-
const se_ListDataLakesCommand = async (input, context) => {
|
|
513
|
-
const b = core.requestBuilder(input, context);
|
|
514
|
-
const headers = {};
|
|
515
|
-
b.bp("/v1/datalakes");
|
|
516
|
-
const query = smithyClient.map({
|
|
517
|
-
[_r]: [() => input.regions !== void 0, () => input[_r] || []],
|
|
518
|
-
});
|
|
519
|
-
let body;
|
|
520
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
521
|
-
return b.build();
|
|
522
|
-
};
|
|
523
|
-
const se_ListLogSourcesCommand = async (input, context) => {
|
|
524
|
-
const b = core.requestBuilder(input, context);
|
|
525
|
-
const headers = {
|
|
526
|
-
"content-type": "application/json",
|
|
527
|
-
};
|
|
528
|
-
b.bp("/v1/datalake/logsources/list");
|
|
529
|
-
let body;
|
|
530
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
531
|
-
accounts: (_) => smithyClient._json(_),
|
|
532
|
-
maxResults: [],
|
|
533
|
-
nextToken: [],
|
|
534
|
-
regions: (_) => smithyClient._json(_),
|
|
535
|
-
sources: (_) => smithyClient._json(_),
|
|
536
|
-
}));
|
|
537
|
-
b.m("POST").h(headers).b(body);
|
|
538
|
-
return b.build();
|
|
539
|
-
};
|
|
540
|
-
const se_ListSubscribersCommand = async (input, context) => {
|
|
541
|
-
const b = core.requestBuilder(input, context);
|
|
542
|
-
const headers = {};
|
|
543
|
-
b.bp("/v1/subscribers");
|
|
544
|
-
const query = smithyClient.map({
|
|
545
|
-
[_nT]: [, input[_nT]],
|
|
546
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
547
|
-
});
|
|
548
|
-
let body;
|
|
549
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
550
|
-
return b.build();
|
|
551
|
-
};
|
|
552
|
-
const se_ListTagsForResourceCommand = async (input, context) => {
|
|
553
|
-
const b = core.requestBuilder(input, context);
|
|
554
|
-
const headers = {};
|
|
555
|
-
b.bp("/v1/tags/{resourceArn}");
|
|
556
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
557
|
-
let body;
|
|
558
|
-
b.m("GET").h(headers).b(body);
|
|
559
|
-
return b.build();
|
|
560
|
-
};
|
|
561
|
-
const se_RegisterDataLakeDelegatedAdministratorCommand = async (input, context) => {
|
|
562
|
-
const b = core.requestBuilder(input, context);
|
|
563
|
-
const headers = {
|
|
564
|
-
"content-type": "application/json",
|
|
565
|
-
};
|
|
566
|
-
b.bp("/v1/datalake/delegate");
|
|
567
|
-
let body;
|
|
568
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
569
|
-
accountId: [],
|
|
570
|
-
}));
|
|
571
|
-
b.m("POST").h(headers).b(body);
|
|
572
|
-
return b.build();
|
|
573
|
-
};
|
|
574
|
-
const se_TagResourceCommand = async (input, context) => {
|
|
575
|
-
const b = core.requestBuilder(input, context);
|
|
576
|
-
const headers = {
|
|
577
|
-
"content-type": "application/json",
|
|
578
|
-
};
|
|
579
|
-
b.bp("/v1/tags/{resourceArn}");
|
|
580
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
581
|
-
let body;
|
|
582
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
583
|
-
tags: (_) => smithyClient._json(_),
|
|
584
|
-
}));
|
|
585
|
-
b.m("POST").h(headers).b(body);
|
|
586
|
-
return b.build();
|
|
587
|
-
};
|
|
588
|
-
const se_UntagResourceCommand = async (input, context) => {
|
|
589
|
-
const b = core.requestBuilder(input, context);
|
|
590
|
-
const headers = {};
|
|
591
|
-
b.bp("/v1/tags/{resourceArn}");
|
|
592
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
593
|
-
const query = smithyClient.map({
|
|
594
|
-
[_tK]: [smithyClient.expectNonNull(input.tagKeys, `tagKeys`) != null, () => input[_tK] || []],
|
|
595
|
-
});
|
|
596
|
-
let body;
|
|
597
|
-
b.m("DELETE").h(headers).q(query).b(body);
|
|
598
|
-
return b.build();
|
|
599
|
-
};
|
|
600
|
-
const se_UpdateDataLakeCommand = async (input, context) => {
|
|
601
|
-
const b = core.requestBuilder(input, context);
|
|
602
|
-
const headers = {
|
|
603
|
-
"content-type": "application/json",
|
|
604
|
-
};
|
|
605
|
-
b.bp("/v1/datalake");
|
|
606
|
-
let body;
|
|
607
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
608
|
-
configurations: (_) => smithyClient._json(_),
|
|
609
|
-
metaStoreManagerRoleArn: [],
|
|
610
|
-
}));
|
|
611
|
-
b.m("PUT").h(headers).b(body);
|
|
612
|
-
return b.build();
|
|
613
|
-
};
|
|
614
|
-
const se_UpdateDataLakeExceptionSubscriptionCommand = async (input, context) => {
|
|
615
|
-
const b = core.requestBuilder(input, context);
|
|
616
|
-
const headers = {
|
|
617
|
-
"content-type": "application/json",
|
|
618
|
-
};
|
|
619
|
-
b.bp("/v1/datalake/exceptions/subscription");
|
|
620
|
-
let body;
|
|
621
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
622
|
-
exceptionTimeToLive: [],
|
|
623
|
-
notificationEndpoint: [],
|
|
624
|
-
subscriptionProtocol: [],
|
|
625
|
-
}));
|
|
626
|
-
b.m("PUT").h(headers).b(body);
|
|
627
|
-
return b.build();
|
|
628
|
-
};
|
|
629
|
-
const se_UpdateSubscriberCommand = async (input, context) => {
|
|
630
|
-
const b = core.requestBuilder(input, context);
|
|
631
|
-
const headers = {
|
|
632
|
-
"content-type": "application/json",
|
|
633
|
-
};
|
|
634
|
-
b.bp("/v1/subscribers/{subscriberId}");
|
|
635
|
-
b.p("subscriberId", () => input.subscriberId, "{subscriberId}", false);
|
|
636
|
-
let body;
|
|
637
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
638
|
-
sources: (_) => smithyClient._json(_),
|
|
639
|
-
subscriberDescription: [],
|
|
640
|
-
subscriberIdentity: (_) => smithyClient._json(_),
|
|
641
|
-
subscriberName: [],
|
|
642
|
-
}));
|
|
643
|
-
b.m("PUT").h(headers).b(body);
|
|
644
|
-
return b.build();
|
|
645
|
-
};
|
|
646
|
-
const se_UpdateSubscriberNotificationCommand = async (input, context) => {
|
|
647
|
-
const b = core.requestBuilder(input, context);
|
|
648
|
-
const headers = {
|
|
649
|
-
"content-type": "application/json",
|
|
650
|
-
};
|
|
651
|
-
b.bp("/v1/subscribers/{subscriberId}/notification");
|
|
652
|
-
b.p("subscriberId", () => input.subscriberId, "{subscriberId}", false);
|
|
653
|
-
let body;
|
|
654
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
655
|
-
configuration: (_) => smithyClient._json(_),
|
|
656
|
-
}));
|
|
657
|
-
b.m("PUT").h(headers).b(body);
|
|
658
|
-
return b.build();
|
|
659
|
-
};
|
|
660
|
-
const de_CreateAwsLogSourceCommand = async (output, context) => {
|
|
661
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
662
|
-
return de_CommandError(output, context);
|
|
663
|
-
}
|
|
664
|
-
const contents = smithyClient.map({
|
|
665
|
-
$metadata: deserializeMetadata(output),
|
|
666
|
-
});
|
|
667
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
668
|
-
const doc = smithyClient.take(data, {
|
|
669
|
-
failed: smithyClient._json,
|
|
670
|
-
});
|
|
671
|
-
Object.assign(contents, doc);
|
|
672
|
-
return contents;
|
|
673
|
-
};
|
|
674
|
-
const de_CreateCustomLogSourceCommand = async (output, context) => {
|
|
675
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
676
|
-
return de_CommandError(output, context);
|
|
677
|
-
}
|
|
678
|
-
const contents = smithyClient.map({
|
|
679
|
-
$metadata: deserializeMetadata(output),
|
|
680
|
-
});
|
|
681
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
682
|
-
const doc = smithyClient.take(data, {
|
|
683
|
-
source: smithyClient._json,
|
|
684
|
-
});
|
|
685
|
-
Object.assign(contents, doc);
|
|
686
|
-
return contents;
|
|
687
|
-
};
|
|
688
|
-
const de_CreateDataLakeCommand = async (output, context) => {
|
|
689
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
690
|
-
return de_CommandError(output, context);
|
|
691
|
-
}
|
|
692
|
-
const contents = smithyClient.map({
|
|
693
|
-
$metadata: deserializeMetadata(output),
|
|
694
|
-
});
|
|
695
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
696
|
-
const doc = smithyClient.take(data, {
|
|
697
|
-
dataLakes: smithyClient._json,
|
|
698
|
-
});
|
|
699
|
-
Object.assign(contents, doc);
|
|
700
|
-
return contents;
|
|
701
|
-
};
|
|
702
|
-
const de_CreateDataLakeExceptionSubscriptionCommand = async (output, context) => {
|
|
703
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
704
|
-
return de_CommandError(output, context);
|
|
705
|
-
}
|
|
706
|
-
const contents = smithyClient.map({
|
|
707
|
-
$metadata: deserializeMetadata(output),
|
|
708
|
-
});
|
|
709
|
-
await smithyClient.collectBody(output.body, context);
|
|
710
|
-
return contents;
|
|
711
|
-
};
|
|
712
|
-
const de_CreateDataLakeOrganizationConfigurationCommand = async (output, context) => {
|
|
713
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
714
|
-
return de_CommandError(output, context);
|
|
715
|
-
}
|
|
716
|
-
const contents = smithyClient.map({
|
|
717
|
-
$metadata: deserializeMetadata(output),
|
|
718
|
-
});
|
|
719
|
-
await smithyClient.collectBody(output.body, context);
|
|
720
|
-
return contents;
|
|
721
|
-
};
|
|
722
|
-
const de_CreateSubscriberCommand = async (output, context) => {
|
|
723
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
724
|
-
return de_CommandError(output, context);
|
|
725
|
-
}
|
|
726
|
-
const contents = smithyClient.map({
|
|
727
|
-
$metadata: deserializeMetadata(output),
|
|
728
|
-
});
|
|
729
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
730
|
-
const doc = smithyClient.take(data, {
|
|
731
|
-
subscriber: (_) => de_SubscriberResource(_),
|
|
732
|
-
});
|
|
733
|
-
Object.assign(contents, doc);
|
|
734
|
-
return contents;
|
|
735
|
-
};
|
|
736
|
-
const de_CreateSubscriberNotificationCommand = async (output, context) => {
|
|
737
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
738
|
-
return de_CommandError(output, context);
|
|
739
|
-
}
|
|
740
|
-
const contents = smithyClient.map({
|
|
741
|
-
$metadata: deserializeMetadata(output),
|
|
742
|
-
});
|
|
743
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
744
|
-
const doc = smithyClient.take(data, {
|
|
745
|
-
subscriberEndpoint: smithyClient.expectString,
|
|
746
|
-
});
|
|
747
|
-
Object.assign(contents, doc);
|
|
748
|
-
return contents;
|
|
749
|
-
};
|
|
750
|
-
const de_DeleteAwsLogSourceCommand = async (output, context) => {
|
|
751
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
752
|
-
return de_CommandError(output, context);
|
|
753
|
-
}
|
|
754
|
-
const contents = smithyClient.map({
|
|
755
|
-
$metadata: deserializeMetadata(output),
|
|
756
|
-
});
|
|
757
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
758
|
-
const doc = smithyClient.take(data, {
|
|
759
|
-
failed: smithyClient._json,
|
|
760
|
-
});
|
|
761
|
-
Object.assign(contents, doc);
|
|
762
|
-
return contents;
|
|
763
|
-
};
|
|
764
|
-
const de_DeleteCustomLogSourceCommand = async (output, context) => {
|
|
765
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
766
|
-
return de_CommandError(output, context);
|
|
767
|
-
}
|
|
768
|
-
const contents = smithyClient.map({
|
|
769
|
-
$metadata: deserializeMetadata(output),
|
|
770
|
-
});
|
|
771
|
-
await smithyClient.collectBody(output.body, context);
|
|
772
|
-
return contents;
|
|
773
|
-
};
|
|
774
|
-
const de_DeleteDataLakeCommand = async (output, context) => {
|
|
775
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
776
|
-
return de_CommandError(output, context);
|
|
777
|
-
}
|
|
778
|
-
const contents = smithyClient.map({
|
|
779
|
-
$metadata: deserializeMetadata(output),
|
|
780
|
-
});
|
|
781
|
-
await smithyClient.collectBody(output.body, context);
|
|
782
|
-
return contents;
|
|
783
|
-
};
|
|
784
|
-
const de_DeleteDataLakeExceptionSubscriptionCommand = async (output, context) => {
|
|
785
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
786
|
-
return de_CommandError(output, context);
|
|
787
|
-
}
|
|
788
|
-
const contents = smithyClient.map({
|
|
789
|
-
$metadata: deserializeMetadata(output),
|
|
790
|
-
});
|
|
791
|
-
await smithyClient.collectBody(output.body, context);
|
|
792
|
-
return contents;
|
|
793
|
-
};
|
|
794
|
-
const de_DeleteDataLakeOrganizationConfigurationCommand = async (output, context) => {
|
|
795
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
796
|
-
return de_CommandError(output, context);
|
|
797
|
-
}
|
|
798
|
-
const contents = smithyClient.map({
|
|
799
|
-
$metadata: deserializeMetadata(output),
|
|
800
|
-
});
|
|
801
|
-
await smithyClient.collectBody(output.body, context);
|
|
802
|
-
return contents;
|
|
803
|
-
};
|
|
804
|
-
const de_DeleteSubscriberCommand = async (output, context) => {
|
|
805
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
806
|
-
return de_CommandError(output, context);
|
|
807
|
-
}
|
|
808
|
-
const contents = smithyClient.map({
|
|
809
|
-
$metadata: deserializeMetadata(output),
|
|
810
|
-
});
|
|
811
|
-
await smithyClient.collectBody(output.body, context);
|
|
812
|
-
return contents;
|
|
813
|
-
};
|
|
814
|
-
const de_DeleteSubscriberNotificationCommand = async (output, context) => {
|
|
815
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
816
|
-
return de_CommandError(output, context);
|
|
817
|
-
}
|
|
818
|
-
const contents = smithyClient.map({
|
|
819
|
-
$metadata: deserializeMetadata(output),
|
|
820
|
-
});
|
|
821
|
-
await smithyClient.collectBody(output.body, context);
|
|
822
|
-
return contents;
|
|
823
|
-
};
|
|
824
|
-
const de_DeregisterDataLakeDelegatedAdministratorCommand = async (output, context) => {
|
|
825
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
826
|
-
return de_CommandError(output, context);
|
|
827
|
-
}
|
|
828
|
-
const contents = smithyClient.map({
|
|
829
|
-
$metadata: deserializeMetadata(output),
|
|
830
|
-
});
|
|
831
|
-
await smithyClient.collectBody(output.body, context);
|
|
832
|
-
return contents;
|
|
833
|
-
};
|
|
834
|
-
const de_GetDataLakeExceptionSubscriptionCommand = async (output, context) => {
|
|
835
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
836
|
-
return de_CommandError(output, context);
|
|
837
|
-
}
|
|
838
|
-
const contents = smithyClient.map({
|
|
839
|
-
$metadata: deserializeMetadata(output),
|
|
840
|
-
});
|
|
841
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
842
|
-
const doc = smithyClient.take(data, {
|
|
843
|
-
exceptionTimeToLive: smithyClient.expectLong,
|
|
844
|
-
notificationEndpoint: smithyClient.expectString,
|
|
845
|
-
subscriptionProtocol: smithyClient.expectString,
|
|
846
|
-
});
|
|
847
|
-
Object.assign(contents, doc);
|
|
848
|
-
return contents;
|
|
849
|
-
};
|
|
850
|
-
const de_GetDataLakeOrganizationConfigurationCommand = async (output, context) => {
|
|
851
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
852
|
-
return de_CommandError(output, context);
|
|
853
|
-
}
|
|
854
|
-
const contents = smithyClient.map({
|
|
855
|
-
$metadata: deserializeMetadata(output),
|
|
856
|
-
});
|
|
857
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
858
|
-
const doc = smithyClient.take(data, {
|
|
859
|
-
autoEnableNewAccount: smithyClient._json,
|
|
860
|
-
});
|
|
861
|
-
Object.assign(contents, doc);
|
|
862
|
-
return contents;
|
|
863
|
-
};
|
|
864
|
-
const de_GetDataLakeSourcesCommand = async (output, context) => {
|
|
865
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
866
|
-
return de_CommandError(output, context);
|
|
867
|
-
}
|
|
868
|
-
const contents = smithyClient.map({
|
|
869
|
-
$metadata: deserializeMetadata(output),
|
|
870
|
-
});
|
|
871
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
872
|
-
const doc = smithyClient.take(data, {
|
|
873
|
-
dataLakeArn: smithyClient.expectString,
|
|
874
|
-
dataLakeSources: smithyClient._json,
|
|
875
|
-
nextToken: smithyClient.expectString,
|
|
876
|
-
});
|
|
877
|
-
Object.assign(contents, doc);
|
|
878
|
-
return contents;
|
|
879
|
-
};
|
|
880
|
-
const de_GetSubscriberCommand = async (output, context) => {
|
|
881
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
882
|
-
return de_CommandError(output, context);
|
|
883
|
-
}
|
|
884
|
-
const contents = smithyClient.map({
|
|
885
|
-
$metadata: deserializeMetadata(output),
|
|
886
|
-
});
|
|
887
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
888
|
-
const doc = smithyClient.take(data, {
|
|
889
|
-
subscriber: (_) => de_SubscriberResource(_),
|
|
890
|
-
});
|
|
891
|
-
Object.assign(contents, doc);
|
|
892
|
-
return contents;
|
|
893
|
-
};
|
|
894
|
-
const de_ListDataLakeExceptionsCommand = async (output, context) => {
|
|
895
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
896
|
-
return de_CommandError(output, context);
|
|
897
|
-
}
|
|
898
|
-
const contents = smithyClient.map({
|
|
899
|
-
$metadata: deserializeMetadata(output),
|
|
900
|
-
});
|
|
901
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
902
|
-
const doc = smithyClient.take(data, {
|
|
903
|
-
exceptions: (_) => de_DataLakeExceptionList(_),
|
|
904
|
-
nextToken: smithyClient.expectString,
|
|
905
|
-
});
|
|
906
|
-
Object.assign(contents, doc);
|
|
907
|
-
return contents;
|
|
908
|
-
};
|
|
909
|
-
const de_ListDataLakesCommand = async (output, context) => {
|
|
910
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
911
|
-
return de_CommandError(output, context);
|
|
912
|
-
}
|
|
913
|
-
const contents = smithyClient.map({
|
|
914
|
-
$metadata: deserializeMetadata(output),
|
|
915
|
-
});
|
|
916
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
917
|
-
const doc = smithyClient.take(data, {
|
|
918
|
-
dataLakes: smithyClient._json,
|
|
919
|
-
});
|
|
920
|
-
Object.assign(contents, doc);
|
|
921
|
-
return contents;
|
|
922
|
-
};
|
|
923
|
-
const de_ListLogSourcesCommand = async (output, context) => {
|
|
924
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
925
|
-
return de_CommandError(output, context);
|
|
926
|
-
}
|
|
927
|
-
const contents = smithyClient.map({
|
|
928
|
-
$metadata: deserializeMetadata(output),
|
|
929
|
-
});
|
|
930
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
931
|
-
const doc = smithyClient.take(data, {
|
|
932
|
-
nextToken: smithyClient.expectString,
|
|
933
|
-
sources: smithyClient._json,
|
|
934
|
-
});
|
|
935
|
-
Object.assign(contents, doc);
|
|
936
|
-
return contents;
|
|
937
|
-
};
|
|
938
|
-
const de_ListSubscribersCommand = async (output, context) => {
|
|
939
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
940
|
-
return de_CommandError(output, context);
|
|
941
|
-
}
|
|
942
|
-
const contents = smithyClient.map({
|
|
943
|
-
$metadata: deserializeMetadata(output),
|
|
944
|
-
});
|
|
945
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
946
|
-
const doc = smithyClient.take(data, {
|
|
947
|
-
nextToken: smithyClient.expectString,
|
|
948
|
-
subscribers: (_) => de_SubscriberResourceList(_),
|
|
949
|
-
});
|
|
950
|
-
Object.assign(contents, doc);
|
|
951
|
-
return contents;
|
|
952
|
-
};
|
|
953
|
-
const de_ListTagsForResourceCommand = async (output, context) => {
|
|
954
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
955
|
-
return de_CommandError(output, context);
|
|
956
|
-
}
|
|
957
|
-
const contents = smithyClient.map({
|
|
958
|
-
$metadata: deserializeMetadata(output),
|
|
959
|
-
});
|
|
960
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
961
|
-
const doc = smithyClient.take(data, {
|
|
962
|
-
tags: smithyClient._json,
|
|
963
|
-
});
|
|
964
|
-
Object.assign(contents, doc);
|
|
965
|
-
return contents;
|
|
966
|
-
};
|
|
967
|
-
const de_RegisterDataLakeDelegatedAdministratorCommand = async (output, context) => {
|
|
968
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
969
|
-
return de_CommandError(output, context);
|
|
970
|
-
}
|
|
971
|
-
const contents = smithyClient.map({
|
|
972
|
-
$metadata: deserializeMetadata(output),
|
|
973
|
-
});
|
|
974
|
-
await smithyClient.collectBody(output.body, context);
|
|
975
|
-
return contents;
|
|
976
|
-
};
|
|
977
|
-
const de_TagResourceCommand = async (output, context) => {
|
|
978
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
979
|
-
return de_CommandError(output, context);
|
|
980
|
-
}
|
|
981
|
-
const contents = smithyClient.map({
|
|
982
|
-
$metadata: deserializeMetadata(output),
|
|
983
|
-
});
|
|
984
|
-
await smithyClient.collectBody(output.body, context);
|
|
985
|
-
return contents;
|
|
986
|
-
};
|
|
987
|
-
const de_UntagResourceCommand = async (output, context) => {
|
|
988
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
989
|
-
return de_CommandError(output, context);
|
|
990
|
-
}
|
|
991
|
-
const contents = smithyClient.map({
|
|
992
|
-
$metadata: deserializeMetadata(output),
|
|
993
|
-
});
|
|
994
|
-
await smithyClient.collectBody(output.body, context);
|
|
995
|
-
return contents;
|
|
996
|
-
};
|
|
997
|
-
const de_UpdateDataLakeCommand = async (output, context) => {
|
|
998
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
999
|
-
return de_CommandError(output, context);
|
|
1000
|
-
}
|
|
1001
|
-
const contents = smithyClient.map({
|
|
1002
|
-
$metadata: deserializeMetadata(output),
|
|
1003
|
-
});
|
|
1004
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1005
|
-
const doc = smithyClient.take(data, {
|
|
1006
|
-
dataLakes: smithyClient._json,
|
|
1007
|
-
});
|
|
1008
|
-
Object.assign(contents, doc);
|
|
1009
|
-
return contents;
|
|
1010
|
-
};
|
|
1011
|
-
const de_UpdateDataLakeExceptionSubscriptionCommand = async (output, context) => {
|
|
1012
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1013
|
-
return de_CommandError(output, context);
|
|
1014
|
-
}
|
|
1015
|
-
const contents = smithyClient.map({
|
|
1016
|
-
$metadata: deserializeMetadata(output),
|
|
1017
|
-
});
|
|
1018
|
-
await smithyClient.collectBody(output.body, context);
|
|
1019
|
-
return contents;
|
|
1020
|
-
};
|
|
1021
|
-
const de_UpdateSubscriberCommand = async (output, context) => {
|
|
1022
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1023
|
-
return de_CommandError(output, context);
|
|
1024
|
-
}
|
|
1025
|
-
const contents = smithyClient.map({
|
|
1026
|
-
$metadata: deserializeMetadata(output),
|
|
1027
|
-
});
|
|
1028
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1029
|
-
const doc = smithyClient.take(data, {
|
|
1030
|
-
subscriber: (_) => de_SubscriberResource(_),
|
|
1031
|
-
});
|
|
1032
|
-
Object.assign(contents, doc);
|
|
1033
|
-
return contents;
|
|
1034
|
-
};
|
|
1035
|
-
const de_UpdateSubscriberNotificationCommand = async (output, context) => {
|
|
1036
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1037
|
-
return de_CommandError(output, context);
|
|
1038
|
-
}
|
|
1039
|
-
const contents = smithyClient.map({
|
|
1040
|
-
$metadata: deserializeMetadata(output),
|
|
1041
|
-
});
|
|
1042
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1043
|
-
const doc = smithyClient.take(data, {
|
|
1044
|
-
subscriberEndpoint: smithyClient.expectString,
|
|
1045
|
-
});
|
|
1046
|
-
Object.assign(contents, doc);
|
|
1047
|
-
return contents;
|
|
1048
|
-
};
|
|
1049
|
-
const de_CommandError = async (output, context) => {
|
|
1050
|
-
const parsedOutput = {
|
|
1051
|
-
...output,
|
|
1052
|
-
body: await core$1.parseJsonErrorBody(output.body, context),
|
|
1053
|
-
};
|
|
1054
|
-
const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1055
|
-
switch (errorCode) {
|
|
1056
|
-
case "AccessDeniedException":
|
|
1057
|
-
case "com.amazonaws.securitylake#AccessDeniedException":
|
|
1058
|
-
throw await de_AccessDeniedExceptionRes(parsedOutput);
|
|
1059
|
-
case "BadRequestException":
|
|
1060
|
-
case "com.amazonaws.securitylake#BadRequestException":
|
|
1061
|
-
throw await de_BadRequestExceptionRes(parsedOutput);
|
|
1062
|
-
case "ConflictException":
|
|
1063
|
-
case "com.amazonaws.securitylake#ConflictException":
|
|
1064
|
-
throw await de_ConflictExceptionRes(parsedOutput);
|
|
1065
|
-
case "InternalServerException":
|
|
1066
|
-
case "com.amazonaws.securitylake#InternalServerException":
|
|
1067
|
-
throw await de_InternalServerExceptionRes(parsedOutput);
|
|
1068
|
-
case "ResourceNotFoundException":
|
|
1069
|
-
case "com.amazonaws.securitylake#ResourceNotFoundException":
|
|
1070
|
-
throw await de_ResourceNotFoundExceptionRes(parsedOutput);
|
|
1071
|
-
case "ThrottlingException":
|
|
1072
|
-
case "com.amazonaws.securitylake#ThrottlingException":
|
|
1073
|
-
throw await de_ThrottlingExceptionRes(parsedOutput);
|
|
1074
|
-
default:
|
|
1075
|
-
const parsedBody = parsedOutput.body;
|
|
1076
|
-
return throwDefaultError({
|
|
1077
|
-
output,
|
|
1078
|
-
parsedBody,
|
|
1079
|
-
errorCode,
|
|
1080
|
-
});
|
|
1081
|
-
}
|
|
1082
|
-
};
|
|
1083
|
-
const throwDefaultError = smithyClient.withBaseException(SecurityLakeServiceException);
|
|
1084
|
-
const de_AccessDeniedExceptionRes = async (parsedOutput, context) => {
|
|
1085
|
-
const contents = smithyClient.map({});
|
|
1086
|
-
const data = parsedOutput.body;
|
|
1087
|
-
const doc = smithyClient.take(data, {
|
|
1088
|
-
errorCode: smithyClient.expectString,
|
|
1089
|
-
message: smithyClient.expectString,
|
|
1090
|
-
});
|
|
1091
|
-
Object.assign(contents, doc);
|
|
1092
|
-
const exception = new AccessDeniedException({
|
|
1093
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1094
|
-
...contents,
|
|
1095
|
-
});
|
|
1096
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1097
|
-
};
|
|
1098
|
-
const de_BadRequestExceptionRes = async (parsedOutput, context) => {
|
|
1099
|
-
const contents = smithyClient.map({});
|
|
1100
|
-
const data = parsedOutput.body;
|
|
1101
|
-
const doc = smithyClient.take(data, {
|
|
1102
|
-
message: smithyClient.expectString,
|
|
1103
|
-
});
|
|
1104
|
-
Object.assign(contents, doc);
|
|
1105
|
-
const exception = new BadRequestException({
|
|
1106
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1107
|
-
...contents,
|
|
1108
|
-
});
|
|
1109
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1110
|
-
};
|
|
1111
|
-
const de_ConflictExceptionRes = async (parsedOutput, context) => {
|
|
1112
|
-
const contents = smithyClient.map({});
|
|
1113
|
-
const data = parsedOutput.body;
|
|
1114
|
-
const doc = smithyClient.take(data, {
|
|
1115
|
-
message: smithyClient.expectString,
|
|
1116
|
-
resourceName: smithyClient.expectString,
|
|
1117
|
-
resourceType: smithyClient.expectString,
|
|
1118
|
-
});
|
|
1119
|
-
Object.assign(contents, doc);
|
|
1120
|
-
const exception = new ConflictException({
|
|
1121
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1122
|
-
...contents,
|
|
1123
|
-
});
|
|
1124
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1125
|
-
};
|
|
1126
|
-
const de_InternalServerExceptionRes = async (parsedOutput, context) => {
|
|
1127
|
-
const contents = smithyClient.map({});
|
|
1128
|
-
const data = parsedOutput.body;
|
|
1129
|
-
const doc = smithyClient.take(data, {
|
|
1130
|
-
message: smithyClient.expectString,
|
|
1131
|
-
});
|
|
1132
|
-
Object.assign(contents, doc);
|
|
1133
|
-
const exception = new InternalServerException({
|
|
1134
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1135
|
-
...contents,
|
|
1136
|
-
});
|
|
1137
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1138
|
-
};
|
|
1139
|
-
const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
|
|
1140
|
-
const contents = smithyClient.map({});
|
|
1141
|
-
const data = parsedOutput.body;
|
|
1142
|
-
const doc = smithyClient.take(data, {
|
|
1143
|
-
message: smithyClient.expectString,
|
|
1144
|
-
resourceName: smithyClient.expectString,
|
|
1145
|
-
resourceType: smithyClient.expectString,
|
|
1146
|
-
});
|
|
1147
|
-
Object.assign(contents, doc);
|
|
1148
|
-
const exception = new ResourceNotFoundException({
|
|
1149
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1150
|
-
...contents,
|
|
1151
|
-
});
|
|
1152
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1153
|
-
};
|
|
1154
|
-
const de_ThrottlingExceptionRes = async (parsedOutput, context) => {
|
|
1155
|
-
const contents = smithyClient.map({
|
|
1156
|
-
[_rAS]: [() => void 0 !== parsedOutput.headers[_ra], () => smithyClient.strictParseInt32(parsedOutput.headers[_ra])],
|
|
1157
|
-
});
|
|
1158
|
-
const data = parsedOutput.body;
|
|
1159
|
-
const doc = smithyClient.take(data, {
|
|
1160
|
-
message: smithyClient.expectString,
|
|
1161
|
-
quotaCode: smithyClient.expectString,
|
|
1162
|
-
serviceCode: smithyClient.expectString,
|
|
1163
|
-
});
|
|
1164
|
-
Object.assign(contents, doc);
|
|
1165
|
-
const exception = new ThrottlingException({
|
|
1166
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1167
|
-
...contents,
|
|
1168
|
-
});
|
|
1169
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1170
|
-
};
|
|
1171
|
-
const de_DataLakeException = (output, context) => {
|
|
1172
|
-
return smithyClient.take(output, {
|
|
1173
|
-
exception: smithyClient.expectString,
|
|
1174
|
-
region: smithyClient.expectString,
|
|
1175
|
-
remediation: smithyClient.expectString,
|
|
1176
|
-
timestamp: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1177
|
-
});
|
|
1178
|
-
};
|
|
1179
|
-
const de_DataLakeExceptionList = (output, context) => {
|
|
1180
|
-
const retVal = (output || [])
|
|
1181
|
-
.filter((e) => e != null)
|
|
1182
|
-
.map((entry) => {
|
|
1183
|
-
return de_DataLakeException(entry);
|
|
1184
|
-
});
|
|
1185
|
-
return retVal;
|
|
1186
|
-
};
|
|
1187
|
-
const de_SubscriberResource = (output, context) => {
|
|
1188
|
-
return smithyClient.take(output, {
|
|
1189
|
-
accessTypes: smithyClient._json,
|
|
1190
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1191
|
-
resourceShareArn: smithyClient.expectString,
|
|
1192
|
-
resourceShareName: smithyClient.expectString,
|
|
1193
|
-
roleArn: smithyClient.expectString,
|
|
1194
|
-
s3BucketArn: smithyClient.expectString,
|
|
1195
|
-
sources: smithyClient._json,
|
|
1196
|
-
subscriberArn: smithyClient.expectString,
|
|
1197
|
-
subscriberDescription: smithyClient.expectString,
|
|
1198
|
-
subscriberEndpoint: smithyClient.expectString,
|
|
1199
|
-
subscriberId: smithyClient.expectString,
|
|
1200
|
-
subscriberIdentity: smithyClient._json,
|
|
1201
|
-
subscriberName: smithyClient.expectString,
|
|
1202
|
-
subscriberStatus: smithyClient.expectString,
|
|
1203
|
-
updatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1204
|
-
});
|
|
1205
|
-
};
|
|
1206
|
-
const de_SubscriberResourceList = (output, context) => {
|
|
1207
|
-
const retVal = (output || [])
|
|
1208
|
-
.filter((e) => e != null)
|
|
1209
|
-
.map((entry) => {
|
|
1210
|
-
return de_SubscriberResource(entry);
|
|
1211
|
-
});
|
|
1212
|
-
return retVal;
|
|
1213
|
-
};
|
|
1214
|
-
const deserializeMetadata = (output) => ({
|
|
1215
|
-
httpStatusCode: output.statusCode,
|
|
1216
|
-
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
1217
|
-
extendedRequestId: output.headers["x-amz-id-2"],
|
|
1218
|
-
cfId: output.headers["x-amz-cf-id"],
|
|
1219
|
-
});
|
|
268
|
+
const _ADE = "AccessDeniedException";
|
|
269
|
+
const _AI = "AwsIdentity";
|
|
270
|
+
const _ALSC = "AwsLogSourceConfiguration";
|
|
271
|
+
const _ALSCL = "AwsLogSourceConfigurationList";
|
|
272
|
+
const _ALSR = "AwsLogSourceResource";
|
|
273
|
+
const _ALSRL = "AwsLogSourceResourceList";
|
|
274
|
+
const _BRE = "BadRequestException";
|
|
275
|
+
const _CALS = "CreateAwsLogSource";
|
|
276
|
+
const _CALSR = "CreateAwsLogSourceRequest";
|
|
277
|
+
const _CALSRr = "CreateAwsLogSourceResponse";
|
|
278
|
+
const _CCLS = "CreateCustomLogSource";
|
|
279
|
+
const _CCLSR = "CreateCustomLogSourceRequest";
|
|
280
|
+
const _CCLSRr = "CreateCustomLogSourceResponse";
|
|
281
|
+
const _CDL = "CreateDataLake";
|
|
282
|
+
const _CDLES = "CreateDataLakeExceptionSubscription";
|
|
283
|
+
const _CDLESR = "CreateDataLakeExceptionSubscriptionRequest";
|
|
284
|
+
const _CDLESRr = "CreateDataLakeExceptionSubscriptionResponse";
|
|
285
|
+
const _CDLOC = "CreateDataLakeOrganizationConfiguration";
|
|
286
|
+
const _CDLOCR = "CreateDataLakeOrganizationConfigurationRequest";
|
|
287
|
+
const _CDLOCRr = "CreateDataLakeOrganizationConfigurationResponse";
|
|
288
|
+
const _CDLR = "CreateDataLakeRequest";
|
|
289
|
+
const _CDLRr = "CreateDataLakeResponse";
|
|
290
|
+
const _CE = "ConflictException";
|
|
291
|
+
const _CLSA = "CustomLogSourceAttributes";
|
|
292
|
+
const _CLSC = "CustomLogSourceConfiguration";
|
|
293
|
+
const _CLSCC = "CustomLogSourceCrawlerConfiguration";
|
|
294
|
+
const _CLSP = "CustomLogSourceProvider";
|
|
295
|
+
const _CLSR = "CustomLogSourceResource";
|
|
296
|
+
const _CS = "CreateSubscriber";
|
|
297
|
+
const _CSN = "CreateSubscriberNotification";
|
|
298
|
+
const _CSNR = "CreateSubscriberNotificationRequest";
|
|
299
|
+
const _CSNRr = "CreateSubscriberNotificationResponse";
|
|
300
|
+
const _CSR = "CreateSubscriberRequest";
|
|
301
|
+
const _CSRr = "CreateSubscriberResponse";
|
|
302
|
+
const _DALS = "DeleteAwsLogSource";
|
|
303
|
+
const _DALSR = "DeleteAwsLogSourceRequest";
|
|
304
|
+
const _DALSRe = "DeleteAwsLogSourceResponse";
|
|
305
|
+
const _DCLS = "DeleteCustomLogSource";
|
|
306
|
+
const _DCLSR = "DeleteCustomLogSourceRequest";
|
|
307
|
+
const _DCLSRe = "DeleteCustomLogSourceResponse";
|
|
308
|
+
const _DDL = "DeleteDataLake";
|
|
309
|
+
const _DDLDA = "DeregisterDataLakeDelegatedAdministrator";
|
|
310
|
+
const _DDLDAR = "DeregisterDataLakeDelegatedAdministratorRequest";
|
|
311
|
+
const _DDLDARe = "DeregisterDataLakeDelegatedAdministratorResponse";
|
|
312
|
+
const _DDLES = "DeleteDataLakeExceptionSubscription";
|
|
313
|
+
const _DDLESR = "DeleteDataLakeExceptionSubscriptionRequest";
|
|
314
|
+
const _DDLESRe = "DeleteDataLakeExceptionSubscriptionResponse";
|
|
315
|
+
const _DDLOC = "DeleteDataLakeOrganizationConfiguration";
|
|
316
|
+
const _DDLOCR = "DeleteDataLakeOrganizationConfigurationRequest";
|
|
317
|
+
const _DDLOCRe = "DeleteDataLakeOrganizationConfigurationResponse";
|
|
318
|
+
const _DDLR = "DeleteDataLakeRequest";
|
|
319
|
+
const _DDLRe = "DeleteDataLakeResponse";
|
|
320
|
+
const _DLAENAC = "DataLakeAutoEnableNewAccountConfiguration";
|
|
321
|
+
const _DLAENACL = "DataLakeAutoEnableNewAccountConfigurationList";
|
|
322
|
+
const _DLC = "DataLakeConfiguration";
|
|
323
|
+
const _DLCL = "DataLakeConfigurationList";
|
|
324
|
+
const _DLE = "DataLakeException";
|
|
325
|
+
const _DLEC = "DataLakeEncryptionConfiguration";
|
|
326
|
+
const _DLEL = "DataLakeExceptionList";
|
|
327
|
+
const _DLLC = "DataLakeLifecycleConfiguration";
|
|
328
|
+
const _DLLE = "DataLakeLifecycleExpiration";
|
|
329
|
+
const _DLLT = "DataLakeLifecycleTransition";
|
|
330
|
+
const _DLLTL = "DataLakeLifecycleTransitionList";
|
|
331
|
+
const _DLR = "DataLakeResource";
|
|
332
|
+
const _DLRC = "DataLakeReplicationConfiguration";
|
|
333
|
+
const _DLRL = "DataLakeResourceList";
|
|
334
|
+
const _DLS = "DataLakeSource";
|
|
335
|
+
const _DLSL = "DataLakeSourceList";
|
|
336
|
+
const _DLSS = "DataLakeSourceStatus";
|
|
337
|
+
const _DLSSL = "DataLakeSourceStatusList";
|
|
338
|
+
const _DLUE = "DataLakeUpdateException";
|
|
339
|
+
const _DLUS = "DataLakeUpdateStatus";
|
|
340
|
+
const _DS = "DeleteSubscriber";
|
|
341
|
+
const _DSN = "DeleteSubscriberNotification";
|
|
342
|
+
const _DSNR = "DeleteSubscriberNotificationRequest";
|
|
343
|
+
const _DSNRe = "DeleteSubscriberNotificationResponse";
|
|
344
|
+
const _DSR = "DeleteSubscriberRequest";
|
|
345
|
+
const _DSRe = "DeleteSubscriberResponse";
|
|
346
|
+
const _GDLES = "GetDataLakeExceptionSubscription";
|
|
347
|
+
const _GDLESR = "GetDataLakeExceptionSubscriptionRequest";
|
|
348
|
+
const _GDLESRe = "GetDataLakeExceptionSubscriptionResponse";
|
|
349
|
+
const _GDLOC = "GetDataLakeOrganizationConfiguration";
|
|
350
|
+
const _GDLOCR = "GetDataLakeOrganizationConfigurationRequest";
|
|
351
|
+
const _GDLOCRe = "GetDataLakeOrganizationConfigurationResponse";
|
|
352
|
+
const _GDLS = "GetDataLakeSources";
|
|
353
|
+
const _GDLSR = "GetDataLakeSourcesRequest";
|
|
354
|
+
const _GDLSRe = "GetDataLakeSourcesResponse";
|
|
355
|
+
const _GS = "GetSubscriber";
|
|
356
|
+
const _GSR = "GetSubscriberRequest";
|
|
357
|
+
const _GSRe = "GetSubscriberResponse";
|
|
358
|
+
const _HNC = "HttpsNotificationConfiguration";
|
|
359
|
+
const _ISE = "InternalServerException";
|
|
360
|
+
const _LDL = "ListDataLakes";
|
|
361
|
+
const _LDLE = "ListDataLakeExceptions";
|
|
362
|
+
const _LDLER = "ListDataLakeExceptionsRequest";
|
|
363
|
+
const _LDLERi = "ListDataLakeExceptionsResponse";
|
|
364
|
+
const _LDLR = "ListDataLakesRequest";
|
|
365
|
+
const _LDLRi = "ListDataLakesResponse";
|
|
366
|
+
const _LLS = "ListLogSources";
|
|
367
|
+
const _LLSR = "ListLogSourcesRequest";
|
|
368
|
+
const _LLSRi = "ListLogSourcesResponse";
|
|
369
|
+
const _LS = "LogSource";
|
|
370
|
+
const _LSL = "LogSourceList";
|
|
371
|
+
const _LSR = "ListSubscribersRequest";
|
|
372
|
+
const _LSRL = "LogSourceResourceList";
|
|
373
|
+
const _LSRi = "ListSubscribersResponse";
|
|
374
|
+
const _LSRo = "LogSourceResource";
|
|
375
|
+
const _LSi = "ListSubscribers";
|
|
376
|
+
const _LTFR = "ListTagsForResource";
|
|
377
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
378
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
379
|
+
const _NC = "NotificationConfiguration";
|
|
380
|
+
const _RA = "Retry-After";
|
|
381
|
+
const _RDLDA = "RegisterDataLakeDelegatedAdministrator";
|
|
382
|
+
const _RDLDAR = "RegisterDataLakeDelegatedAdministratorRequest";
|
|
383
|
+
const _RDLDARe = "RegisterDataLakeDelegatedAdministratorResponse";
|
|
384
|
+
const _RNFE = "ResourceNotFoundException";
|
|
385
|
+
const _SNC = "SqsNotificationConfiguration";
|
|
386
|
+
const _SR = "SubscriberResource";
|
|
387
|
+
const _SRL = "SubscriberResourceList";
|
|
388
|
+
const _T = "Tag";
|
|
389
|
+
const _TE = "ThrottlingException";
|
|
390
|
+
const _TL = "TagList";
|
|
391
|
+
const _TR = "TagResource";
|
|
392
|
+
const _TRR = "TagResourceRequest";
|
|
393
|
+
const _TRRa = "TagResourceResponse";
|
|
394
|
+
const _UDL = "UpdateDataLake";
|
|
395
|
+
const _UDLES = "UpdateDataLakeExceptionSubscription";
|
|
396
|
+
const _UDLESR = "UpdateDataLakeExceptionSubscriptionRequest";
|
|
397
|
+
const _UDLESRp = "UpdateDataLakeExceptionSubscriptionResponse";
|
|
398
|
+
const _UDLR = "UpdateDataLakeRequest";
|
|
399
|
+
const _UDLRp = "UpdateDataLakeResponse";
|
|
400
|
+
const _UR = "UntagResource";
|
|
401
|
+
const _URR = "UntagResourceRequest";
|
|
402
|
+
const _URRn = "UntagResourceResponse";
|
|
403
|
+
const _US = "UpdateSubscriber";
|
|
404
|
+
const _USN = "UpdateSubscriberNotification";
|
|
405
|
+
const _USNR = "UpdateSubscriberNotificationRequest";
|
|
406
|
+
const _USNRp = "UpdateSubscriberNotificationResponse";
|
|
407
|
+
const _USR = "UpdateSubscriberRequest";
|
|
408
|
+
const _USRp = "UpdateSubscriberResponse";
|
|
409
|
+
const _a = "accounts";
|
|
410
|
+
const _aAKN = "authorizationApiKeyName";
|
|
411
|
+
const _aAKV = "authorizationApiKeyValue";
|
|
412
|
+
const _aENA = "autoEnableNewAccount";
|
|
413
|
+
const _aI = "accountId";
|
|
414
|
+
const _aLS = "awsLogSource";
|
|
415
|
+
const _aT = "accessTypes";
|
|
416
|
+
const _ac = "account";
|
|
417
|
+
const _at = "attributes";
|
|
418
|
+
const _c = "client";
|
|
419
|
+
const _cA = "crawlerArn";
|
|
420
|
+
const _cAr = "createdAt";
|
|
421
|
+
const _cC = "crawlerConfiguration";
|
|
422
|
+
const _cLS = "customLogSource";
|
|
423
|
+
const _cS = "createStatus";
|
|
424
|
+
const _co = "configuration";
|
|
425
|
+
const _cod = "code";
|
|
426
|
+
const _con = "configurations";
|
|
427
|
+
const _d = "days";
|
|
428
|
+
const _dA = "databaseArn";
|
|
429
|
+
const _dL = "dataLakes";
|
|
430
|
+
const _dLA = "dataLakeArn";
|
|
431
|
+
const _dLS = "dataLakeSources";
|
|
432
|
+
const _e = "error";
|
|
433
|
+
const _eC = "errorCode";
|
|
434
|
+
const _eCn = "encryptionConfiguration";
|
|
435
|
+
const _eCv = "eventClasses";
|
|
436
|
+
const _eI = "externalId";
|
|
437
|
+
const _eTTL = "exceptionTimeToLive";
|
|
438
|
+
const _en = "endpoint";
|
|
439
|
+
const _ex = "exception";
|
|
440
|
+
const _exc = "exceptions";
|
|
441
|
+
const _exp = "expiration";
|
|
442
|
+
const _f = "failed";
|
|
443
|
+
const _h = "http";
|
|
444
|
+
const _hE = "httpError";
|
|
445
|
+
const _hH = "httpHeader";
|
|
446
|
+
const _hM = "httpMethod";
|
|
447
|
+
const _hNC = "httpsNotificationConfiguration";
|
|
448
|
+
const _hQ = "httpQuery";
|
|
449
|
+
const _k = "key";
|
|
450
|
+
const _kKI = "kmsKeyId";
|
|
451
|
+
const _l = "location";
|
|
452
|
+
const _lC = "lifecycleConfiguration";
|
|
453
|
+
const _m = "message";
|
|
1220
454
|
const _mR = "maxResults";
|
|
455
|
+
const _mSMRA = "metaStoreManagerRoleArn";
|
|
456
|
+
const _nE = "notificationEndpoint";
|
|
1221
457
|
const _nT = "nextToken";
|
|
458
|
+
const _p = "principal";
|
|
459
|
+
const _pI = "providerIdentity";
|
|
460
|
+
const _pr = "provider";
|
|
461
|
+
const _qC = "quotaCode";
|
|
1222
462
|
const _r = "regions";
|
|
463
|
+
const _rA = "roleArn";
|
|
1223
464
|
const _rAS = "retryAfterSeconds";
|
|
1224
|
-
const
|
|
465
|
+
const _rAe = "resourceArn";
|
|
466
|
+
const _rC = "replicationConfiguration";
|
|
467
|
+
const _rI = "requestId";
|
|
468
|
+
const _rN = "resourceName";
|
|
469
|
+
const _rSA = "resourceShareArn";
|
|
470
|
+
const _rSN = "resourceShareName";
|
|
471
|
+
const _rT = "resourceType";
|
|
472
|
+
const _re = "region";
|
|
473
|
+
const _rea = "reason";
|
|
474
|
+
const _rem = "remediation";
|
|
475
|
+
const _res = "resource";
|
|
476
|
+
const _s = "sources";
|
|
477
|
+
const _sA = "subscriberArn";
|
|
478
|
+
const _sBA = "s3BucketArn";
|
|
479
|
+
const _sC = "storageClass";
|
|
480
|
+
const _sCe = "serviceCode";
|
|
481
|
+
const _sD = "subscriberDescription";
|
|
482
|
+
const _sE = "subscriberEndpoint";
|
|
483
|
+
const _sI = "subscriberId";
|
|
484
|
+
const _sIu = "subscriberIdentity";
|
|
485
|
+
const _sN = "sourceName";
|
|
486
|
+
const _sNC = "sqsNotificationConfiguration";
|
|
487
|
+
const _sNu = "subscriberName";
|
|
488
|
+
const _sP = "subscriptionProtocol";
|
|
489
|
+
const _sS = "sourceStatuses";
|
|
490
|
+
const _sSu = "subscriberStatus";
|
|
1225
491
|
const _sV = "sourceVersion";
|
|
492
|
+
const _se = "server";
|
|
493
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.securitylake";
|
|
494
|
+
const _so = "source";
|
|
495
|
+
const _st = "status";
|
|
496
|
+
const _su = "subscriber";
|
|
497
|
+
const _sub = "subscribers";
|
|
498
|
+
const _t = "tags";
|
|
499
|
+
const _tA = "tableArn";
|
|
1226
500
|
const _tK = "tagKeys";
|
|
501
|
+
const _tRA = "targetRoleArn";
|
|
502
|
+
const _ti = "timestamp";
|
|
503
|
+
const _tr = "transitions";
|
|
504
|
+
const _uA = "updatedAt";
|
|
505
|
+
const _uS = "updateStatus";
|
|
506
|
+
const _v = "value";
|
|
507
|
+
const n0 = "com.amazonaws.securitylake";
|
|
508
|
+
var AccessDeniedException = [
|
|
509
|
+
-3,
|
|
510
|
+
n0,
|
|
511
|
+
_ADE,
|
|
512
|
+
{
|
|
513
|
+
[_e]: _c,
|
|
514
|
+
[_hE]: 403,
|
|
515
|
+
},
|
|
516
|
+
[_m, _eC],
|
|
517
|
+
[0, 0],
|
|
518
|
+
];
|
|
519
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
|
|
520
|
+
var AwsIdentity = [3, n0, _AI, 0, [_p, _eI], [0, 0]];
|
|
521
|
+
var AwsLogSourceConfiguration = [
|
|
522
|
+
3,
|
|
523
|
+
n0,
|
|
524
|
+
_ALSC,
|
|
525
|
+
0,
|
|
526
|
+
[_a, _r, _sN, _sV],
|
|
527
|
+
[64 | 0, 64 | 0, 0, 0],
|
|
528
|
+
];
|
|
529
|
+
var AwsLogSourceResource = [3, n0, _ALSR, 0, [_sN, _sV], [0, 0]];
|
|
530
|
+
var BadRequestException = [
|
|
531
|
+
-3,
|
|
532
|
+
n0,
|
|
533
|
+
_BRE,
|
|
534
|
+
{
|
|
535
|
+
[_e]: _c,
|
|
536
|
+
[_hE]: 400,
|
|
537
|
+
},
|
|
538
|
+
[_m],
|
|
539
|
+
[0],
|
|
540
|
+
];
|
|
541
|
+
schema.TypeRegistry.for(n0).registerError(BadRequestException, BadRequestException$1);
|
|
542
|
+
var ConflictException = [
|
|
543
|
+
-3,
|
|
544
|
+
n0,
|
|
545
|
+
_CE,
|
|
546
|
+
{
|
|
547
|
+
[_e]: _c,
|
|
548
|
+
[_hE]: 409,
|
|
549
|
+
},
|
|
550
|
+
[_m, _rN, _rT],
|
|
551
|
+
[0, 0, 0],
|
|
552
|
+
];
|
|
553
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
|
|
554
|
+
var CreateAwsLogSourceRequest = [
|
|
555
|
+
3,
|
|
556
|
+
n0,
|
|
557
|
+
_CALSR,
|
|
558
|
+
0,
|
|
559
|
+
[_s],
|
|
560
|
+
[() => AwsLogSourceConfigurationList],
|
|
561
|
+
];
|
|
562
|
+
var CreateAwsLogSourceResponse = [3, n0, _CALSRr, 0, [_f], [64 | 0]];
|
|
563
|
+
var CreateCustomLogSourceRequest = [
|
|
564
|
+
3,
|
|
565
|
+
n0,
|
|
566
|
+
_CCLSR,
|
|
567
|
+
0,
|
|
568
|
+
[_sN, _sV, _eCv, _co],
|
|
569
|
+
[0, 0, 64 | 0, () => CustomLogSourceConfiguration],
|
|
570
|
+
];
|
|
571
|
+
var CreateCustomLogSourceResponse = [
|
|
572
|
+
3,
|
|
573
|
+
n0,
|
|
574
|
+
_CCLSRr,
|
|
575
|
+
0,
|
|
576
|
+
[_so],
|
|
577
|
+
[() => CustomLogSourceResource],
|
|
578
|
+
];
|
|
579
|
+
var CreateDataLakeExceptionSubscriptionRequest = [
|
|
580
|
+
3,
|
|
581
|
+
n0,
|
|
582
|
+
_CDLESR,
|
|
583
|
+
0,
|
|
584
|
+
[_sP, _nE, _eTTL],
|
|
585
|
+
[0, 0, 1],
|
|
586
|
+
];
|
|
587
|
+
var CreateDataLakeExceptionSubscriptionResponse = [3, n0, _CDLESRr, 0, [], []];
|
|
588
|
+
var CreateDataLakeOrganizationConfigurationRequest = [
|
|
589
|
+
3,
|
|
590
|
+
n0,
|
|
591
|
+
_CDLOCR,
|
|
592
|
+
0,
|
|
593
|
+
[_aENA],
|
|
594
|
+
[() => DataLakeAutoEnableNewAccountConfigurationList],
|
|
595
|
+
];
|
|
596
|
+
var CreateDataLakeOrganizationConfigurationResponse = [3, n0, _CDLOCRr, 0, [], []];
|
|
597
|
+
var CreateDataLakeRequest = [
|
|
598
|
+
3,
|
|
599
|
+
n0,
|
|
600
|
+
_CDLR,
|
|
601
|
+
0,
|
|
602
|
+
[_con, _mSMRA, _t],
|
|
603
|
+
[() => DataLakeConfigurationList, 0, () => TagList],
|
|
604
|
+
];
|
|
605
|
+
var CreateDataLakeResponse = [3, n0, _CDLRr, 0, [_dL], [() => DataLakeResourceList]];
|
|
606
|
+
var CreateSubscriberNotificationRequest = [
|
|
607
|
+
3,
|
|
608
|
+
n0,
|
|
609
|
+
_CSNR,
|
|
610
|
+
0,
|
|
611
|
+
[_sI, _co],
|
|
612
|
+
[[0, 1], () => NotificationConfiguration],
|
|
613
|
+
];
|
|
614
|
+
var CreateSubscriberNotificationResponse = [3, n0, _CSNRr, 0, [_sE], [0]];
|
|
615
|
+
var CreateSubscriberRequest = [
|
|
616
|
+
3,
|
|
617
|
+
n0,
|
|
618
|
+
_CSR,
|
|
619
|
+
0,
|
|
620
|
+
[_sIu, _sNu, _sD, _s, _aT, _t],
|
|
621
|
+
[() => AwsIdentity, 0, 0, () => LogSourceResourceList, 64 | 0, () => TagList],
|
|
622
|
+
];
|
|
623
|
+
var CreateSubscriberResponse = [3, n0, _CSRr, 0, [_su], [() => SubscriberResource]];
|
|
624
|
+
var CustomLogSourceAttributes = [3, n0, _CLSA, 0, [_cA, _dA, _tA], [0, 0, 0]];
|
|
625
|
+
var CustomLogSourceConfiguration = [
|
|
626
|
+
3,
|
|
627
|
+
n0,
|
|
628
|
+
_CLSC,
|
|
629
|
+
0,
|
|
630
|
+
[_cC, _pI],
|
|
631
|
+
[() => CustomLogSourceCrawlerConfiguration, () => AwsIdentity],
|
|
632
|
+
];
|
|
633
|
+
var CustomLogSourceCrawlerConfiguration = [3, n0, _CLSCC, 0, [_rA], [0]];
|
|
634
|
+
var CustomLogSourceProvider = [3, n0, _CLSP, 0, [_rA, _l], [0, 0]];
|
|
635
|
+
var CustomLogSourceResource = [
|
|
636
|
+
3,
|
|
637
|
+
n0,
|
|
638
|
+
_CLSR,
|
|
639
|
+
0,
|
|
640
|
+
[_sN, _sV, _pr, _at],
|
|
641
|
+
[0, 0, () => CustomLogSourceProvider, () => CustomLogSourceAttributes],
|
|
642
|
+
];
|
|
643
|
+
var DataLakeAutoEnableNewAccountConfiguration = [
|
|
644
|
+
3,
|
|
645
|
+
n0,
|
|
646
|
+
_DLAENAC,
|
|
647
|
+
0,
|
|
648
|
+
[_re, _s],
|
|
649
|
+
[0, () => AwsLogSourceResourceList],
|
|
650
|
+
];
|
|
651
|
+
var DataLakeConfiguration = [
|
|
652
|
+
3,
|
|
653
|
+
n0,
|
|
654
|
+
_DLC,
|
|
655
|
+
0,
|
|
656
|
+
[_re, _eCn, _lC, _rC],
|
|
657
|
+
[
|
|
658
|
+
0,
|
|
659
|
+
() => DataLakeEncryptionConfiguration,
|
|
660
|
+
() => DataLakeLifecycleConfiguration,
|
|
661
|
+
() => DataLakeReplicationConfiguration,
|
|
662
|
+
],
|
|
663
|
+
];
|
|
664
|
+
var DataLakeEncryptionConfiguration = [3, n0, _DLEC, 0, [_kKI], [0]];
|
|
665
|
+
var DataLakeException = [3, n0, _DLE, 0, [_re, _ex, _rem, _ti], [0, 0, 0, 5]];
|
|
666
|
+
var DataLakeLifecycleConfiguration = [
|
|
667
|
+
3,
|
|
668
|
+
n0,
|
|
669
|
+
_DLLC,
|
|
670
|
+
0,
|
|
671
|
+
[_exp, _tr],
|
|
672
|
+
[() => DataLakeLifecycleExpiration, () => DataLakeLifecycleTransitionList],
|
|
673
|
+
];
|
|
674
|
+
var DataLakeLifecycleExpiration = [3, n0, _DLLE, 0, [_d], [1]];
|
|
675
|
+
var DataLakeLifecycleTransition = [3, n0, _DLLT, 0, [_sC, _d], [0, 1]];
|
|
676
|
+
var DataLakeReplicationConfiguration = [3, n0, _DLRC, 0, [_r, _rA], [64 | 0, 0]];
|
|
677
|
+
var DataLakeResource = [
|
|
678
|
+
3,
|
|
679
|
+
n0,
|
|
680
|
+
_DLR,
|
|
681
|
+
0,
|
|
682
|
+
[_dLA, _re, _sBA, _eCn, _lC, _rC, _cS, _uS],
|
|
683
|
+
[
|
|
684
|
+
0,
|
|
685
|
+
0,
|
|
686
|
+
0,
|
|
687
|
+
() => DataLakeEncryptionConfiguration,
|
|
688
|
+
() => DataLakeLifecycleConfiguration,
|
|
689
|
+
() => DataLakeReplicationConfiguration,
|
|
690
|
+
0,
|
|
691
|
+
() => DataLakeUpdateStatus,
|
|
692
|
+
],
|
|
693
|
+
];
|
|
694
|
+
var DataLakeSource = [
|
|
695
|
+
3,
|
|
696
|
+
n0,
|
|
697
|
+
_DLS,
|
|
698
|
+
0,
|
|
699
|
+
[_ac, _sN, _eCv, _sS],
|
|
700
|
+
[0, 0, 64 | 0, () => DataLakeSourceStatusList],
|
|
701
|
+
];
|
|
702
|
+
var DataLakeSourceStatus = [3, n0, _DLSS, 0, [_res, _st], [0, 0]];
|
|
703
|
+
var DataLakeUpdateException = [3, n0, _DLUE, 0, [_rea, _cod], [0, 0]];
|
|
704
|
+
var DataLakeUpdateStatus = [
|
|
705
|
+
3,
|
|
706
|
+
n0,
|
|
707
|
+
_DLUS,
|
|
708
|
+
0,
|
|
709
|
+
[_rI, _st, _ex],
|
|
710
|
+
[0, 0, () => DataLakeUpdateException],
|
|
711
|
+
];
|
|
712
|
+
var DeleteAwsLogSourceRequest = [
|
|
713
|
+
3,
|
|
714
|
+
n0,
|
|
715
|
+
_DALSR,
|
|
716
|
+
0,
|
|
717
|
+
[_s],
|
|
718
|
+
[() => AwsLogSourceConfigurationList],
|
|
719
|
+
];
|
|
720
|
+
var DeleteAwsLogSourceResponse = [3, n0, _DALSRe, 0, [_f], [64 | 0]];
|
|
721
|
+
var DeleteCustomLogSourceRequest = [
|
|
722
|
+
3,
|
|
723
|
+
n0,
|
|
724
|
+
_DCLSR,
|
|
725
|
+
0,
|
|
726
|
+
[_sN, _sV],
|
|
727
|
+
[
|
|
728
|
+
[0, 1],
|
|
729
|
+
[
|
|
730
|
+
0,
|
|
731
|
+
{
|
|
732
|
+
[_hQ]: _sV,
|
|
733
|
+
},
|
|
734
|
+
],
|
|
735
|
+
],
|
|
736
|
+
];
|
|
737
|
+
var DeleteCustomLogSourceResponse = [3, n0, _DCLSRe, 0, [], []];
|
|
738
|
+
var DeleteDataLakeExceptionSubscriptionRequest = [3, n0, _DDLESR, 0, [], []];
|
|
739
|
+
var DeleteDataLakeExceptionSubscriptionResponse = [3, n0, _DDLESRe, 0, [], []];
|
|
740
|
+
var DeleteDataLakeOrganizationConfigurationRequest = [
|
|
741
|
+
3,
|
|
742
|
+
n0,
|
|
743
|
+
_DDLOCR,
|
|
744
|
+
0,
|
|
745
|
+
[_aENA],
|
|
746
|
+
[() => DataLakeAutoEnableNewAccountConfigurationList],
|
|
747
|
+
];
|
|
748
|
+
var DeleteDataLakeOrganizationConfigurationResponse = [3, n0, _DDLOCRe, 0, [], []];
|
|
749
|
+
var DeleteDataLakeRequest = [3, n0, _DDLR, 0, [_r], [64 | 0]];
|
|
750
|
+
var DeleteDataLakeResponse = [3, n0, _DDLRe, 0, [], []];
|
|
751
|
+
var DeleteSubscriberNotificationRequest = [3, n0, _DSNR, 0, [_sI], [[0, 1]]];
|
|
752
|
+
var DeleteSubscriberNotificationResponse = [3, n0, _DSNRe, 0, [], []];
|
|
753
|
+
var DeleteSubscriberRequest = [3, n0, _DSR, 0, [_sI], [[0, 1]]];
|
|
754
|
+
var DeleteSubscriberResponse = [3, n0, _DSRe, 0, [], []];
|
|
755
|
+
var DeregisterDataLakeDelegatedAdministratorRequest = [3, n0, _DDLDAR, 0, [], []];
|
|
756
|
+
var DeregisterDataLakeDelegatedAdministratorResponse = [3, n0, _DDLDARe, 0, [], []];
|
|
757
|
+
var GetDataLakeExceptionSubscriptionRequest = [3, n0, _GDLESR, 0, [], []];
|
|
758
|
+
var GetDataLakeExceptionSubscriptionResponse = [
|
|
759
|
+
3,
|
|
760
|
+
n0,
|
|
761
|
+
_GDLESRe,
|
|
762
|
+
0,
|
|
763
|
+
[_sP, _nE, _eTTL],
|
|
764
|
+
[0, 0, 1],
|
|
765
|
+
];
|
|
766
|
+
var GetDataLakeOrganizationConfigurationRequest = [3, n0, _GDLOCR, 0, [], []];
|
|
767
|
+
var GetDataLakeOrganizationConfigurationResponse = [
|
|
768
|
+
3,
|
|
769
|
+
n0,
|
|
770
|
+
_GDLOCRe,
|
|
771
|
+
0,
|
|
772
|
+
[_aENA],
|
|
773
|
+
[() => DataLakeAutoEnableNewAccountConfigurationList],
|
|
774
|
+
];
|
|
775
|
+
var GetDataLakeSourcesRequest = [3, n0, _GDLSR, 0, [_a, _mR, _nT], [64 | 0, 1, 0]];
|
|
776
|
+
var GetDataLakeSourcesResponse = [
|
|
777
|
+
3,
|
|
778
|
+
n0,
|
|
779
|
+
_GDLSRe,
|
|
780
|
+
0,
|
|
781
|
+
[_dLA, _dLS, _nT],
|
|
782
|
+
[0, () => DataLakeSourceList, 0],
|
|
783
|
+
];
|
|
784
|
+
var GetSubscriberRequest = [3, n0, _GSR, 0, [_sI], [[0, 1]]];
|
|
785
|
+
var GetSubscriberResponse = [3, n0, _GSRe, 0, [_su], [() => SubscriberResource]];
|
|
786
|
+
var HttpsNotificationConfiguration = [
|
|
787
|
+
3,
|
|
788
|
+
n0,
|
|
789
|
+
_HNC,
|
|
790
|
+
0,
|
|
791
|
+
[_en, _aAKN, _aAKV, _hM, _tRA],
|
|
792
|
+
[0, 0, 0, 0, 0],
|
|
793
|
+
];
|
|
794
|
+
var InternalServerException = [
|
|
795
|
+
-3,
|
|
796
|
+
n0,
|
|
797
|
+
_ISE,
|
|
798
|
+
{
|
|
799
|
+
[_e]: _se,
|
|
800
|
+
[_hE]: 500,
|
|
801
|
+
},
|
|
802
|
+
[_m],
|
|
803
|
+
[0],
|
|
804
|
+
];
|
|
805
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
|
|
806
|
+
var ListDataLakeExceptionsRequest = [3, n0, _LDLER, 0, [_r, _mR, _nT], [64 | 0, 1, 0]];
|
|
807
|
+
var ListDataLakeExceptionsResponse = [
|
|
808
|
+
3,
|
|
809
|
+
n0,
|
|
810
|
+
_LDLERi,
|
|
811
|
+
0,
|
|
812
|
+
[_exc, _nT],
|
|
813
|
+
[() => DataLakeExceptionList, 0],
|
|
814
|
+
];
|
|
815
|
+
var ListDataLakesRequest = [
|
|
816
|
+
3,
|
|
817
|
+
n0,
|
|
818
|
+
_LDLR,
|
|
819
|
+
0,
|
|
820
|
+
[_r],
|
|
821
|
+
[
|
|
822
|
+
[
|
|
823
|
+
64 | 0,
|
|
824
|
+
{
|
|
825
|
+
[_hQ]: _r,
|
|
826
|
+
},
|
|
827
|
+
],
|
|
828
|
+
],
|
|
829
|
+
];
|
|
830
|
+
var ListDataLakesResponse = [3, n0, _LDLRi, 0, [_dL], [() => DataLakeResourceList]];
|
|
831
|
+
var ListLogSourcesRequest = [
|
|
832
|
+
3,
|
|
833
|
+
n0,
|
|
834
|
+
_LLSR,
|
|
835
|
+
0,
|
|
836
|
+
[_a, _r, _s, _mR, _nT],
|
|
837
|
+
[64 | 0, 64 | 0, () => LogSourceResourceList, 1, 0],
|
|
838
|
+
];
|
|
839
|
+
var ListLogSourcesResponse = [3, n0, _LLSRi, 0, [_s, _nT], [() => LogSourceList, 0]];
|
|
840
|
+
var ListSubscribersRequest = [
|
|
841
|
+
3,
|
|
842
|
+
n0,
|
|
843
|
+
_LSR,
|
|
844
|
+
0,
|
|
845
|
+
[_nT, _mR],
|
|
846
|
+
[
|
|
847
|
+
[
|
|
848
|
+
0,
|
|
849
|
+
{
|
|
850
|
+
[_hQ]: _nT,
|
|
851
|
+
},
|
|
852
|
+
],
|
|
853
|
+
[
|
|
854
|
+
1,
|
|
855
|
+
{
|
|
856
|
+
[_hQ]: _mR,
|
|
857
|
+
},
|
|
858
|
+
],
|
|
859
|
+
],
|
|
860
|
+
];
|
|
861
|
+
var ListSubscribersResponse = [
|
|
862
|
+
3,
|
|
863
|
+
n0,
|
|
864
|
+
_LSRi,
|
|
865
|
+
0,
|
|
866
|
+
[_sub, _nT],
|
|
867
|
+
[() => SubscriberResourceList, 0],
|
|
868
|
+
];
|
|
869
|
+
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rAe], [[0, 1]]];
|
|
870
|
+
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_t], [() => TagList]];
|
|
871
|
+
var LogSource = [3, n0, _LS, 0, [_ac, _re, _s], [0, 0, () => LogSourceResourceList]];
|
|
872
|
+
var RegisterDataLakeDelegatedAdministratorRequest = [3, n0, _RDLDAR, 0, [_aI], [0]];
|
|
873
|
+
var RegisterDataLakeDelegatedAdministratorResponse = [3, n0, _RDLDARe, 0, [], []];
|
|
874
|
+
var ResourceNotFoundException = [
|
|
875
|
+
-3,
|
|
876
|
+
n0,
|
|
877
|
+
_RNFE,
|
|
878
|
+
{
|
|
879
|
+
[_e]: _c,
|
|
880
|
+
[_hE]: 404,
|
|
881
|
+
},
|
|
882
|
+
[_m, _rN, _rT],
|
|
883
|
+
[0, 0, 0],
|
|
884
|
+
];
|
|
885
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
|
|
886
|
+
var SqsNotificationConfiguration = [3, n0, _SNC, 0, [], []];
|
|
887
|
+
var SubscriberResource = [
|
|
888
|
+
3,
|
|
889
|
+
n0,
|
|
890
|
+
_SR,
|
|
891
|
+
0,
|
|
892
|
+
[_sI, _sA, _sIu, _sNu, _sD, _s, _aT, _rA, _sBA, _sE, _sSu, _rSA, _rSN, _cAr, _uA],
|
|
893
|
+
[0, 0, () => AwsIdentity, 0, 0, () => LogSourceResourceList, 64 | 0, 0, 0, 0, 0, 0, 0, 5, 5],
|
|
894
|
+
];
|
|
895
|
+
var Tag = [3, n0, _T, 0, [_k, _v], [0, 0]];
|
|
896
|
+
var TagResourceRequest = [3, n0, _TRR, 0, [_rAe, _t], [[0, 1], () => TagList]];
|
|
897
|
+
var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
898
|
+
var ThrottlingException = [
|
|
899
|
+
-3,
|
|
900
|
+
n0,
|
|
901
|
+
_TE,
|
|
902
|
+
{
|
|
903
|
+
[_e]: _c,
|
|
904
|
+
[_hE]: 429,
|
|
905
|
+
},
|
|
906
|
+
[_m, _sCe, _qC, _rAS],
|
|
907
|
+
[
|
|
908
|
+
0,
|
|
909
|
+
0,
|
|
910
|
+
0,
|
|
911
|
+
[
|
|
912
|
+
1,
|
|
913
|
+
{
|
|
914
|
+
[_hH]: _RA,
|
|
915
|
+
},
|
|
916
|
+
],
|
|
917
|
+
],
|
|
918
|
+
];
|
|
919
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
|
|
920
|
+
var UntagResourceRequest = [
|
|
921
|
+
3,
|
|
922
|
+
n0,
|
|
923
|
+
_URR,
|
|
924
|
+
0,
|
|
925
|
+
[_rAe, _tK],
|
|
926
|
+
[
|
|
927
|
+
[0, 1],
|
|
928
|
+
[
|
|
929
|
+
64 | 0,
|
|
930
|
+
{
|
|
931
|
+
[_hQ]: _tK,
|
|
932
|
+
},
|
|
933
|
+
],
|
|
934
|
+
],
|
|
935
|
+
];
|
|
936
|
+
var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
937
|
+
var UpdateDataLakeExceptionSubscriptionRequest = [
|
|
938
|
+
3,
|
|
939
|
+
n0,
|
|
940
|
+
_UDLESR,
|
|
941
|
+
0,
|
|
942
|
+
[_sP, _nE, _eTTL],
|
|
943
|
+
[0, 0, 1],
|
|
944
|
+
];
|
|
945
|
+
var UpdateDataLakeExceptionSubscriptionResponse = [3, n0, _UDLESRp, 0, [], []];
|
|
946
|
+
var UpdateDataLakeRequest = [
|
|
947
|
+
3,
|
|
948
|
+
n0,
|
|
949
|
+
_UDLR,
|
|
950
|
+
0,
|
|
951
|
+
[_con, _mSMRA],
|
|
952
|
+
[() => DataLakeConfigurationList, 0],
|
|
953
|
+
];
|
|
954
|
+
var UpdateDataLakeResponse = [3, n0, _UDLRp, 0, [_dL], [() => DataLakeResourceList]];
|
|
955
|
+
var UpdateSubscriberNotificationRequest = [
|
|
956
|
+
3,
|
|
957
|
+
n0,
|
|
958
|
+
_USNR,
|
|
959
|
+
0,
|
|
960
|
+
[_sI, _co],
|
|
961
|
+
[[0, 1], () => NotificationConfiguration],
|
|
962
|
+
];
|
|
963
|
+
var UpdateSubscriberNotificationResponse = [3, n0, _USNRp, 0, [_sE], [0]];
|
|
964
|
+
var UpdateSubscriberRequest = [
|
|
965
|
+
3,
|
|
966
|
+
n0,
|
|
967
|
+
_USR,
|
|
968
|
+
0,
|
|
969
|
+
[_sI, _sIu, _sNu, _sD, _s],
|
|
970
|
+
[[0, 1], () => AwsIdentity, 0, 0, () => LogSourceResourceList],
|
|
971
|
+
];
|
|
972
|
+
var UpdateSubscriberResponse = [3, n0, _USRp, 0, [_su], [() => SubscriberResource]];
|
|
973
|
+
var SecurityLakeServiceException = [-3, _sm, "SecurityLakeServiceException", 0, [], []];
|
|
974
|
+
schema.TypeRegistry.for(_sm).registerError(SecurityLakeServiceException, SecurityLakeServiceException$1);
|
|
975
|
+
var AwsLogSourceConfigurationList = [1, n0, _ALSCL, 0, () => AwsLogSourceConfiguration];
|
|
976
|
+
var AwsLogSourceResourceList = [1, n0, _ALSRL, 0, () => AwsLogSourceResource];
|
|
977
|
+
var DataLakeAutoEnableNewAccountConfigurationList = [
|
|
978
|
+
1,
|
|
979
|
+
n0,
|
|
980
|
+
_DLAENACL,
|
|
981
|
+
0,
|
|
982
|
+
() => DataLakeAutoEnableNewAccountConfiguration,
|
|
983
|
+
];
|
|
984
|
+
var DataLakeConfigurationList = [1, n0, _DLCL, 0, () => DataLakeConfiguration];
|
|
985
|
+
var DataLakeExceptionList = [1, n0, _DLEL, 0, () => DataLakeException];
|
|
986
|
+
var DataLakeLifecycleTransitionList = [1, n0, _DLLTL, 0, () => DataLakeLifecycleTransition];
|
|
987
|
+
var DataLakeResourceList = [1, n0, _DLRL, 0, () => DataLakeResource];
|
|
988
|
+
var DataLakeSourceList = [1, n0, _DLSL, 0, () => DataLakeSource];
|
|
989
|
+
var DataLakeSourceStatusList = [1, n0, _DLSSL, 0, () => DataLakeSourceStatus];
|
|
990
|
+
var LogSourceList = [1, n0, _LSL, 0, () => LogSource];
|
|
991
|
+
var LogSourceResourceList = [1, n0, _LSRL, 0, () => LogSourceResource];
|
|
992
|
+
var SubscriberResourceList = [1, n0, _SRL, 0, () => SubscriberResource];
|
|
993
|
+
var TagList = [1, n0, _TL, 0, () => Tag];
|
|
994
|
+
var LogSourceResource = [
|
|
995
|
+
3,
|
|
996
|
+
n0,
|
|
997
|
+
_LSRo,
|
|
998
|
+
0,
|
|
999
|
+
[_aLS, _cLS],
|
|
1000
|
+
[() => AwsLogSourceResource, () => CustomLogSourceResource],
|
|
1001
|
+
];
|
|
1002
|
+
var NotificationConfiguration = [
|
|
1003
|
+
3,
|
|
1004
|
+
n0,
|
|
1005
|
+
_NC,
|
|
1006
|
+
0,
|
|
1007
|
+
[_sNC, _hNC],
|
|
1008
|
+
[() => SqsNotificationConfiguration, () => HttpsNotificationConfiguration],
|
|
1009
|
+
];
|
|
1010
|
+
var CreateAwsLogSource = [
|
|
1011
|
+
9,
|
|
1012
|
+
n0,
|
|
1013
|
+
_CALS,
|
|
1014
|
+
{
|
|
1015
|
+
[_h]: ["POST", "/v1/datalake/logsources/aws", 200],
|
|
1016
|
+
},
|
|
1017
|
+
() => CreateAwsLogSourceRequest,
|
|
1018
|
+
() => CreateAwsLogSourceResponse,
|
|
1019
|
+
];
|
|
1020
|
+
var CreateCustomLogSource = [
|
|
1021
|
+
9,
|
|
1022
|
+
n0,
|
|
1023
|
+
_CCLS,
|
|
1024
|
+
{
|
|
1025
|
+
[_h]: ["POST", "/v1/datalake/logsources/custom", 200],
|
|
1026
|
+
},
|
|
1027
|
+
() => CreateCustomLogSourceRequest,
|
|
1028
|
+
() => CreateCustomLogSourceResponse,
|
|
1029
|
+
];
|
|
1030
|
+
var CreateDataLake = [
|
|
1031
|
+
9,
|
|
1032
|
+
n0,
|
|
1033
|
+
_CDL,
|
|
1034
|
+
{
|
|
1035
|
+
[_h]: ["POST", "/v1/datalake", 200],
|
|
1036
|
+
},
|
|
1037
|
+
() => CreateDataLakeRequest,
|
|
1038
|
+
() => CreateDataLakeResponse,
|
|
1039
|
+
];
|
|
1040
|
+
var CreateDataLakeExceptionSubscription = [
|
|
1041
|
+
9,
|
|
1042
|
+
n0,
|
|
1043
|
+
_CDLES,
|
|
1044
|
+
{
|
|
1045
|
+
[_h]: ["POST", "/v1/datalake/exceptions/subscription", 200],
|
|
1046
|
+
},
|
|
1047
|
+
() => CreateDataLakeExceptionSubscriptionRequest,
|
|
1048
|
+
() => CreateDataLakeExceptionSubscriptionResponse,
|
|
1049
|
+
];
|
|
1050
|
+
var CreateDataLakeOrganizationConfiguration = [
|
|
1051
|
+
9,
|
|
1052
|
+
n0,
|
|
1053
|
+
_CDLOC,
|
|
1054
|
+
{
|
|
1055
|
+
[_h]: ["POST", "/v1/datalake/organization/configuration", 200],
|
|
1056
|
+
},
|
|
1057
|
+
() => CreateDataLakeOrganizationConfigurationRequest,
|
|
1058
|
+
() => CreateDataLakeOrganizationConfigurationResponse,
|
|
1059
|
+
];
|
|
1060
|
+
var CreateSubscriber = [
|
|
1061
|
+
9,
|
|
1062
|
+
n0,
|
|
1063
|
+
_CS,
|
|
1064
|
+
{
|
|
1065
|
+
[_h]: ["POST", "/v1/subscribers", 200],
|
|
1066
|
+
},
|
|
1067
|
+
() => CreateSubscriberRequest,
|
|
1068
|
+
() => CreateSubscriberResponse,
|
|
1069
|
+
];
|
|
1070
|
+
var CreateSubscriberNotification = [
|
|
1071
|
+
9,
|
|
1072
|
+
n0,
|
|
1073
|
+
_CSN,
|
|
1074
|
+
{
|
|
1075
|
+
[_h]: ["POST", "/v1/subscribers/{subscriberId}/notification", 200],
|
|
1076
|
+
},
|
|
1077
|
+
() => CreateSubscriberNotificationRequest,
|
|
1078
|
+
() => CreateSubscriberNotificationResponse,
|
|
1079
|
+
];
|
|
1080
|
+
var DeleteAwsLogSource = [
|
|
1081
|
+
9,
|
|
1082
|
+
n0,
|
|
1083
|
+
_DALS,
|
|
1084
|
+
{
|
|
1085
|
+
[_h]: ["POST", "/v1/datalake/logsources/aws/delete", 200],
|
|
1086
|
+
},
|
|
1087
|
+
() => DeleteAwsLogSourceRequest,
|
|
1088
|
+
() => DeleteAwsLogSourceResponse,
|
|
1089
|
+
];
|
|
1090
|
+
var DeleteCustomLogSource = [
|
|
1091
|
+
9,
|
|
1092
|
+
n0,
|
|
1093
|
+
_DCLS,
|
|
1094
|
+
{
|
|
1095
|
+
[_h]: ["DELETE", "/v1/datalake/logsources/custom/{sourceName}", 200],
|
|
1096
|
+
},
|
|
1097
|
+
() => DeleteCustomLogSourceRequest,
|
|
1098
|
+
() => DeleteCustomLogSourceResponse,
|
|
1099
|
+
];
|
|
1100
|
+
var DeleteDataLake = [
|
|
1101
|
+
9,
|
|
1102
|
+
n0,
|
|
1103
|
+
_DDL,
|
|
1104
|
+
{
|
|
1105
|
+
[_h]: ["POST", "/v1/datalake/delete", 200],
|
|
1106
|
+
},
|
|
1107
|
+
() => DeleteDataLakeRequest,
|
|
1108
|
+
() => DeleteDataLakeResponse,
|
|
1109
|
+
];
|
|
1110
|
+
var DeleteDataLakeExceptionSubscription = [
|
|
1111
|
+
9,
|
|
1112
|
+
n0,
|
|
1113
|
+
_DDLES,
|
|
1114
|
+
{
|
|
1115
|
+
[_h]: ["DELETE", "/v1/datalake/exceptions/subscription", 200],
|
|
1116
|
+
},
|
|
1117
|
+
() => DeleteDataLakeExceptionSubscriptionRequest,
|
|
1118
|
+
() => DeleteDataLakeExceptionSubscriptionResponse,
|
|
1119
|
+
];
|
|
1120
|
+
var DeleteDataLakeOrganizationConfiguration = [
|
|
1121
|
+
9,
|
|
1122
|
+
n0,
|
|
1123
|
+
_DDLOC,
|
|
1124
|
+
{
|
|
1125
|
+
[_h]: ["POST", "/v1/datalake/organization/configuration/delete", 200],
|
|
1126
|
+
},
|
|
1127
|
+
() => DeleteDataLakeOrganizationConfigurationRequest,
|
|
1128
|
+
() => DeleteDataLakeOrganizationConfigurationResponse,
|
|
1129
|
+
];
|
|
1130
|
+
var DeleteSubscriber = [
|
|
1131
|
+
9,
|
|
1132
|
+
n0,
|
|
1133
|
+
_DS,
|
|
1134
|
+
{
|
|
1135
|
+
[_h]: ["DELETE", "/v1/subscribers/{subscriberId}", 200],
|
|
1136
|
+
},
|
|
1137
|
+
() => DeleteSubscriberRequest,
|
|
1138
|
+
() => DeleteSubscriberResponse,
|
|
1139
|
+
];
|
|
1140
|
+
var DeleteSubscriberNotification = [
|
|
1141
|
+
9,
|
|
1142
|
+
n0,
|
|
1143
|
+
_DSN,
|
|
1144
|
+
{
|
|
1145
|
+
[_h]: ["DELETE", "/v1/subscribers/{subscriberId}/notification", 200],
|
|
1146
|
+
},
|
|
1147
|
+
() => DeleteSubscriberNotificationRequest,
|
|
1148
|
+
() => DeleteSubscriberNotificationResponse,
|
|
1149
|
+
];
|
|
1150
|
+
var DeregisterDataLakeDelegatedAdministrator = [
|
|
1151
|
+
9,
|
|
1152
|
+
n0,
|
|
1153
|
+
_DDLDA,
|
|
1154
|
+
{
|
|
1155
|
+
[_h]: ["DELETE", "/v1/datalake/delegate", 200],
|
|
1156
|
+
},
|
|
1157
|
+
() => DeregisterDataLakeDelegatedAdministratorRequest,
|
|
1158
|
+
() => DeregisterDataLakeDelegatedAdministratorResponse,
|
|
1159
|
+
];
|
|
1160
|
+
var GetDataLakeExceptionSubscription = [
|
|
1161
|
+
9,
|
|
1162
|
+
n0,
|
|
1163
|
+
_GDLES,
|
|
1164
|
+
{
|
|
1165
|
+
[_h]: ["GET", "/v1/datalake/exceptions/subscription", 200],
|
|
1166
|
+
},
|
|
1167
|
+
() => GetDataLakeExceptionSubscriptionRequest,
|
|
1168
|
+
() => GetDataLakeExceptionSubscriptionResponse,
|
|
1169
|
+
];
|
|
1170
|
+
var GetDataLakeOrganizationConfiguration = [
|
|
1171
|
+
9,
|
|
1172
|
+
n0,
|
|
1173
|
+
_GDLOC,
|
|
1174
|
+
{
|
|
1175
|
+
[_h]: ["GET", "/v1/datalake/organization/configuration", 200],
|
|
1176
|
+
},
|
|
1177
|
+
() => GetDataLakeOrganizationConfigurationRequest,
|
|
1178
|
+
() => GetDataLakeOrganizationConfigurationResponse,
|
|
1179
|
+
];
|
|
1180
|
+
var GetDataLakeSources = [
|
|
1181
|
+
9,
|
|
1182
|
+
n0,
|
|
1183
|
+
_GDLS,
|
|
1184
|
+
{
|
|
1185
|
+
[_h]: ["POST", "/v1/datalake/sources", 200],
|
|
1186
|
+
},
|
|
1187
|
+
() => GetDataLakeSourcesRequest,
|
|
1188
|
+
() => GetDataLakeSourcesResponse,
|
|
1189
|
+
];
|
|
1190
|
+
var GetSubscriber = [
|
|
1191
|
+
9,
|
|
1192
|
+
n0,
|
|
1193
|
+
_GS,
|
|
1194
|
+
{
|
|
1195
|
+
[_h]: ["GET", "/v1/subscribers/{subscriberId}", 200],
|
|
1196
|
+
},
|
|
1197
|
+
() => GetSubscriberRequest,
|
|
1198
|
+
() => GetSubscriberResponse,
|
|
1199
|
+
];
|
|
1200
|
+
var ListDataLakeExceptions = [
|
|
1201
|
+
9,
|
|
1202
|
+
n0,
|
|
1203
|
+
_LDLE,
|
|
1204
|
+
{
|
|
1205
|
+
[_h]: ["POST", "/v1/datalake/exceptions", 200],
|
|
1206
|
+
},
|
|
1207
|
+
() => ListDataLakeExceptionsRequest,
|
|
1208
|
+
() => ListDataLakeExceptionsResponse,
|
|
1209
|
+
];
|
|
1210
|
+
var ListDataLakes = [
|
|
1211
|
+
9,
|
|
1212
|
+
n0,
|
|
1213
|
+
_LDL,
|
|
1214
|
+
{
|
|
1215
|
+
[_h]: ["GET", "/v1/datalakes", 200],
|
|
1216
|
+
},
|
|
1217
|
+
() => ListDataLakesRequest,
|
|
1218
|
+
() => ListDataLakesResponse,
|
|
1219
|
+
];
|
|
1220
|
+
var ListLogSources = [
|
|
1221
|
+
9,
|
|
1222
|
+
n0,
|
|
1223
|
+
_LLS,
|
|
1224
|
+
{
|
|
1225
|
+
[_h]: ["POST", "/v1/datalake/logsources/list", 200],
|
|
1226
|
+
},
|
|
1227
|
+
() => ListLogSourcesRequest,
|
|
1228
|
+
() => ListLogSourcesResponse,
|
|
1229
|
+
];
|
|
1230
|
+
var ListSubscribers = [
|
|
1231
|
+
9,
|
|
1232
|
+
n0,
|
|
1233
|
+
_LSi,
|
|
1234
|
+
{
|
|
1235
|
+
[_h]: ["GET", "/v1/subscribers", 200],
|
|
1236
|
+
},
|
|
1237
|
+
() => ListSubscribersRequest,
|
|
1238
|
+
() => ListSubscribersResponse,
|
|
1239
|
+
];
|
|
1240
|
+
var ListTagsForResource = [
|
|
1241
|
+
9,
|
|
1242
|
+
n0,
|
|
1243
|
+
_LTFR,
|
|
1244
|
+
{
|
|
1245
|
+
[_h]: ["GET", "/v1/tags/{resourceArn}", 200],
|
|
1246
|
+
},
|
|
1247
|
+
() => ListTagsForResourceRequest,
|
|
1248
|
+
() => ListTagsForResourceResponse,
|
|
1249
|
+
];
|
|
1250
|
+
var RegisterDataLakeDelegatedAdministrator = [
|
|
1251
|
+
9,
|
|
1252
|
+
n0,
|
|
1253
|
+
_RDLDA,
|
|
1254
|
+
{
|
|
1255
|
+
[_h]: ["POST", "/v1/datalake/delegate", 200],
|
|
1256
|
+
},
|
|
1257
|
+
() => RegisterDataLakeDelegatedAdministratorRequest,
|
|
1258
|
+
() => RegisterDataLakeDelegatedAdministratorResponse,
|
|
1259
|
+
];
|
|
1260
|
+
var TagResource = [
|
|
1261
|
+
9,
|
|
1262
|
+
n0,
|
|
1263
|
+
_TR,
|
|
1264
|
+
{
|
|
1265
|
+
[_h]: ["POST", "/v1/tags/{resourceArn}", 200],
|
|
1266
|
+
},
|
|
1267
|
+
() => TagResourceRequest,
|
|
1268
|
+
() => TagResourceResponse,
|
|
1269
|
+
];
|
|
1270
|
+
var UntagResource = [
|
|
1271
|
+
9,
|
|
1272
|
+
n0,
|
|
1273
|
+
_UR,
|
|
1274
|
+
{
|
|
1275
|
+
[_h]: ["DELETE", "/v1/tags/{resourceArn}", 200],
|
|
1276
|
+
},
|
|
1277
|
+
() => UntagResourceRequest,
|
|
1278
|
+
() => UntagResourceResponse,
|
|
1279
|
+
];
|
|
1280
|
+
var UpdateDataLake = [
|
|
1281
|
+
9,
|
|
1282
|
+
n0,
|
|
1283
|
+
_UDL,
|
|
1284
|
+
{
|
|
1285
|
+
[_h]: ["PUT", "/v1/datalake", 200],
|
|
1286
|
+
},
|
|
1287
|
+
() => UpdateDataLakeRequest,
|
|
1288
|
+
() => UpdateDataLakeResponse,
|
|
1289
|
+
];
|
|
1290
|
+
var UpdateDataLakeExceptionSubscription = [
|
|
1291
|
+
9,
|
|
1292
|
+
n0,
|
|
1293
|
+
_UDLES,
|
|
1294
|
+
{
|
|
1295
|
+
[_h]: ["PUT", "/v1/datalake/exceptions/subscription", 200],
|
|
1296
|
+
},
|
|
1297
|
+
() => UpdateDataLakeExceptionSubscriptionRequest,
|
|
1298
|
+
() => UpdateDataLakeExceptionSubscriptionResponse,
|
|
1299
|
+
];
|
|
1300
|
+
var UpdateSubscriber = [
|
|
1301
|
+
9,
|
|
1302
|
+
n0,
|
|
1303
|
+
_US,
|
|
1304
|
+
{
|
|
1305
|
+
[_h]: ["PUT", "/v1/subscribers/{subscriberId}", 200],
|
|
1306
|
+
},
|
|
1307
|
+
() => UpdateSubscriberRequest,
|
|
1308
|
+
() => UpdateSubscriberResponse,
|
|
1309
|
+
];
|
|
1310
|
+
var UpdateSubscriberNotification = [
|
|
1311
|
+
9,
|
|
1312
|
+
n0,
|
|
1313
|
+
_USN,
|
|
1314
|
+
{
|
|
1315
|
+
[_h]: ["PUT", "/v1/subscribers/{subscriberId}/notification", 200],
|
|
1316
|
+
},
|
|
1317
|
+
() => UpdateSubscriberNotificationRequest,
|
|
1318
|
+
() => UpdateSubscriberNotificationResponse,
|
|
1319
|
+
];
|
|
1227
1320
|
|
|
1228
1321
|
class CreateAwsLogSourceCommand extends smithyClient.Command
|
|
1229
1322
|
.classBuilder()
|
|
1230
1323
|
.ep(commonParams)
|
|
1231
1324
|
.m(function (Command, cs, config, o) {
|
|
1232
|
-
return [
|
|
1233
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1234
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1235
|
-
];
|
|
1325
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1236
1326
|
})
|
|
1237
1327
|
.s("SecurityLake", "CreateAwsLogSource", {})
|
|
1238
1328
|
.n("SecurityLakeClient", "CreateAwsLogSourceCommand")
|
|
1239
|
-
.
|
|
1240
|
-
.ser(se_CreateAwsLogSourceCommand)
|
|
1241
|
-
.de(de_CreateAwsLogSourceCommand)
|
|
1329
|
+
.sc(CreateAwsLogSource)
|
|
1242
1330
|
.build() {
|
|
1243
1331
|
}
|
|
1244
1332
|
|
|
@@ -1246,16 +1334,11 @@ class CreateCustomLogSourceCommand extends smithyClient.Command
|
|
|
1246
1334
|
.classBuilder()
|
|
1247
1335
|
.ep(commonParams)
|
|
1248
1336
|
.m(function (Command, cs, config, o) {
|
|
1249
|
-
return [
|
|
1250
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1251
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1252
|
-
];
|
|
1337
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1253
1338
|
})
|
|
1254
1339
|
.s("SecurityLake", "CreateCustomLogSource", {})
|
|
1255
1340
|
.n("SecurityLakeClient", "CreateCustomLogSourceCommand")
|
|
1256
|
-
.
|
|
1257
|
-
.ser(se_CreateCustomLogSourceCommand)
|
|
1258
|
-
.de(de_CreateCustomLogSourceCommand)
|
|
1341
|
+
.sc(CreateCustomLogSource)
|
|
1259
1342
|
.build() {
|
|
1260
1343
|
}
|
|
1261
1344
|
|
|
@@ -1263,16 +1346,11 @@ class CreateDataLakeCommand extends smithyClient.Command
|
|
|
1263
1346
|
.classBuilder()
|
|
1264
1347
|
.ep(commonParams)
|
|
1265
1348
|
.m(function (Command, cs, config, o) {
|
|
1266
|
-
return [
|
|
1267
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1268
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1269
|
-
];
|
|
1349
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1270
1350
|
})
|
|
1271
1351
|
.s("SecurityLake", "CreateDataLake", {})
|
|
1272
1352
|
.n("SecurityLakeClient", "CreateDataLakeCommand")
|
|
1273
|
-
.
|
|
1274
|
-
.ser(se_CreateDataLakeCommand)
|
|
1275
|
-
.de(de_CreateDataLakeCommand)
|
|
1353
|
+
.sc(CreateDataLake)
|
|
1276
1354
|
.build() {
|
|
1277
1355
|
}
|
|
1278
1356
|
|
|
@@ -1280,16 +1358,11 @@ class CreateDataLakeExceptionSubscriptionCommand extends smithyClient.Command
|
|
|
1280
1358
|
.classBuilder()
|
|
1281
1359
|
.ep(commonParams)
|
|
1282
1360
|
.m(function (Command, cs, config, o) {
|
|
1283
|
-
return [
|
|
1284
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1285
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1286
|
-
];
|
|
1361
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1287
1362
|
})
|
|
1288
1363
|
.s("SecurityLake", "CreateDataLakeExceptionSubscription", {})
|
|
1289
1364
|
.n("SecurityLakeClient", "CreateDataLakeExceptionSubscriptionCommand")
|
|
1290
|
-
.
|
|
1291
|
-
.ser(se_CreateDataLakeExceptionSubscriptionCommand)
|
|
1292
|
-
.de(de_CreateDataLakeExceptionSubscriptionCommand)
|
|
1365
|
+
.sc(CreateDataLakeExceptionSubscription)
|
|
1293
1366
|
.build() {
|
|
1294
1367
|
}
|
|
1295
1368
|
|
|
@@ -1297,16 +1370,11 @@ class CreateDataLakeOrganizationConfigurationCommand extends smithyClient.Comman
|
|
|
1297
1370
|
.classBuilder()
|
|
1298
1371
|
.ep(commonParams)
|
|
1299
1372
|
.m(function (Command, cs, config, o) {
|
|
1300
|
-
return [
|
|
1301
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1302
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1303
|
-
];
|
|
1373
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1304
1374
|
})
|
|
1305
1375
|
.s("SecurityLake", "CreateDataLakeOrganizationConfiguration", {})
|
|
1306
1376
|
.n("SecurityLakeClient", "CreateDataLakeOrganizationConfigurationCommand")
|
|
1307
|
-
.
|
|
1308
|
-
.ser(se_CreateDataLakeOrganizationConfigurationCommand)
|
|
1309
|
-
.de(de_CreateDataLakeOrganizationConfigurationCommand)
|
|
1377
|
+
.sc(CreateDataLakeOrganizationConfiguration)
|
|
1310
1378
|
.build() {
|
|
1311
1379
|
}
|
|
1312
1380
|
|
|
@@ -1314,16 +1382,11 @@ class CreateSubscriberCommand extends smithyClient.Command
|
|
|
1314
1382
|
.classBuilder()
|
|
1315
1383
|
.ep(commonParams)
|
|
1316
1384
|
.m(function (Command, cs, config, o) {
|
|
1317
|
-
return [
|
|
1318
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1319
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1320
|
-
];
|
|
1385
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1321
1386
|
})
|
|
1322
1387
|
.s("SecurityLake", "CreateSubscriber", {})
|
|
1323
1388
|
.n("SecurityLakeClient", "CreateSubscriberCommand")
|
|
1324
|
-
.
|
|
1325
|
-
.ser(se_CreateSubscriberCommand)
|
|
1326
|
-
.de(de_CreateSubscriberCommand)
|
|
1389
|
+
.sc(CreateSubscriber)
|
|
1327
1390
|
.build() {
|
|
1328
1391
|
}
|
|
1329
1392
|
|
|
@@ -1331,16 +1394,11 @@ class CreateSubscriberNotificationCommand extends smithyClient.Command
|
|
|
1331
1394
|
.classBuilder()
|
|
1332
1395
|
.ep(commonParams)
|
|
1333
1396
|
.m(function (Command, cs, config, o) {
|
|
1334
|
-
return [
|
|
1335
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1336
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1337
|
-
];
|
|
1397
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1338
1398
|
})
|
|
1339
1399
|
.s("SecurityLake", "CreateSubscriberNotification", {})
|
|
1340
1400
|
.n("SecurityLakeClient", "CreateSubscriberNotificationCommand")
|
|
1341
|
-
.
|
|
1342
|
-
.ser(se_CreateSubscriberNotificationCommand)
|
|
1343
|
-
.de(de_CreateSubscriberNotificationCommand)
|
|
1401
|
+
.sc(CreateSubscriberNotification)
|
|
1344
1402
|
.build() {
|
|
1345
1403
|
}
|
|
1346
1404
|
|
|
@@ -1348,16 +1406,11 @@ class DeleteAwsLogSourceCommand extends smithyClient.Command
|
|
|
1348
1406
|
.classBuilder()
|
|
1349
1407
|
.ep(commonParams)
|
|
1350
1408
|
.m(function (Command, cs, config, o) {
|
|
1351
|
-
return [
|
|
1352
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1353
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1354
|
-
];
|
|
1409
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1355
1410
|
})
|
|
1356
1411
|
.s("SecurityLake", "DeleteAwsLogSource", {})
|
|
1357
1412
|
.n("SecurityLakeClient", "DeleteAwsLogSourceCommand")
|
|
1358
|
-
.
|
|
1359
|
-
.ser(se_DeleteAwsLogSourceCommand)
|
|
1360
|
-
.de(de_DeleteAwsLogSourceCommand)
|
|
1413
|
+
.sc(DeleteAwsLogSource)
|
|
1361
1414
|
.build() {
|
|
1362
1415
|
}
|
|
1363
1416
|
|
|
@@ -1365,16 +1418,11 @@ class DeleteCustomLogSourceCommand extends smithyClient.Command
|
|
|
1365
1418
|
.classBuilder()
|
|
1366
1419
|
.ep(commonParams)
|
|
1367
1420
|
.m(function (Command, cs, config, o) {
|
|
1368
|
-
return [
|
|
1369
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1370
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1371
|
-
];
|
|
1421
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1372
1422
|
})
|
|
1373
1423
|
.s("SecurityLake", "DeleteCustomLogSource", {})
|
|
1374
1424
|
.n("SecurityLakeClient", "DeleteCustomLogSourceCommand")
|
|
1375
|
-
.
|
|
1376
|
-
.ser(se_DeleteCustomLogSourceCommand)
|
|
1377
|
-
.de(de_DeleteCustomLogSourceCommand)
|
|
1425
|
+
.sc(DeleteCustomLogSource)
|
|
1378
1426
|
.build() {
|
|
1379
1427
|
}
|
|
1380
1428
|
|
|
@@ -1382,16 +1430,11 @@ class DeleteDataLakeCommand extends smithyClient.Command
|
|
|
1382
1430
|
.classBuilder()
|
|
1383
1431
|
.ep(commonParams)
|
|
1384
1432
|
.m(function (Command, cs, config, o) {
|
|
1385
|
-
return [
|
|
1386
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1387
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1388
|
-
];
|
|
1433
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1389
1434
|
})
|
|
1390
1435
|
.s("SecurityLake", "DeleteDataLake", {})
|
|
1391
1436
|
.n("SecurityLakeClient", "DeleteDataLakeCommand")
|
|
1392
|
-
.
|
|
1393
|
-
.ser(se_DeleteDataLakeCommand)
|
|
1394
|
-
.de(de_DeleteDataLakeCommand)
|
|
1437
|
+
.sc(DeleteDataLake)
|
|
1395
1438
|
.build() {
|
|
1396
1439
|
}
|
|
1397
1440
|
|
|
@@ -1399,16 +1442,11 @@ class DeleteDataLakeExceptionSubscriptionCommand extends smithyClient.Command
|
|
|
1399
1442
|
.classBuilder()
|
|
1400
1443
|
.ep(commonParams)
|
|
1401
1444
|
.m(function (Command, cs, config, o) {
|
|
1402
|
-
return [
|
|
1403
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1404
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1405
|
-
];
|
|
1445
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1406
1446
|
})
|
|
1407
1447
|
.s("SecurityLake", "DeleteDataLakeExceptionSubscription", {})
|
|
1408
1448
|
.n("SecurityLakeClient", "DeleteDataLakeExceptionSubscriptionCommand")
|
|
1409
|
-
.
|
|
1410
|
-
.ser(se_DeleteDataLakeExceptionSubscriptionCommand)
|
|
1411
|
-
.de(de_DeleteDataLakeExceptionSubscriptionCommand)
|
|
1449
|
+
.sc(DeleteDataLakeExceptionSubscription)
|
|
1412
1450
|
.build() {
|
|
1413
1451
|
}
|
|
1414
1452
|
|
|
@@ -1416,16 +1454,11 @@ class DeleteDataLakeOrganizationConfigurationCommand extends smithyClient.Comman
|
|
|
1416
1454
|
.classBuilder()
|
|
1417
1455
|
.ep(commonParams)
|
|
1418
1456
|
.m(function (Command, cs, config, o) {
|
|
1419
|
-
return [
|
|
1420
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1421
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1422
|
-
];
|
|
1457
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1423
1458
|
})
|
|
1424
1459
|
.s("SecurityLake", "DeleteDataLakeOrganizationConfiguration", {})
|
|
1425
1460
|
.n("SecurityLakeClient", "DeleteDataLakeOrganizationConfigurationCommand")
|
|
1426
|
-
.
|
|
1427
|
-
.ser(se_DeleteDataLakeOrganizationConfigurationCommand)
|
|
1428
|
-
.de(de_DeleteDataLakeOrganizationConfigurationCommand)
|
|
1461
|
+
.sc(DeleteDataLakeOrganizationConfiguration)
|
|
1429
1462
|
.build() {
|
|
1430
1463
|
}
|
|
1431
1464
|
|
|
@@ -1433,16 +1466,11 @@ class DeleteSubscriberCommand extends smithyClient.Command
|
|
|
1433
1466
|
.classBuilder()
|
|
1434
1467
|
.ep(commonParams)
|
|
1435
1468
|
.m(function (Command, cs, config, o) {
|
|
1436
|
-
return [
|
|
1437
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1438
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1439
|
-
];
|
|
1469
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1440
1470
|
})
|
|
1441
1471
|
.s("SecurityLake", "DeleteSubscriber", {})
|
|
1442
1472
|
.n("SecurityLakeClient", "DeleteSubscriberCommand")
|
|
1443
|
-
.
|
|
1444
|
-
.ser(se_DeleteSubscriberCommand)
|
|
1445
|
-
.de(de_DeleteSubscriberCommand)
|
|
1473
|
+
.sc(DeleteSubscriber)
|
|
1446
1474
|
.build() {
|
|
1447
1475
|
}
|
|
1448
1476
|
|
|
@@ -1450,16 +1478,11 @@ class DeleteSubscriberNotificationCommand extends smithyClient.Command
|
|
|
1450
1478
|
.classBuilder()
|
|
1451
1479
|
.ep(commonParams)
|
|
1452
1480
|
.m(function (Command, cs, config, o) {
|
|
1453
|
-
return [
|
|
1454
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1455
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1456
|
-
];
|
|
1481
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1457
1482
|
})
|
|
1458
1483
|
.s("SecurityLake", "DeleteSubscriberNotification", {})
|
|
1459
1484
|
.n("SecurityLakeClient", "DeleteSubscriberNotificationCommand")
|
|
1460
|
-
.
|
|
1461
|
-
.ser(se_DeleteSubscriberNotificationCommand)
|
|
1462
|
-
.de(de_DeleteSubscriberNotificationCommand)
|
|
1485
|
+
.sc(DeleteSubscriberNotification)
|
|
1463
1486
|
.build() {
|
|
1464
1487
|
}
|
|
1465
1488
|
|
|
@@ -1467,16 +1490,11 @@ class DeregisterDataLakeDelegatedAdministratorCommand extends smithyClient.Comma
|
|
|
1467
1490
|
.classBuilder()
|
|
1468
1491
|
.ep(commonParams)
|
|
1469
1492
|
.m(function (Command, cs, config, o) {
|
|
1470
|
-
return [
|
|
1471
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1472
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1473
|
-
];
|
|
1493
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1474
1494
|
})
|
|
1475
1495
|
.s("SecurityLake", "DeregisterDataLakeDelegatedAdministrator", {})
|
|
1476
1496
|
.n("SecurityLakeClient", "DeregisterDataLakeDelegatedAdministratorCommand")
|
|
1477
|
-
.
|
|
1478
|
-
.ser(se_DeregisterDataLakeDelegatedAdministratorCommand)
|
|
1479
|
-
.de(de_DeregisterDataLakeDelegatedAdministratorCommand)
|
|
1497
|
+
.sc(DeregisterDataLakeDelegatedAdministrator)
|
|
1480
1498
|
.build() {
|
|
1481
1499
|
}
|
|
1482
1500
|
|
|
@@ -1484,16 +1502,11 @@ class GetDataLakeExceptionSubscriptionCommand extends smithyClient.Command
|
|
|
1484
1502
|
.classBuilder()
|
|
1485
1503
|
.ep(commonParams)
|
|
1486
1504
|
.m(function (Command, cs, config, o) {
|
|
1487
|
-
return [
|
|
1488
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1489
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1490
|
-
];
|
|
1505
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1491
1506
|
})
|
|
1492
1507
|
.s("SecurityLake", "GetDataLakeExceptionSubscription", {})
|
|
1493
1508
|
.n("SecurityLakeClient", "GetDataLakeExceptionSubscriptionCommand")
|
|
1494
|
-
.
|
|
1495
|
-
.ser(se_GetDataLakeExceptionSubscriptionCommand)
|
|
1496
|
-
.de(de_GetDataLakeExceptionSubscriptionCommand)
|
|
1509
|
+
.sc(GetDataLakeExceptionSubscription)
|
|
1497
1510
|
.build() {
|
|
1498
1511
|
}
|
|
1499
1512
|
|
|
@@ -1501,16 +1514,11 @@ class GetDataLakeOrganizationConfigurationCommand extends smithyClient.Command
|
|
|
1501
1514
|
.classBuilder()
|
|
1502
1515
|
.ep(commonParams)
|
|
1503
1516
|
.m(function (Command, cs, config, o) {
|
|
1504
|
-
return [
|
|
1505
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1506
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1507
|
-
];
|
|
1517
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1508
1518
|
})
|
|
1509
1519
|
.s("SecurityLake", "GetDataLakeOrganizationConfiguration", {})
|
|
1510
1520
|
.n("SecurityLakeClient", "GetDataLakeOrganizationConfigurationCommand")
|
|
1511
|
-
.
|
|
1512
|
-
.ser(se_GetDataLakeOrganizationConfigurationCommand)
|
|
1513
|
-
.de(de_GetDataLakeOrganizationConfigurationCommand)
|
|
1521
|
+
.sc(GetDataLakeOrganizationConfiguration)
|
|
1514
1522
|
.build() {
|
|
1515
1523
|
}
|
|
1516
1524
|
|
|
@@ -1518,16 +1526,11 @@ class GetDataLakeSourcesCommand extends smithyClient.Command
|
|
|
1518
1526
|
.classBuilder()
|
|
1519
1527
|
.ep(commonParams)
|
|
1520
1528
|
.m(function (Command, cs, config, o) {
|
|
1521
|
-
return [
|
|
1522
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1523
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1524
|
-
];
|
|
1529
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1525
1530
|
})
|
|
1526
1531
|
.s("SecurityLake", "GetDataLakeSources", {})
|
|
1527
1532
|
.n("SecurityLakeClient", "GetDataLakeSourcesCommand")
|
|
1528
|
-
.
|
|
1529
|
-
.ser(se_GetDataLakeSourcesCommand)
|
|
1530
|
-
.de(de_GetDataLakeSourcesCommand)
|
|
1533
|
+
.sc(GetDataLakeSources)
|
|
1531
1534
|
.build() {
|
|
1532
1535
|
}
|
|
1533
1536
|
|
|
@@ -1535,16 +1538,11 @@ class GetSubscriberCommand extends smithyClient.Command
|
|
|
1535
1538
|
.classBuilder()
|
|
1536
1539
|
.ep(commonParams)
|
|
1537
1540
|
.m(function (Command, cs, config, o) {
|
|
1538
|
-
return [
|
|
1539
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1540
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1541
|
-
];
|
|
1541
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1542
1542
|
})
|
|
1543
1543
|
.s("SecurityLake", "GetSubscriber", {})
|
|
1544
1544
|
.n("SecurityLakeClient", "GetSubscriberCommand")
|
|
1545
|
-
.
|
|
1546
|
-
.ser(se_GetSubscriberCommand)
|
|
1547
|
-
.de(de_GetSubscriberCommand)
|
|
1545
|
+
.sc(GetSubscriber)
|
|
1548
1546
|
.build() {
|
|
1549
1547
|
}
|
|
1550
1548
|
|
|
@@ -1552,16 +1550,11 @@ class ListDataLakeExceptionsCommand extends smithyClient.Command
|
|
|
1552
1550
|
.classBuilder()
|
|
1553
1551
|
.ep(commonParams)
|
|
1554
1552
|
.m(function (Command, cs, config, o) {
|
|
1555
|
-
return [
|
|
1556
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1557
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1558
|
-
];
|
|
1553
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1559
1554
|
})
|
|
1560
1555
|
.s("SecurityLake", "ListDataLakeExceptions", {})
|
|
1561
1556
|
.n("SecurityLakeClient", "ListDataLakeExceptionsCommand")
|
|
1562
|
-
.
|
|
1563
|
-
.ser(se_ListDataLakeExceptionsCommand)
|
|
1564
|
-
.de(de_ListDataLakeExceptionsCommand)
|
|
1557
|
+
.sc(ListDataLakeExceptions)
|
|
1565
1558
|
.build() {
|
|
1566
1559
|
}
|
|
1567
1560
|
|
|
@@ -1569,16 +1562,11 @@ class ListDataLakesCommand extends smithyClient.Command
|
|
|
1569
1562
|
.classBuilder()
|
|
1570
1563
|
.ep(commonParams)
|
|
1571
1564
|
.m(function (Command, cs, config, o) {
|
|
1572
|
-
return [
|
|
1573
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1574
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1575
|
-
];
|
|
1565
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1576
1566
|
})
|
|
1577
1567
|
.s("SecurityLake", "ListDataLakes", {})
|
|
1578
1568
|
.n("SecurityLakeClient", "ListDataLakesCommand")
|
|
1579
|
-
.
|
|
1580
|
-
.ser(se_ListDataLakesCommand)
|
|
1581
|
-
.de(de_ListDataLakesCommand)
|
|
1569
|
+
.sc(ListDataLakes)
|
|
1582
1570
|
.build() {
|
|
1583
1571
|
}
|
|
1584
1572
|
|
|
@@ -1586,16 +1574,11 @@ class ListLogSourcesCommand extends smithyClient.Command
|
|
|
1586
1574
|
.classBuilder()
|
|
1587
1575
|
.ep(commonParams)
|
|
1588
1576
|
.m(function (Command, cs, config, o) {
|
|
1589
|
-
return [
|
|
1590
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1591
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1592
|
-
];
|
|
1577
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1593
1578
|
})
|
|
1594
1579
|
.s("SecurityLake", "ListLogSources", {})
|
|
1595
1580
|
.n("SecurityLakeClient", "ListLogSourcesCommand")
|
|
1596
|
-
.
|
|
1597
|
-
.ser(se_ListLogSourcesCommand)
|
|
1598
|
-
.de(de_ListLogSourcesCommand)
|
|
1581
|
+
.sc(ListLogSources)
|
|
1599
1582
|
.build() {
|
|
1600
1583
|
}
|
|
1601
1584
|
|
|
@@ -1603,16 +1586,11 @@ class ListSubscribersCommand extends smithyClient.Command
|
|
|
1603
1586
|
.classBuilder()
|
|
1604
1587
|
.ep(commonParams)
|
|
1605
1588
|
.m(function (Command, cs, config, o) {
|
|
1606
|
-
return [
|
|
1607
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1608
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1609
|
-
];
|
|
1589
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1610
1590
|
})
|
|
1611
1591
|
.s("SecurityLake", "ListSubscribers", {})
|
|
1612
1592
|
.n("SecurityLakeClient", "ListSubscribersCommand")
|
|
1613
|
-
.
|
|
1614
|
-
.ser(se_ListSubscribersCommand)
|
|
1615
|
-
.de(de_ListSubscribersCommand)
|
|
1593
|
+
.sc(ListSubscribers)
|
|
1616
1594
|
.build() {
|
|
1617
1595
|
}
|
|
1618
1596
|
|
|
@@ -1620,16 +1598,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1620
1598
|
.classBuilder()
|
|
1621
1599
|
.ep(commonParams)
|
|
1622
1600
|
.m(function (Command, cs, config, o) {
|
|
1623
|
-
return [
|
|
1624
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1625
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1626
|
-
];
|
|
1601
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1627
1602
|
})
|
|
1628
1603
|
.s("SecurityLake", "ListTagsForResource", {})
|
|
1629
1604
|
.n("SecurityLakeClient", "ListTagsForResourceCommand")
|
|
1630
|
-
.
|
|
1631
|
-
.ser(se_ListTagsForResourceCommand)
|
|
1632
|
-
.de(de_ListTagsForResourceCommand)
|
|
1605
|
+
.sc(ListTagsForResource)
|
|
1633
1606
|
.build() {
|
|
1634
1607
|
}
|
|
1635
1608
|
|
|
@@ -1637,16 +1610,11 @@ class RegisterDataLakeDelegatedAdministratorCommand extends smithyClient.Command
|
|
|
1637
1610
|
.classBuilder()
|
|
1638
1611
|
.ep(commonParams)
|
|
1639
1612
|
.m(function (Command, cs, config, o) {
|
|
1640
|
-
return [
|
|
1641
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1642
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1643
|
-
];
|
|
1613
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1644
1614
|
})
|
|
1645
1615
|
.s("SecurityLake", "RegisterDataLakeDelegatedAdministrator", {})
|
|
1646
1616
|
.n("SecurityLakeClient", "RegisterDataLakeDelegatedAdministratorCommand")
|
|
1647
|
-
.
|
|
1648
|
-
.ser(se_RegisterDataLakeDelegatedAdministratorCommand)
|
|
1649
|
-
.de(de_RegisterDataLakeDelegatedAdministratorCommand)
|
|
1617
|
+
.sc(RegisterDataLakeDelegatedAdministrator)
|
|
1650
1618
|
.build() {
|
|
1651
1619
|
}
|
|
1652
1620
|
|
|
@@ -1654,16 +1622,11 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1654
1622
|
.classBuilder()
|
|
1655
1623
|
.ep(commonParams)
|
|
1656
1624
|
.m(function (Command, cs, config, o) {
|
|
1657
|
-
return [
|
|
1658
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1659
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1660
|
-
];
|
|
1625
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1661
1626
|
})
|
|
1662
1627
|
.s("SecurityLake", "TagResource", {})
|
|
1663
1628
|
.n("SecurityLakeClient", "TagResourceCommand")
|
|
1664
|
-
.
|
|
1665
|
-
.ser(se_TagResourceCommand)
|
|
1666
|
-
.de(de_TagResourceCommand)
|
|
1629
|
+
.sc(TagResource)
|
|
1667
1630
|
.build() {
|
|
1668
1631
|
}
|
|
1669
1632
|
|
|
@@ -1671,16 +1634,11 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1671
1634
|
.classBuilder()
|
|
1672
1635
|
.ep(commonParams)
|
|
1673
1636
|
.m(function (Command, cs, config, o) {
|
|
1674
|
-
return [
|
|
1675
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1676
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1677
|
-
];
|
|
1637
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1678
1638
|
})
|
|
1679
1639
|
.s("SecurityLake", "UntagResource", {})
|
|
1680
1640
|
.n("SecurityLakeClient", "UntagResourceCommand")
|
|
1681
|
-
.
|
|
1682
|
-
.ser(se_UntagResourceCommand)
|
|
1683
|
-
.de(de_UntagResourceCommand)
|
|
1641
|
+
.sc(UntagResource)
|
|
1684
1642
|
.build() {
|
|
1685
1643
|
}
|
|
1686
1644
|
|
|
@@ -1688,16 +1646,11 @@ class UpdateDataLakeCommand extends smithyClient.Command
|
|
|
1688
1646
|
.classBuilder()
|
|
1689
1647
|
.ep(commonParams)
|
|
1690
1648
|
.m(function (Command, cs, config, o) {
|
|
1691
|
-
return [
|
|
1692
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1693
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1694
|
-
];
|
|
1649
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1695
1650
|
})
|
|
1696
1651
|
.s("SecurityLake", "UpdateDataLake", {})
|
|
1697
1652
|
.n("SecurityLakeClient", "UpdateDataLakeCommand")
|
|
1698
|
-
.
|
|
1699
|
-
.ser(se_UpdateDataLakeCommand)
|
|
1700
|
-
.de(de_UpdateDataLakeCommand)
|
|
1653
|
+
.sc(UpdateDataLake)
|
|
1701
1654
|
.build() {
|
|
1702
1655
|
}
|
|
1703
1656
|
|
|
@@ -1705,16 +1658,11 @@ class UpdateDataLakeExceptionSubscriptionCommand extends smithyClient.Command
|
|
|
1705
1658
|
.classBuilder()
|
|
1706
1659
|
.ep(commonParams)
|
|
1707
1660
|
.m(function (Command, cs, config, o) {
|
|
1708
|
-
return [
|
|
1709
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1710
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1711
|
-
];
|
|
1661
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1712
1662
|
})
|
|
1713
1663
|
.s("SecurityLake", "UpdateDataLakeExceptionSubscription", {})
|
|
1714
1664
|
.n("SecurityLakeClient", "UpdateDataLakeExceptionSubscriptionCommand")
|
|
1715
|
-
.
|
|
1716
|
-
.ser(se_UpdateDataLakeExceptionSubscriptionCommand)
|
|
1717
|
-
.de(de_UpdateDataLakeExceptionSubscriptionCommand)
|
|
1665
|
+
.sc(UpdateDataLakeExceptionSubscription)
|
|
1718
1666
|
.build() {
|
|
1719
1667
|
}
|
|
1720
1668
|
|
|
@@ -1722,16 +1670,11 @@ class UpdateSubscriberCommand extends smithyClient.Command
|
|
|
1722
1670
|
.classBuilder()
|
|
1723
1671
|
.ep(commonParams)
|
|
1724
1672
|
.m(function (Command, cs, config, o) {
|
|
1725
|
-
return [
|
|
1726
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1727
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1728
|
-
];
|
|
1673
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1729
1674
|
})
|
|
1730
1675
|
.s("SecurityLake", "UpdateSubscriber", {})
|
|
1731
1676
|
.n("SecurityLakeClient", "UpdateSubscriberCommand")
|
|
1732
|
-
.
|
|
1733
|
-
.ser(se_UpdateSubscriberCommand)
|
|
1734
|
-
.de(de_UpdateSubscriberCommand)
|
|
1677
|
+
.sc(UpdateSubscriber)
|
|
1735
1678
|
.build() {
|
|
1736
1679
|
}
|
|
1737
1680
|
|
|
@@ -1739,16 +1682,11 @@ class UpdateSubscriberNotificationCommand extends smithyClient.Command
|
|
|
1739
1682
|
.classBuilder()
|
|
1740
1683
|
.ep(commonParams)
|
|
1741
1684
|
.m(function (Command, cs, config, o) {
|
|
1742
|
-
return [
|
|
1743
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1744
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1745
|
-
];
|
|
1685
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1746
1686
|
})
|
|
1747
1687
|
.s("SecurityLake", "UpdateSubscriberNotification", {})
|
|
1748
1688
|
.n("SecurityLakeClient", "UpdateSubscriberNotificationCommand")
|
|
1749
|
-
.
|
|
1750
|
-
.ser(se_UpdateSubscriberNotificationCommand)
|
|
1751
|
-
.de(de_UpdateSubscriberNotificationCommand)
|
|
1689
|
+
.sc(UpdateSubscriberNotification)
|
|
1752
1690
|
.build() {
|
|
1753
1691
|
}
|
|
1754
1692
|
|
|
@@ -1805,11 +1743,11 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1805
1743
|
enumerable: true,
|
|
1806
1744
|
get: function () { return smithyClient.Client; }
|
|
1807
1745
|
});
|
|
1808
|
-
exports.AccessDeniedException = AccessDeniedException;
|
|
1746
|
+
exports.AccessDeniedException = AccessDeniedException$1;
|
|
1809
1747
|
exports.AccessType = AccessType;
|
|
1810
1748
|
exports.AwsLogSourceName = AwsLogSourceName;
|
|
1811
|
-
exports.BadRequestException = BadRequestException;
|
|
1812
|
-
exports.ConflictException = ConflictException;
|
|
1749
|
+
exports.BadRequestException = BadRequestException$1;
|
|
1750
|
+
exports.ConflictException = ConflictException$1;
|
|
1813
1751
|
exports.CreateAwsLogSourceCommand = CreateAwsLogSourceCommand;
|
|
1814
1752
|
exports.CreateCustomLogSourceCommand = CreateCustomLogSourceCommand;
|
|
1815
1753
|
exports.CreateDataLakeCommand = CreateDataLakeCommand;
|
|
@@ -1831,21 +1769,21 @@ exports.GetDataLakeOrganizationConfigurationCommand = GetDataLakeOrganizationCon
|
|
|
1831
1769
|
exports.GetDataLakeSourcesCommand = GetDataLakeSourcesCommand;
|
|
1832
1770
|
exports.GetSubscriberCommand = GetSubscriberCommand;
|
|
1833
1771
|
exports.HttpMethod = HttpMethod;
|
|
1834
|
-
exports.InternalServerException = InternalServerException;
|
|
1772
|
+
exports.InternalServerException = InternalServerException$1;
|
|
1835
1773
|
exports.ListDataLakeExceptionsCommand = ListDataLakeExceptionsCommand;
|
|
1836
1774
|
exports.ListDataLakesCommand = ListDataLakesCommand;
|
|
1837
1775
|
exports.ListLogSourcesCommand = ListLogSourcesCommand;
|
|
1838
1776
|
exports.ListSubscribersCommand = ListSubscribersCommand;
|
|
1839
1777
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1840
1778
|
exports.RegisterDataLakeDelegatedAdministratorCommand = RegisterDataLakeDelegatedAdministratorCommand;
|
|
1841
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1779
|
+
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
1842
1780
|
exports.SecurityLake = SecurityLake;
|
|
1843
1781
|
exports.SecurityLakeClient = SecurityLakeClient;
|
|
1844
|
-
exports.SecurityLakeServiceException = SecurityLakeServiceException;
|
|
1782
|
+
exports.SecurityLakeServiceException = SecurityLakeServiceException$1;
|
|
1845
1783
|
exports.SourceCollectionStatus = SourceCollectionStatus;
|
|
1846
1784
|
exports.SubscriberStatus = SubscriberStatus;
|
|
1847
1785
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1848
|
-
exports.ThrottlingException = ThrottlingException;
|
|
1786
|
+
exports.ThrottlingException = ThrottlingException$1;
|
|
1849
1787
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1850
1788
|
exports.UpdateDataLakeCommand = UpdateDataLakeCommand;
|
|
1851
1789
|
exports.UpdateDataLakeExceptionSubscriptionCommand = UpdateDataLakeExceptionSubscriptionCommand;
|