@aws-sdk/client-securitylake 3.948.0 → 3.953.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 +411 -283
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/CreateAwsLogSourceCommand.js +2 -2
- package/dist-es/commands/CreateCustomLogSourceCommand.js +2 -2
- package/dist-es/commands/CreateDataLakeCommand.js +2 -2
- package/dist-es/commands/CreateDataLakeExceptionSubscriptionCommand.js +2 -2
- package/dist-es/commands/CreateDataLakeOrganizationConfigurationCommand.js +2 -2
- package/dist-es/commands/CreateSubscriberCommand.js +2 -2
- package/dist-es/commands/CreateSubscriberNotificationCommand.js +2 -2
- package/dist-es/commands/DeleteAwsLogSourceCommand.js +2 -2
- package/dist-es/commands/DeleteCustomLogSourceCommand.js +2 -2
- package/dist-es/commands/DeleteDataLakeCommand.js +2 -2
- package/dist-es/commands/DeleteDataLakeExceptionSubscriptionCommand.js +2 -2
- package/dist-es/commands/DeleteDataLakeOrganizationConfigurationCommand.js +2 -2
- package/dist-es/commands/DeleteSubscriberCommand.js +2 -2
- package/dist-es/commands/DeleteSubscriberNotificationCommand.js +2 -2
- package/dist-es/commands/DeregisterDataLakeDelegatedAdministratorCommand.js +2 -2
- package/dist-es/commands/GetDataLakeExceptionSubscriptionCommand.js +2 -2
- package/dist-es/commands/GetDataLakeOrganizationConfigurationCommand.js +2 -2
- package/dist-es/commands/GetDataLakeSourcesCommand.js +2 -2
- package/dist-es/commands/GetSubscriberCommand.js +2 -2
- package/dist-es/commands/ListDataLakeExceptionsCommand.js +2 -2
- package/dist-es/commands/ListDataLakesCommand.js +2 -2
- package/dist-es/commands/ListLogSourcesCommand.js +2 -2
- package/dist-es/commands/ListSubscribersCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/RegisterDataLakeDelegatedAdministratorCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateDataLakeCommand.js +2 -2
- package/dist-es/commands/UpdateDataLakeExceptionSubscriptionCommand.js +2 -2
- package/dist-es/commands/UpdateSubscriberCommand.js +2 -2
- package/dist-es/commands/UpdateSubscriberNotificationCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +239 -239
- package/dist-types/SecurityLakeClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +129 -147
- package/dist-types/ts3.4/SecurityLakeClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +128 -147
- package/package.json +34 -34
package/dist-cjs/index.js
CHANGED
|
@@ -110,14 +110,14 @@ class SecurityLakeClient extends smithyClient.Client {
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
|
|
113
|
+
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
|
-
|
|
120
|
+
class AccessDeniedException extends SecurityLakeServiceException {
|
|
121
121
|
name = "AccessDeniedException";
|
|
122
122
|
$fault = "client";
|
|
123
123
|
errorCode;
|
|
@@ -130,8 +130,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends SecurityLakeSe
|
|
|
130
130
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
131
131
|
this.errorCode = opts.errorCode;
|
|
132
132
|
}
|
|
133
|
-
}
|
|
134
|
-
|
|
133
|
+
}
|
|
134
|
+
class BadRequestException extends SecurityLakeServiceException {
|
|
135
135
|
name = "BadRequestException";
|
|
136
136
|
$fault = "client";
|
|
137
137
|
constructor(opts) {
|
|
@@ -142,8 +142,8 @@ let BadRequestException$1 = class BadRequestException extends SecurityLakeServic
|
|
|
142
142
|
});
|
|
143
143
|
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
144
144
|
}
|
|
145
|
-
}
|
|
146
|
-
|
|
145
|
+
}
|
|
146
|
+
class ConflictException extends SecurityLakeServiceException {
|
|
147
147
|
name = "ConflictException";
|
|
148
148
|
$fault = "client";
|
|
149
149
|
resourceName;
|
|
@@ -158,8 +158,8 @@ let ConflictException$1 = class ConflictException extends SecurityLakeServiceExc
|
|
|
158
158
|
this.resourceName = opts.resourceName;
|
|
159
159
|
this.resourceType = opts.resourceType;
|
|
160
160
|
}
|
|
161
|
-
}
|
|
162
|
-
|
|
161
|
+
}
|
|
162
|
+
class InternalServerException extends SecurityLakeServiceException {
|
|
163
163
|
name = "InternalServerException";
|
|
164
164
|
$fault = "server";
|
|
165
165
|
$retryable = {};
|
|
@@ -171,8 +171,8 @@ let InternalServerException$1 = class InternalServerException extends SecurityLa
|
|
|
171
171
|
});
|
|
172
172
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
173
173
|
}
|
|
174
|
-
}
|
|
175
|
-
|
|
174
|
+
}
|
|
175
|
+
class ResourceNotFoundException extends SecurityLakeServiceException {
|
|
176
176
|
name = "ResourceNotFoundException";
|
|
177
177
|
$fault = "client";
|
|
178
178
|
resourceName;
|
|
@@ -187,8 +187,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Securi
|
|
|
187
187
|
this.resourceName = opts.resourceName;
|
|
188
188
|
this.resourceType = opts.resourceType;
|
|
189
189
|
}
|
|
190
|
-
}
|
|
191
|
-
|
|
190
|
+
}
|
|
191
|
+
class ThrottlingException extends SecurityLakeServiceException {
|
|
192
192
|
name = "ThrottlingException";
|
|
193
193
|
$fault = "client";
|
|
194
194
|
$retryable = {
|
|
@@ -208,7 +208,7 @@ let ThrottlingException$1 = class ThrottlingException extends SecurityLakeServic
|
|
|
208
208
|
this.quotaCode = opts.quotaCode;
|
|
209
209
|
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
210
210
|
}
|
|
211
|
-
}
|
|
211
|
+
}
|
|
212
212
|
|
|
213
213
|
const _ADE = "AccessDeniedException";
|
|
214
214
|
const _AI = "AwsIdentity";
|
|
@@ -450,10 +450,10 @@ const _uA = "updatedAt";
|
|
|
450
450
|
const _uS = "updateStatus";
|
|
451
451
|
const _v = "value";
|
|
452
452
|
const n0 = "com.amazonaws.securitylake";
|
|
453
|
-
var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m, _eC], [0, 0]];
|
|
454
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException
|
|
455
|
-
var AwsIdentity = [3, n0, _AI, 0, [_p, _eI], [0, 0]];
|
|
456
|
-
var AwsLogSourceConfiguration = [
|
|
453
|
+
var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m, _eC], [0, 0]];
|
|
454
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
455
|
+
var AwsIdentity$ = [3, n0, _AI, 0, [_p, _eI], [0, 0]];
|
|
456
|
+
var AwsLogSourceConfiguration$ = [
|
|
457
457
|
3,
|
|
458
458
|
n0,
|
|
459
459
|
_ALSC,
|
|
@@ -461,12 +461,12 @@ var AwsLogSourceConfiguration = [
|
|
|
461
461
|
[_a, _r, _sN, _sV],
|
|
462
462
|
[64 | 0, 64 | 0, 0, 0],
|
|
463
463
|
];
|
|
464
|
-
var AwsLogSourceResource = [3, n0, _ALSR, 0, [_sN, _sV], [0, 0]];
|
|
465
|
-
var BadRequestException = [-3, n0, _BRE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
466
|
-
schema.TypeRegistry.for(n0).registerError(BadRequestException
|
|
467
|
-
var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m, _rN, _rT], [0, 0, 0]];
|
|
468
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException
|
|
469
|
-
var CreateAwsLogSourceRequest = [
|
|
464
|
+
var AwsLogSourceResource$ = [3, n0, _ALSR, 0, [_sN, _sV], [0, 0]];
|
|
465
|
+
var BadRequestException$ = [-3, n0, _BRE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
466
|
+
schema.TypeRegistry.for(n0).registerError(BadRequestException$, BadRequestException);
|
|
467
|
+
var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m, _rN, _rT], [0, 0, 0]];
|
|
468
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
469
|
+
var CreateAwsLogSourceRequest$ = [
|
|
470
470
|
3,
|
|
471
471
|
n0,
|
|
472
472
|
_CALSR,
|
|
@@ -474,24 +474,24 @@ var CreateAwsLogSourceRequest = [
|
|
|
474
474
|
[_s],
|
|
475
475
|
[() => AwsLogSourceConfigurationList],
|
|
476
476
|
];
|
|
477
|
-
var CreateAwsLogSourceResponse = [3, n0, _CALSRr, 0, [_f], [64 | 0]];
|
|
478
|
-
var CreateCustomLogSourceRequest = [
|
|
477
|
+
var CreateAwsLogSourceResponse$ = [3, n0, _CALSRr, 0, [_f], [64 | 0]];
|
|
478
|
+
var CreateCustomLogSourceRequest$ = [
|
|
479
479
|
3,
|
|
480
480
|
n0,
|
|
481
481
|
_CCLSR,
|
|
482
482
|
0,
|
|
483
483
|
[_sN, _sV, _eCv, _co],
|
|
484
|
-
[0, 0, 64 | 0, () => CustomLogSourceConfiguration],
|
|
484
|
+
[0, 0, 64 | 0, () => CustomLogSourceConfiguration$],
|
|
485
485
|
];
|
|
486
|
-
var CreateCustomLogSourceResponse = [
|
|
486
|
+
var CreateCustomLogSourceResponse$ = [
|
|
487
487
|
3,
|
|
488
488
|
n0,
|
|
489
489
|
_CCLSRr,
|
|
490
490
|
0,
|
|
491
491
|
[_so],
|
|
492
|
-
[() => CustomLogSourceResource],
|
|
492
|
+
[() => CustomLogSourceResource$],
|
|
493
493
|
];
|
|
494
|
-
var CreateDataLakeExceptionSubscriptionRequest = [
|
|
494
|
+
var CreateDataLakeExceptionSubscriptionRequest$ = [
|
|
495
495
|
3,
|
|
496
496
|
n0,
|
|
497
497
|
_CDLESR,
|
|
@@ -499,8 +499,8 @@ var CreateDataLakeExceptionSubscriptionRequest = [
|
|
|
499
499
|
[_sP, _nE, _eTTL],
|
|
500
500
|
[0, 0, 1],
|
|
501
501
|
];
|
|
502
|
-
var CreateDataLakeExceptionSubscriptionResponse = [3, n0, _CDLESRr, 0, [], []];
|
|
503
|
-
var CreateDataLakeOrganizationConfigurationRequest = [
|
|
502
|
+
var CreateDataLakeExceptionSubscriptionResponse$ = [3, n0, _CDLESRr, 0, [], []];
|
|
503
|
+
var CreateDataLakeOrganizationConfigurationRequest$ = [
|
|
504
504
|
3,
|
|
505
505
|
n0,
|
|
506
506
|
_CDLOCR,
|
|
@@ -508,8 +508,8 @@ var CreateDataLakeOrganizationConfigurationRequest = [
|
|
|
508
508
|
[_aENA],
|
|
509
509
|
[() => DataLakeAutoEnableNewAccountConfigurationList],
|
|
510
510
|
];
|
|
511
|
-
var CreateDataLakeOrganizationConfigurationResponse = [3, n0, _CDLOCRr, 0, [], []];
|
|
512
|
-
var CreateDataLakeRequest = [
|
|
511
|
+
var CreateDataLakeOrganizationConfigurationResponse$ = [3, n0, _CDLOCRr, 0, [], []];
|
|
512
|
+
var CreateDataLakeRequest$ = [
|
|
513
513
|
3,
|
|
514
514
|
n0,
|
|
515
515
|
_CDLR,
|
|
@@ -517,45 +517,45 @@ var CreateDataLakeRequest = [
|
|
|
517
517
|
[_con, _mSMRA, _t],
|
|
518
518
|
[() => DataLakeConfigurationList, 0, () => TagList],
|
|
519
519
|
];
|
|
520
|
-
var CreateDataLakeResponse = [3, n0, _CDLRr, 0, [_dL], [() => DataLakeResourceList]];
|
|
521
|
-
var CreateSubscriberNotificationRequest = [
|
|
520
|
+
var CreateDataLakeResponse$ = [3, n0, _CDLRr, 0, [_dL], [() => DataLakeResourceList]];
|
|
521
|
+
var CreateSubscriberNotificationRequest$ = [
|
|
522
522
|
3,
|
|
523
523
|
n0,
|
|
524
524
|
_CSNR,
|
|
525
525
|
0,
|
|
526
526
|
[_sI, _co],
|
|
527
|
-
[[0, 1], () => NotificationConfiguration],
|
|
527
|
+
[[0, 1], () => NotificationConfiguration$],
|
|
528
528
|
];
|
|
529
|
-
var CreateSubscriberNotificationResponse = [3, n0, _CSNRr, 0, [_sE], [0]];
|
|
530
|
-
var CreateSubscriberRequest = [
|
|
529
|
+
var CreateSubscriberNotificationResponse$ = [3, n0, _CSNRr, 0, [_sE], [0]];
|
|
530
|
+
var CreateSubscriberRequest$ = [
|
|
531
531
|
3,
|
|
532
532
|
n0,
|
|
533
533
|
_CSR,
|
|
534
534
|
0,
|
|
535
535
|
[_sIu, _sNu, _sD, _s, _aT, _t],
|
|
536
|
-
[() => AwsIdentity
|
|
536
|
+
[() => AwsIdentity$, 0, 0, () => LogSourceResourceList, 64 | 0, () => TagList],
|
|
537
537
|
];
|
|
538
|
-
var CreateSubscriberResponse = [3, n0, _CSRr, 0, [_su], [() => SubscriberResource]];
|
|
539
|
-
var CustomLogSourceAttributes = [3, n0, _CLSA, 0, [_cA, _dA, _tA], [0, 0, 0]];
|
|
540
|
-
var CustomLogSourceConfiguration = [
|
|
538
|
+
var CreateSubscriberResponse$ = [3, n0, _CSRr, 0, [_su], [() => SubscriberResource$]];
|
|
539
|
+
var CustomLogSourceAttributes$ = [3, n0, _CLSA, 0, [_cA, _dA, _tA], [0, 0, 0]];
|
|
540
|
+
var CustomLogSourceConfiguration$ = [
|
|
541
541
|
3,
|
|
542
542
|
n0,
|
|
543
543
|
_CLSC,
|
|
544
544
|
0,
|
|
545
545
|
[_cC, _pI],
|
|
546
|
-
[() => CustomLogSourceCrawlerConfiguration
|
|
546
|
+
[() => CustomLogSourceCrawlerConfiguration$, () => AwsIdentity$],
|
|
547
547
|
];
|
|
548
|
-
var CustomLogSourceCrawlerConfiguration = [3, n0, _CLSCC, 0, [_rA], [0]];
|
|
549
|
-
var CustomLogSourceProvider = [3, n0, _CLSP, 0, [_rA, _l], [0, 0]];
|
|
550
|
-
var CustomLogSourceResource = [
|
|
548
|
+
var CustomLogSourceCrawlerConfiguration$ = [3, n0, _CLSCC, 0, [_rA], [0]];
|
|
549
|
+
var CustomLogSourceProvider$ = [3, n0, _CLSP, 0, [_rA, _l], [0, 0]];
|
|
550
|
+
var CustomLogSourceResource$ = [
|
|
551
551
|
3,
|
|
552
552
|
n0,
|
|
553
553
|
_CLSR,
|
|
554
554
|
0,
|
|
555
555
|
[_sN, _sV, _pr, _at],
|
|
556
|
-
[0, 0, () => CustomLogSourceProvider
|
|
556
|
+
[0, 0, () => CustomLogSourceProvider$, () => CustomLogSourceAttributes$],
|
|
557
557
|
];
|
|
558
|
-
var DataLakeAutoEnableNewAccountConfiguration = [
|
|
558
|
+
var DataLakeAutoEnableNewAccountConfiguration$ = [
|
|
559
559
|
3,
|
|
560
560
|
n0,
|
|
561
561
|
_DLAENAC,
|
|
@@ -563,7 +563,7 @@ var DataLakeAutoEnableNewAccountConfiguration = [
|
|
|
563
563
|
[_re, _s],
|
|
564
564
|
[0, () => AwsLogSourceResourceList],
|
|
565
565
|
];
|
|
566
|
-
var DataLakeConfiguration = [
|
|
566
|
+
var DataLakeConfiguration$ = [
|
|
567
567
|
3,
|
|
568
568
|
n0,
|
|
569
569
|
_DLC,
|
|
@@ -571,25 +571,25 @@ var DataLakeConfiguration = [
|
|
|
571
571
|
[_re, _eCn, _lC, _rC],
|
|
572
572
|
[
|
|
573
573
|
0,
|
|
574
|
-
() => DataLakeEncryptionConfiguration
|
|
575
|
-
() => DataLakeLifecycleConfiguration
|
|
576
|
-
() => DataLakeReplicationConfiguration
|
|
574
|
+
() => DataLakeEncryptionConfiguration$,
|
|
575
|
+
() => DataLakeLifecycleConfiguration$,
|
|
576
|
+
() => DataLakeReplicationConfiguration$,
|
|
577
577
|
],
|
|
578
578
|
];
|
|
579
|
-
var DataLakeEncryptionConfiguration = [3, n0, _DLEC, 0, [_kKI], [0]];
|
|
580
|
-
var DataLakeException = [3, n0, _DLE, 0, [_re, _ex, _rem, _ti], [0, 0, 0, 5]];
|
|
581
|
-
var DataLakeLifecycleConfiguration = [
|
|
579
|
+
var DataLakeEncryptionConfiguration$ = [3, n0, _DLEC, 0, [_kKI], [0]];
|
|
580
|
+
var DataLakeException$ = [3, n0, _DLE, 0, [_re, _ex, _rem, _ti], [0, 0, 0, 5]];
|
|
581
|
+
var DataLakeLifecycleConfiguration$ = [
|
|
582
582
|
3,
|
|
583
583
|
n0,
|
|
584
584
|
_DLLC,
|
|
585
585
|
0,
|
|
586
586
|
[_exp, _tr],
|
|
587
|
-
[() => DataLakeLifecycleExpiration
|
|
587
|
+
[() => DataLakeLifecycleExpiration$, () => DataLakeLifecycleTransitionList],
|
|
588
588
|
];
|
|
589
|
-
var DataLakeLifecycleExpiration = [3, n0, _DLLE, 0, [_d], [1]];
|
|
590
|
-
var DataLakeLifecycleTransition = [3, n0, _DLLT, 0, [_sC, _d], [0, 1]];
|
|
591
|
-
var DataLakeReplicationConfiguration = [3, n0, _DLRC, 0, [_r, _rA], [64 | 0, 0]];
|
|
592
|
-
var DataLakeResource = [
|
|
589
|
+
var DataLakeLifecycleExpiration$ = [3, n0, _DLLE, 0, [_d], [1]];
|
|
590
|
+
var DataLakeLifecycleTransition$ = [3, n0, _DLLT, 0, [_sC, _d], [0, 1]];
|
|
591
|
+
var DataLakeReplicationConfiguration$ = [3, n0, _DLRC, 0, [_r, _rA], [64 | 0, 0]];
|
|
592
|
+
var DataLakeResource$ = [
|
|
593
593
|
3,
|
|
594
594
|
n0,
|
|
595
595
|
_DLR,
|
|
@@ -599,14 +599,14 @@ var DataLakeResource = [
|
|
|
599
599
|
0,
|
|
600
600
|
0,
|
|
601
601
|
0,
|
|
602
|
-
() => DataLakeEncryptionConfiguration
|
|
603
|
-
() => DataLakeLifecycleConfiguration
|
|
604
|
-
() => DataLakeReplicationConfiguration
|
|
602
|
+
() => DataLakeEncryptionConfiguration$,
|
|
603
|
+
() => DataLakeLifecycleConfiguration$,
|
|
604
|
+
() => DataLakeReplicationConfiguration$,
|
|
605
605
|
0,
|
|
606
|
-
() => DataLakeUpdateStatus
|
|
606
|
+
() => DataLakeUpdateStatus$,
|
|
607
607
|
],
|
|
608
608
|
];
|
|
609
|
-
var DataLakeSource = [
|
|
609
|
+
var DataLakeSource$ = [
|
|
610
610
|
3,
|
|
611
611
|
n0,
|
|
612
612
|
_DLS,
|
|
@@ -614,17 +614,17 @@ var DataLakeSource = [
|
|
|
614
614
|
[_ac, _sN, _eCv, _sS],
|
|
615
615
|
[0, 0, 64 | 0, () => DataLakeSourceStatusList],
|
|
616
616
|
];
|
|
617
|
-
var DataLakeSourceStatus = [3, n0, _DLSS, 0, [_res, _st], [0, 0]];
|
|
618
|
-
var DataLakeUpdateException = [3, n0, _DLUE, 0, [_rea, _cod], [0, 0]];
|
|
619
|
-
var DataLakeUpdateStatus = [
|
|
617
|
+
var DataLakeSourceStatus$ = [3, n0, _DLSS, 0, [_res, _st], [0, 0]];
|
|
618
|
+
var DataLakeUpdateException$ = [3, n0, _DLUE, 0, [_rea, _cod], [0, 0]];
|
|
619
|
+
var DataLakeUpdateStatus$ = [
|
|
620
620
|
3,
|
|
621
621
|
n0,
|
|
622
622
|
_DLUS,
|
|
623
623
|
0,
|
|
624
624
|
[_rI, _st, _ex],
|
|
625
|
-
[0, 0, () => DataLakeUpdateException],
|
|
625
|
+
[0, 0, () => DataLakeUpdateException$],
|
|
626
626
|
];
|
|
627
|
-
var DeleteAwsLogSourceRequest = [
|
|
627
|
+
var DeleteAwsLogSourceRequest$ = [
|
|
628
628
|
3,
|
|
629
629
|
n0,
|
|
630
630
|
_DALSR,
|
|
@@ -632,8 +632,8 @@ var DeleteAwsLogSourceRequest = [
|
|
|
632
632
|
[_s],
|
|
633
633
|
[() => AwsLogSourceConfigurationList],
|
|
634
634
|
];
|
|
635
|
-
var DeleteAwsLogSourceResponse = [3, n0, _DALSRe, 0, [_f], [64 | 0]];
|
|
636
|
-
var DeleteCustomLogSourceRequest = [
|
|
635
|
+
var DeleteAwsLogSourceResponse$ = [3, n0, _DALSRe, 0, [_f], [64 | 0]];
|
|
636
|
+
var DeleteCustomLogSourceRequest$ = [
|
|
637
637
|
3,
|
|
638
638
|
n0,
|
|
639
639
|
_DCLSR,
|
|
@@ -644,10 +644,10 @@ var DeleteCustomLogSourceRequest = [
|
|
|
644
644
|
[0, { [_hQ]: _sV }],
|
|
645
645
|
],
|
|
646
646
|
];
|
|
647
|
-
var DeleteCustomLogSourceResponse = [3, n0, _DCLSRe, 0, [], []];
|
|
648
|
-
var DeleteDataLakeExceptionSubscriptionRequest = [3, n0, _DDLESR, 0, [], []];
|
|
649
|
-
var DeleteDataLakeExceptionSubscriptionResponse = [3, n0, _DDLESRe, 0, [], []];
|
|
650
|
-
var DeleteDataLakeOrganizationConfigurationRequest = [
|
|
647
|
+
var DeleteCustomLogSourceResponse$ = [3, n0, _DCLSRe, 0, [], []];
|
|
648
|
+
var DeleteDataLakeExceptionSubscriptionRequest$ = [3, n0, _DDLESR, 0, [], []];
|
|
649
|
+
var DeleteDataLakeExceptionSubscriptionResponse$ = [3, n0, _DDLESRe, 0, [], []];
|
|
650
|
+
var DeleteDataLakeOrganizationConfigurationRequest$ = [
|
|
651
651
|
3,
|
|
652
652
|
n0,
|
|
653
653
|
_DDLOCR,
|
|
@@ -655,17 +655,17 @@ var DeleteDataLakeOrganizationConfigurationRequest = [
|
|
|
655
655
|
[_aENA],
|
|
656
656
|
[() => DataLakeAutoEnableNewAccountConfigurationList],
|
|
657
657
|
];
|
|
658
|
-
var DeleteDataLakeOrganizationConfigurationResponse = [3, n0, _DDLOCRe, 0, [], []];
|
|
659
|
-
var DeleteDataLakeRequest = [3, n0, _DDLR, 0, [_r], [64 | 0]];
|
|
660
|
-
var DeleteDataLakeResponse = [3, n0, _DDLRe, 0, [], []];
|
|
661
|
-
var DeleteSubscriberNotificationRequest = [3, n0, _DSNR, 0, [_sI], [[0, 1]]];
|
|
662
|
-
var DeleteSubscriberNotificationResponse = [3, n0, _DSNRe, 0, [], []];
|
|
663
|
-
var DeleteSubscriberRequest = [3, n0, _DSR, 0, [_sI], [[0, 1]]];
|
|
664
|
-
var DeleteSubscriberResponse = [3, n0, _DSRe, 0, [], []];
|
|
665
|
-
var DeregisterDataLakeDelegatedAdministratorRequest = [3, n0, _DDLDAR, 0, [], []];
|
|
666
|
-
var DeregisterDataLakeDelegatedAdministratorResponse = [3, n0, _DDLDARe, 0, [], []];
|
|
667
|
-
var GetDataLakeExceptionSubscriptionRequest = [3, n0, _GDLESR, 0, [], []];
|
|
668
|
-
var GetDataLakeExceptionSubscriptionResponse = [
|
|
658
|
+
var DeleteDataLakeOrganizationConfigurationResponse$ = [3, n0, _DDLOCRe, 0, [], []];
|
|
659
|
+
var DeleteDataLakeRequest$ = [3, n0, _DDLR, 0, [_r], [64 | 0]];
|
|
660
|
+
var DeleteDataLakeResponse$ = [3, n0, _DDLRe, 0, [], []];
|
|
661
|
+
var DeleteSubscriberNotificationRequest$ = [3, n0, _DSNR, 0, [_sI], [[0, 1]]];
|
|
662
|
+
var DeleteSubscriberNotificationResponse$ = [3, n0, _DSNRe, 0, [], []];
|
|
663
|
+
var DeleteSubscriberRequest$ = [3, n0, _DSR, 0, [_sI], [[0, 1]]];
|
|
664
|
+
var DeleteSubscriberResponse$ = [3, n0, _DSRe, 0, [], []];
|
|
665
|
+
var DeregisterDataLakeDelegatedAdministratorRequest$ = [3, n0, _DDLDAR, 0, [], []];
|
|
666
|
+
var DeregisterDataLakeDelegatedAdministratorResponse$ = [3, n0, _DDLDARe, 0, [], []];
|
|
667
|
+
var GetDataLakeExceptionSubscriptionRequest$ = [3, n0, _GDLESR, 0, [], []];
|
|
668
|
+
var GetDataLakeExceptionSubscriptionResponse$ = [
|
|
669
669
|
3,
|
|
670
670
|
n0,
|
|
671
671
|
_GDLESRe,
|
|
@@ -673,8 +673,8 @@ var GetDataLakeExceptionSubscriptionResponse = [
|
|
|
673
673
|
[_sP, _nE, _eTTL],
|
|
674
674
|
[0, 0, 1],
|
|
675
675
|
];
|
|
676
|
-
var GetDataLakeOrganizationConfigurationRequest = [3, n0, _GDLOCR, 0, [], []];
|
|
677
|
-
var GetDataLakeOrganizationConfigurationResponse = [
|
|
676
|
+
var GetDataLakeOrganizationConfigurationRequest$ = [3, n0, _GDLOCR, 0, [], []];
|
|
677
|
+
var GetDataLakeOrganizationConfigurationResponse$ = [
|
|
678
678
|
3,
|
|
679
679
|
n0,
|
|
680
680
|
_GDLOCRe,
|
|
@@ -682,8 +682,8 @@ var GetDataLakeOrganizationConfigurationResponse = [
|
|
|
682
682
|
[_aENA],
|
|
683
683
|
[() => DataLakeAutoEnableNewAccountConfigurationList],
|
|
684
684
|
];
|
|
685
|
-
var GetDataLakeSourcesRequest = [3, n0, _GDLSR, 0, [_a, _mR, _nT], [64 | 0, 1, 0]];
|
|
686
|
-
var GetDataLakeSourcesResponse = [
|
|
685
|
+
var GetDataLakeSourcesRequest$ = [3, n0, _GDLSR, 0, [_a, _mR, _nT], [64 | 0, 1, 0]];
|
|
686
|
+
var GetDataLakeSourcesResponse$ = [
|
|
687
687
|
3,
|
|
688
688
|
n0,
|
|
689
689
|
_GDLSRe,
|
|
@@ -691,9 +691,9 @@ var GetDataLakeSourcesResponse = [
|
|
|
691
691
|
[_dLA, _dLS, _nT],
|
|
692
692
|
[0, () => DataLakeSourceList, 0],
|
|
693
693
|
];
|
|
694
|
-
var GetSubscriberRequest = [3, n0, _GSR, 0, [_sI], [[0, 1]]];
|
|
695
|
-
var GetSubscriberResponse = [3, n0, _GSRe, 0, [_su], [() => SubscriberResource]];
|
|
696
|
-
var HttpsNotificationConfiguration = [
|
|
694
|
+
var GetSubscriberRequest$ = [3, n0, _GSR, 0, [_sI], [[0, 1]]];
|
|
695
|
+
var GetSubscriberResponse$ = [3, n0, _GSRe, 0, [_su], [() => SubscriberResource$]];
|
|
696
|
+
var HttpsNotificationConfiguration$ = [
|
|
697
697
|
3,
|
|
698
698
|
n0,
|
|
699
699
|
_HNC,
|
|
@@ -701,10 +701,10 @@ var HttpsNotificationConfiguration = [
|
|
|
701
701
|
[_en, _aAKN, _aAKV, _hM, _tRA],
|
|
702
702
|
[0, 0, 0, 0, 0],
|
|
703
703
|
];
|
|
704
|
-
var InternalServerException = [-3, n0, _ISE, { [_e]: _se, [_hE]: 500 }, [_m], [0]];
|
|
705
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException
|
|
706
|
-
var ListDataLakeExceptionsRequest = [3, n0, _LDLER, 0, [_r, _mR, _nT], [64 | 0, 1, 0]];
|
|
707
|
-
var ListDataLakeExceptionsResponse = [
|
|
704
|
+
var InternalServerException$ = [-3, n0, _ISE, { [_e]: _se, [_hE]: 500 }, [_m], [0]];
|
|
705
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
706
|
+
var ListDataLakeExceptionsRequest$ = [3, n0, _LDLER, 0, [_r, _mR, _nT], [64 | 0, 1, 0]];
|
|
707
|
+
var ListDataLakeExceptionsResponse$ = [
|
|
708
708
|
3,
|
|
709
709
|
n0,
|
|
710
710
|
_LDLERi,
|
|
@@ -712,9 +712,9 @@ var ListDataLakeExceptionsResponse = [
|
|
|
712
712
|
[_exc, _nT],
|
|
713
713
|
[() => DataLakeExceptionList, 0],
|
|
714
714
|
];
|
|
715
|
-
var ListDataLakesRequest = [3, n0, _LDLR, 0, [_r], [[64 | 0, { [_hQ]: _r }]]];
|
|
716
|
-
var ListDataLakesResponse = [3, n0, _LDLRi, 0, [_dL], [() => DataLakeResourceList]];
|
|
717
|
-
var ListLogSourcesRequest = [
|
|
715
|
+
var ListDataLakesRequest$ = [3, n0, _LDLR, 0, [_r], [[64 | 0, { [_hQ]: _r }]]];
|
|
716
|
+
var ListDataLakesResponse$ = [3, n0, _LDLRi, 0, [_dL], [() => DataLakeResourceList]];
|
|
717
|
+
var ListLogSourcesRequest$ = [
|
|
718
718
|
3,
|
|
719
719
|
n0,
|
|
720
720
|
_LLSR,
|
|
@@ -722,8 +722,8 @@ var ListLogSourcesRequest = [
|
|
|
722
722
|
[_a, _r, _s, _mR, _nT],
|
|
723
723
|
[64 | 0, 64 | 0, () => LogSourceResourceList, 1, 0],
|
|
724
724
|
];
|
|
725
|
-
var ListLogSourcesResponse = [3, n0, _LLSRi, 0, [_s, _nT], [() => LogSourceList, 0]];
|
|
726
|
-
var ListSubscribersRequest = [
|
|
725
|
+
var ListLogSourcesResponse$ = [3, n0, _LLSRi, 0, [_s, _nT], [() => LogSourceList, 0]];
|
|
726
|
+
var ListSubscribersRequest$ = [
|
|
727
727
|
3,
|
|
728
728
|
n0,
|
|
729
729
|
_LSR,
|
|
@@ -734,7 +734,7 @@ var ListSubscribersRequest = [
|
|
|
734
734
|
[1, { [_hQ]: _mR }],
|
|
735
735
|
],
|
|
736
736
|
];
|
|
737
|
-
var ListSubscribersResponse = [
|
|
737
|
+
var ListSubscribersResponse$ = [
|
|
738
738
|
3,
|
|
739
739
|
n0,
|
|
740
740
|
_LSRi,
|
|
@@ -742,12 +742,12 @@ var ListSubscribersResponse = [
|
|
|
742
742
|
[_sub, _nT],
|
|
743
743
|
[() => SubscriberResourceList, 0],
|
|
744
744
|
];
|
|
745
|
-
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rAe], [[0, 1]]];
|
|
746
|
-
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_t], [() => TagList]];
|
|
747
|
-
var LogSource = [3, n0, _LS, 0, [_ac, _re, _s], [0, 0, () => LogSourceResourceList]];
|
|
748
|
-
var RegisterDataLakeDelegatedAdministratorRequest = [3, n0, _RDLDAR, 0, [_aI], [0]];
|
|
749
|
-
var RegisterDataLakeDelegatedAdministratorResponse = [3, n0, _RDLDARe, 0, [], []];
|
|
750
|
-
var ResourceNotFoundException = [
|
|
745
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_rAe], [[0, 1]]];
|
|
746
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_t], [() => TagList]];
|
|
747
|
+
var LogSource$ = [3, n0, _LS, 0, [_ac, _re, _s], [0, 0, () => LogSourceResourceList]];
|
|
748
|
+
var RegisterDataLakeDelegatedAdministratorRequest$ = [3, n0, _RDLDAR, 0, [_aI], [0]];
|
|
749
|
+
var RegisterDataLakeDelegatedAdministratorResponse$ = [3, n0, _RDLDARe, 0, [], []];
|
|
750
|
+
var ResourceNotFoundException$ = [
|
|
751
751
|
-3,
|
|
752
752
|
n0,
|
|
753
753
|
_RNFE,
|
|
@@ -755,20 +755,20 @@ var ResourceNotFoundException = [
|
|
|
755
755
|
[_m, _rN, _rT],
|
|
756
756
|
[0, 0, 0],
|
|
757
757
|
];
|
|
758
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException
|
|
759
|
-
var SqsNotificationConfiguration = [3, n0, _SNC, 0, [], []];
|
|
760
|
-
var SubscriberResource = [
|
|
758
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
759
|
+
var SqsNotificationConfiguration$ = [3, n0, _SNC, 0, [], []];
|
|
760
|
+
var SubscriberResource$ = [
|
|
761
761
|
3,
|
|
762
762
|
n0,
|
|
763
763
|
_SR,
|
|
764
764
|
0,
|
|
765
765
|
[_sI, _sA, _sIu, _sNu, _sD, _s, _aT, _rA, _sBA, _sE, _sSu, _rSA, _rSN, _cAr, _uA],
|
|
766
|
-
[0, 0, () => AwsIdentity
|
|
766
|
+
[0, 0, () => AwsIdentity$, 0, 0, () => LogSourceResourceList, 64 | 0, 0, 0, 0, 0, 0, 0, 5, 5],
|
|
767
767
|
];
|
|
768
|
-
var Tag = [3, n0, _T, 0, [_k, _v], [0, 0]];
|
|
769
|
-
var TagResourceRequest = [3, n0, _TRR, 0, [_rAe, _t], [[0, 1], () => TagList]];
|
|
770
|
-
var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
771
|
-
var ThrottlingException = [
|
|
768
|
+
var Tag$ = [3, n0, _T, 0, [_k, _v], [0, 0]];
|
|
769
|
+
var TagResourceRequest$ = [3, n0, _TRR, 0, [_rAe, _t], [[0, 1], () => TagList]];
|
|
770
|
+
var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
|
|
771
|
+
var ThrottlingException$ = [
|
|
772
772
|
-3,
|
|
773
773
|
n0,
|
|
774
774
|
_TE,
|
|
@@ -776,8 +776,8 @@ var ThrottlingException = [
|
|
|
776
776
|
[_m, _sCe, _qC, _rAS],
|
|
777
777
|
[0, 0, 0, [1, { [_hH]: _RA }]],
|
|
778
778
|
];
|
|
779
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException
|
|
780
|
-
var UntagResourceRequest = [
|
|
779
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
780
|
+
var UntagResourceRequest$ = [
|
|
781
781
|
3,
|
|
782
782
|
n0,
|
|
783
783
|
_URR,
|
|
@@ -788,8 +788,8 @@ var UntagResourceRequest = [
|
|
|
788
788
|
[64 | 0, { [_hQ]: _tK }],
|
|
789
789
|
],
|
|
790
790
|
];
|
|
791
|
-
var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
792
|
-
var UpdateDataLakeExceptionSubscriptionRequest = [
|
|
791
|
+
var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
|
|
792
|
+
var UpdateDataLakeExceptionSubscriptionRequest$ = [
|
|
793
793
|
3,
|
|
794
794
|
n0,
|
|
795
795
|
_UDLESR,
|
|
@@ -797,8 +797,8 @@ var UpdateDataLakeExceptionSubscriptionRequest = [
|
|
|
797
797
|
[_sP, _nE, _eTTL],
|
|
798
798
|
[0, 0, 1],
|
|
799
799
|
];
|
|
800
|
-
var UpdateDataLakeExceptionSubscriptionResponse = [3, n0, _UDLESRp, 0, [], []];
|
|
801
|
-
var UpdateDataLakeRequest = [
|
|
800
|
+
var UpdateDataLakeExceptionSubscriptionResponse$ = [3, n0, _UDLESRp, 0, [], []];
|
|
801
|
+
var UpdateDataLakeRequest$ = [
|
|
802
802
|
3,
|
|
803
803
|
n0,
|
|
804
804
|
_UDLR,
|
|
@@ -806,309 +806,309 @@ var UpdateDataLakeRequest = [
|
|
|
806
806
|
[_con, _mSMRA],
|
|
807
807
|
[() => DataLakeConfigurationList, 0],
|
|
808
808
|
];
|
|
809
|
-
var UpdateDataLakeResponse = [3, n0, _UDLRp, 0, [_dL], [() => DataLakeResourceList]];
|
|
810
|
-
var UpdateSubscriberNotificationRequest = [
|
|
809
|
+
var UpdateDataLakeResponse$ = [3, n0, _UDLRp, 0, [_dL], [() => DataLakeResourceList]];
|
|
810
|
+
var UpdateSubscriberNotificationRequest$ = [
|
|
811
811
|
3,
|
|
812
812
|
n0,
|
|
813
813
|
_USNR,
|
|
814
814
|
0,
|
|
815
815
|
[_sI, _co],
|
|
816
|
-
[[0, 1], () => NotificationConfiguration],
|
|
816
|
+
[[0, 1], () => NotificationConfiguration$],
|
|
817
817
|
];
|
|
818
|
-
var UpdateSubscriberNotificationResponse = [3, n0, _USNRp, 0, [_sE], [0]];
|
|
819
|
-
var UpdateSubscriberRequest = [
|
|
818
|
+
var UpdateSubscriberNotificationResponse$ = [3, n0, _USNRp, 0, [_sE], [0]];
|
|
819
|
+
var UpdateSubscriberRequest$ = [
|
|
820
820
|
3,
|
|
821
821
|
n0,
|
|
822
822
|
_USR,
|
|
823
823
|
0,
|
|
824
824
|
[_sI, _sIu, _sNu, _sD, _s],
|
|
825
|
-
[[0, 1], () => AwsIdentity
|
|
825
|
+
[[0, 1], () => AwsIdentity$, 0, 0, () => LogSourceResourceList],
|
|
826
826
|
];
|
|
827
|
-
var UpdateSubscriberResponse = [3, n0, _USRp, 0, [_su], [() => SubscriberResource]];
|
|
828
|
-
var SecurityLakeServiceException = [-3, _sm, "SecurityLakeServiceException", 0, [], []];
|
|
829
|
-
schema.TypeRegistry.for(_sm).registerError(SecurityLakeServiceException
|
|
830
|
-
var AwsLogSourceConfigurationList = [1, n0, _ALSCL, 0, () => AwsLogSourceConfiguration];
|
|
831
|
-
var AwsLogSourceResourceList = [1, n0, _ALSRL, 0, () => AwsLogSourceResource];
|
|
827
|
+
var UpdateSubscriberResponse$ = [3, n0, _USRp, 0, [_su], [() => SubscriberResource$]];
|
|
828
|
+
var SecurityLakeServiceException$ = [-3, _sm, "SecurityLakeServiceException", 0, [], []];
|
|
829
|
+
schema.TypeRegistry.for(_sm).registerError(SecurityLakeServiceException$, SecurityLakeServiceException);
|
|
830
|
+
var AwsLogSourceConfigurationList = [1, n0, _ALSCL, 0, () => AwsLogSourceConfiguration$];
|
|
831
|
+
var AwsLogSourceResourceList = [1, n0, _ALSRL, 0, () => AwsLogSourceResource$];
|
|
832
832
|
var DataLakeAutoEnableNewAccountConfigurationList = [
|
|
833
833
|
1,
|
|
834
834
|
n0,
|
|
835
835
|
_DLAENACL,
|
|
836
836
|
0,
|
|
837
|
-
() => DataLakeAutoEnableNewAccountConfiguration
|
|
838
|
-
];
|
|
839
|
-
var DataLakeConfigurationList = [1, n0, _DLCL, 0, () => DataLakeConfiguration];
|
|
840
|
-
var DataLakeExceptionList = [1, n0, _DLEL, 0, () => DataLakeException];
|
|
841
|
-
var DataLakeLifecycleTransitionList = [1, n0, _DLLTL, 0, () => DataLakeLifecycleTransition];
|
|
842
|
-
var DataLakeResourceList = [1, n0, _DLRL, 0, () => DataLakeResource];
|
|
843
|
-
var DataLakeSourceList = [1, n0, _DLSL, 0, () => DataLakeSource];
|
|
844
|
-
var DataLakeSourceStatusList = [1, n0, _DLSSL, 0, () => DataLakeSourceStatus];
|
|
845
|
-
var LogSourceList = [1, n0, _LSL, 0, () => LogSource];
|
|
846
|
-
var LogSourceResourceList = [1, n0, _LSRL, 0, () => LogSourceResource];
|
|
847
|
-
var SubscriberResourceList = [1, n0, _SRL, 0, () => SubscriberResource];
|
|
848
|
-
var TagList = [1, n0, _TL, 0, () => Tag];
|
|
849
|
-
var LogSourceResource = [
|
|
837
|
+
() => DataLakeAutoEnableNewAccountConfiguration$,
|
|
838
|
+
];
|
|
839
|
+
var DataLakeConfigurationList = [1, n0, _DLCL, 0, () => DataLakeConfiguration$];
|
|
840
|
+
var DataLakeExceptionList = [1, n0, _DLEL, 0, () => DataLakeException$];
|
|
841
|
+
var DataLakeLifecycleTransitionList = [1, n0, _DLLTL, 0, () => DataLakeLifecycleTransition$];
|
|
842
|
+
var DataLakeResourceList = [1, n0, _DLRL, 0, () => DataLakeResource$];
|
|
843
|
+
var DataLakeSourceList = [1, n0, _DLSL, 0, () => DataLakeSource$];
|
|
844
|
+
var DataLakeSourceStatusList = [1, n0, _DLSSL, 0, () => DataLakeSourceStatus$];
|
|
845
|
+
var LogSourceList = [1, n0, _LSL, 0, () => LogSource$];
|
|
846
|
+
var LogSourceResourceList = [1, n0, _LSRL, 0, () => LogSourceResource$];
|
|
847
|
+
var SubscriberResourceList = [1, n0, _SRL, 0, () => SubscriberResource$];
|
|
848
|
+
var TagList = [1, n0, _TL, 0, () => Tag$];
|
|
849
|
+
var LogSourceResource$ = [
|
|
850
850
|
3,
|
|
851
851
|
n0,
|
|
852
852
|
_LSRo,
|
|
853
853
|
0,
|
|
854
854
|
[_aLS, _cLS],
|
|
855
|
-
[() => AwsLogSourceResource
|
|
855
|
+
[() => AwsLogSourceResource$, () => CustomLogSourceResource$],
|
|
856
856
|
];
|
|
857
|
-
var NotificationConfiguration = [
|
|
857
|
+
var NotificationConfiguration$ = [
|
|
858
858
|
3,
|
|
859
859
|
n0,
|
|
860
860
|
_NC,
|
|
861
861
|
0,
|
|
862
862
|
[_sNC, _hNC],
|
|
863
|
-
[() => SqsNotificationConfiguration
|
|
863
|
+
[() => SqsNotificationConfiguration$, () => HttpsNotificationConfiguration$],
|
|
864
864
|
];
|
|
865
|
-
var CreateAwsLogSource = [
|
|
865
|
+
var CreateAwsLogSource$ = [
|
|
866
866
|
9,
|
|
867
867
|
n0,
|
|
868
868
|
_CALS,
|
|
869
869
|
{ [_h]: ["POST", "/v1/datalake/logsources/aws", 200] },
|
|
870
|
-
() => CreateAwsLogSourceRequest
|
|
871
|
-
() => CreateAwsLogSourceResponse
|
|
870
|
+
() => CreateAwsLogSourceRequest$,
|
|
871
|
+
() => CreateAwsLogSourceResponse$,
|
|
872
872
|
];
|
|
873
|
-
var CreateCustomLogSource = [
|
|
873
|
+
var CreateCustomLogSource$ = [
|
|
874
874
|
9,
|
|
875
875
|
n0,
|
|
876
876
|
_CCLS,
|
|
877
877
|
{ [_h]: ["POST", "/v1/datalake/logsources/custom", 200] },
|
|
878
|
-
() => CreateCustomLogSourceRequest
|
|
879
|
-
() => CreateCustomLogSourceResponse
|
|
878
|
+
() => CreateCustomLogSourceRequest$,
|
|
879
|
+
() => CreateCustomLogSourceResponse$,
|
|
880
880
|
];
|
|
881
|
-
var CreateDataLake = [
|
|
881
|
+
var CreateDataLake$ = [
|
|
882
882
|
9,
|
|
883
883
|
n0,
|
|
884
884
|
_CDL,
|
|
885
885
|
{ [_h]: ["POST", "/v1/datalake", 200] },
|
|
886
|
-
() => CreateDataLakeRequest
|
|
887
|
-
() => CreateDataLakeResponse
|
|
886
|
+
() => CreateDataLakeRequest$,
|
|
887
|
+
() => CreateDataLakeResponse$,
|
|
888
888
|
];
|
|
889
|
-
var CreateDataLakeExceptionSubscription = [
|
|
889
|
+
var CreateDataLakeExceptionSubscription$ = [
|
|
890
890
|
9,
|
|
891
891
|
n0,
|
|
892
892
|
_CDLES,
|
|
893
893
|
{ [_h]: ["POST", "/v1/datalake/exceptions/subscription", 200] },
|
|
894
|
-
() => CreateDataLakeExceptionSubscriptionRequest
|
|
895
|
-
() => CreateDataLakeExceptionSubscriptionResponse
|
|
894
|
+
() => CreateDataLakeExceptionSubscriptionRequest$,
|
|
895
|
+
() => CreateDataLakeExceptionSubscriptionResponse$,
|
|
896
896
|
];
|
|
897
|
-
var CreateDataLakeOrganizationConfiguration = [
|
|
897
|
+
var CreateDataLakeOrganizationConfiguration$ = [
|
|
898
898
|
9,
|
|
899
899
|
n0,
|
|
900
900
|
_CDLOC,
|
|
901
901
|
{ [_h]: ["POST", "/v1/datalake/organization/configuration", 200] },
|
|
902
|
-
() => CreateDataLakeOrganizationConfigurationRequest
|
|
903
|
-
() => CreateDataLakeOrganizationConfigurationResponse
|
|
902
|
+
() => CreateDataLakeOrganizationConfigurationRequest$,
|
|
903
|
+
() => CreateDataLakeOrganizationConfigurationResponse$,
|
|
904
904
|
];
|
|
905
|
-
var CreateSubscriber = [
|
|
905
|
+
var CreateSubscriber$ = [
|
|
906
906
|
9,
|
|
907
907
|
n0,
|
|
908
908
|
_CS,
|
|
909
909
|
{ [_h]: ["POST", "/v1/subscribers", 200] },
|
|
910
|
-
() => CreateSubscriberRequest
|
|
911
|
-
() => CreateSubscriberResponse
|
|
910
|
+
() => CreateSubscriberRequest$,
|
|
911
|
+
() => CreateSubscriberResponse$,
|
|
912
912
|
];
|
|
913
|
-
var CreateSubscriberNotification = [
|
|
913
|
+
var CreateSubscriberNotification$ = [
|
|
914
914
|
9,
|
|
915
915
|
n0,
|
|
916
916
|
_CSN,
|
|
917
917
|
{ [_h]: ["POST", "/v1/subscribers/{subscriberId}/notification", 200] },
|
|
918
|
-
() => CreateSubscriberNotificationRequest
|
|
919
|
-
() => CreateSubscriberNotificationResponse
|
|
918
|
+
() => CreateSubscriberNotificationRequest$,
|
|
919
|
+
() => CreateSubscriberNotificationResponse$,
|
|
920
920
|
];
|
|
921
|
-
var DeleteAwsLogSource = [
|
|
921
|
+
var DeleteAwsLogSource$ = [
|
|
922
922
|
9,
|
|
923
923
|
n0,
|
|
924
924
|
_DALS,
|
|
925
925
|
{ [_h]: ["POST", "/v1/datalake/logsources/aws/delete", 200] },
|
|
926
|
-
() => DeleteAwsLogSourceRequest
|
|
927
|
-
() => DeleteAwsLogSourceResponse
|
|
926
|
+
() => DeleteAwsLogSourceRequest$,
|
|
927
|
+
() => DeleteAwsLogSourceResponse$,
|
|
928
928
|
];
|
|
929
|
-
var DeleteCustomLogSource = [
|
|
929
|
+
var DeleteCustomLogSource$ = [
|
|
930
930
|
9,
|
|
931
931
|
n0,
|
|
932
932
|
_DCLS,
|
|
933
933
|
{ [_h]: ["DELETE", "/v1/datalake/logsources/custom/{sourceName}", 200] },
|
|
934
|
-
() => DeleteCustomLogSourceRequest
|
|
935
|
-
() => DeleteCustomLogSourceResponse
|
|
934
|
+
() => DeleteCustomLogSourceRequest$,
|
|
935
|
+
() => DeleteCustomLogSourceResponse$,
|
|
936
936
|
];
|
|
937
|
-
var DeleteDataLake = [
|
|
937
|
+
var DeleteDataLake$ = [
|
|
938
938
|
9,
|
|
939
939
|
n0,
|
|
940
940
|
_DDL,
|
|
941
941
|
{ [_h]: ["POST", "/v1/datalake/delete", 200] },
|
|
942
|
-
() => DeleteDataLakeRequest
|
|
943
|
-
() => DeleteDataLakeResponse
|
|
942
|
+
() => DeleteDataLakeRequest$,
|
|
943
|
+
() => DeleteDataLakeResponse$,
|
|
944
944
|
];
|
|
945
|
-
var DeleteDataLakeExceptionSubscription = [
|
|
945
|
+
var DeleteDataLakeExceptionSubscription$ = [
|
|
946
946
|
9,
|
|
947
947
|
n0,
|
|
948
948
|
_DDLES,
|
|
949
949
|
{ [_h]: ["DELETE", "/v1/datalake/exceptions/subscription", 200] },
|
|
950
|
-
() => DeleteDataLakeExceptionSubscriptionRequest
|
|
951
|
-
() => DeleteDataLakeExceptionSubscriptionResponse
|
|
950
|
+
() => DeleteDataLakeExceptionSubscriptionRequest$,
|
|
951
|
+
() => DeleteDataLakeExceptionSubscriptionResponse$,
|
|
952
952
|
];
|
|
953
|
-
var DeleteDataLakeOrganizationConfiguration = [
|
|
953
|
+
var DeleteDataLakeOrganizationConfiguration$ = [
|
|
954
954
|
9,
|
|
955
955
|
n0,
|
|
956
956
|
_DDLOC,
|
|
957
957
|
{ [_h]: ["POST", "/v1/datalake/organization/configuration/delete", 200] },
|
|
958
|
-
() => DeleteDataLakeOrganizationConfigurationRequest
|
|
959
|
-
() => DeleteDataLakeOrganizationConfigurationResponse
|
|
958
|
+
() => DeleteDataLakeOrganizationConfigurationRequest$,
|
|
959
|
+
() => DeleteDataLakeOrganizationConfigurationResponse$,
|
|
960
960
|
];
|
|
961
|
-
var DeleteSubscriber = [
|
|
961
|
+
var DeleteSubscriber$ = [
|
|
962
962
|
9,
|
|
963
963
|
n0,
|
|
964
964
|
_DS,
|
|
965
965
|
{ [_h]: ["DELETE", "/v1/subscribers/{subscriberId}", 200] },
|
|
966
|
-
() => DeleteSubscriberRequest
|
|
967
|
-
() => DeleteSubscriberResponse
|
|
966
|
+
() => DeleteSubscriberRequest$,
|
|
967
|
+
() => DeleteSubscriberResponse$,
|
|
968
968
|
];
|
|
969
|
-
var DeleteSubscriberNotification = [
|
|
969
|
+
var DeleteSubscriberNotification$ = [
|
|
970
970
|
9,
|
|
971
971
|
n0,
|
|
972
972
|
_DSN,
|
|
973
973
|
{ [_h]: ["DELETE", "/v1/subscribers/{subscriberId}/notification", 200] },
|
|
974
|
-
() => DeleteSubscriberNotificationRequest
|
|
975
|
-
() => DeleteSubscriberNotificationResponse
|
|
974
|
+
() => DeleteSubscriberNotificationRequest$,
|
|
975
|
+
() => DeleteSubscriberNotificationResponse$,
|
|
976
976
|
];
|
|
977
|
-
var DeregisterDataLakeDelegatedAdministrator = [
|
|
977
|
+
var DeregisterDataLakeDelegatedAdministrator$ = [
|
|
978
978
|
9,
|
|
979
979
|
n0,
|
|
980
980
|
_DDLDA,
|
|
981
981
|
{ [_h]: ["DELETE", "/v1/datalake/delegate", 200] },
|
|
982
|
-
() => DeregisterDataLakeDelegatedAdministratorRequest
|
|
983
|
-
() => DeregisterDataLakeDelegatedAdministratorResponse
|
|
982
|
+
() => DeregisterDataLakeDelegatedAdministratorRequest$,
|
|
983
|
+
() => DeregisterDataLakeDelegatedAdministratorResponse$,
|
|
984
984
|
];
|
|
985
|
-
var GetDataLakeExceptionSubscription = [
|
|
985
|
+
var GetDataLakeExceptionSubscription$ = [
|
|
986
986
|
9,
|
|
987
987
|
n0,
|
|
988
988
|
_GDLES,
|
|
989
989
|
{ [_h]: ["GET", "/v1/datalake/exceptions/subscription", 200] },
|
|
990
|
-
() => GetDataLakeExceptionSubscriptionRequest
|
|
991
|
-
() => GetDataLakeExceptionSubscriptionResponse
|
|
990
|
+
() => GetDataLakeExceptionSubscriptionRequest$,
|
|
991
|
+
() => GetDataLakeExceptionSubscriptionResponse$,
|
|
992
992
|
];
|
|
993
|
-
var GetDataLakeOrganizationConfiguration = [
|
|
993
|
+
var GetDataLakeOrganizationConfiguration$ = [
|
|
994
994
|
9,
|
|
995
995
|
n0,
|
|
996
996
|
_GDLOC,
|
|
997
997
|
{ [_h]: ["GET", "/v1/datalake/organization/configuration", 200] },
|
|
998
|
-
() => GetDataLakeOrganizationConfigurationRequest
|
|
999
|
-
() => GetDataLakeOrganizationConfigurationResponse
|
|
998
|
+
() => GetDataLakeOrganizationConfigurationRequest$,
|
|
999
|
+
() => GetDataLakeOrganizationConfigurationResponse$,
|
|
1000
1000
|
];
|
|
1001
|
-
var GetDataLakeSources = [
|
|
1001
|
+
var GetDataLakeSources$ = [
|
|
1002
1002
|
9,
|
|
1003
1003
|
n0,
|
|
1004
1004
|
_GDLS,
|
|
1005
1005
|
{ [_h]: ["POST", "/v1/datalake/sources", 200] },
|
|
1006
|
-
() => GetDataLakeSourcesRequest
|
|
1007
|
-
() => GetDataLakeSourcesResponse
|
|
1006
|
+
() => GetDataLakeSourcesRequest$,
|
|
1007
|
+
() => GetDataLakeSourcesResponse$,
|
|
1008
1008
|
];
|
|
1009
|
-
var GetSubscriber = [
|
|
1009
|
+
var GetSubscriber$ = [
|
|
1010
1010
|
9,
|
|
1011
1011
|
n0,
|
|
1012
1012
|
_GS,
|
|
1013
1013
|
{ [_h]: ["GET", "/v1/subscribers/{subscriberId}", 200] },
|
|
1014
|
-
() => GetSubscriberRequest
|
|
1015
|
-
() => GetSubscriberResponse
|
|
1014
|
+
() => GetSubscriberRequest$,
|
|
1015
|
+
() => GetSubscriberResponse$,
|
|
1016
1016
|
];
|
|
1017
|
-
var ListDataLakeExceptions = [
|
|
1017
|
+
var ListDataLakeExceptions$ = [
|
|
1018
1018
|
9,
|
|
1019
1019
|
n0,
|
|
1020
1020
|
_LDLE,
|
|
1021
1021
|
{ [_h]: ["POST", "/v1/datalake/exceptions", 200] },
|
|
1022
|
-
() => ListDataLakeExceptionsRequest
|
|
1023
|
-
() => ListDataLakeExceptionsResponse
|
|
1022
|
+
() => ListDataLakeExceptionsRequest$,
|
|
1023
|
+
() => ListDataLakeExceptionsResponse$,
|
|
1024
1024
|
];
|
|
1025
|
-
var ListDataLakes = [
|
|
1025
|
+
var ListDataLakes$ = [
|
|
1026
1026
|
9,
|
|
1027
1027
|
n0,
|
|
1028
1028
|
_LDL,
|
|
1029
1029
|
{ [_h]: ["GET", "/v1/datalakes", 200] },
|
|
1030
|
-
() => ListDataLakesRequest
|
|
1031
|
-
() => ListDataLakesResponse
|
|
1030
|
+
() => ListDataLakesRequest$,
|
|
1031
|
+
() => ListDataLakesResponse$,
|
|
1032
1032
|
];
|
|
1033
|
-
var ListLogSources = [
|
|
1033
|
+
var ListLogSources$ = [
|
|
1034
1034
|
9,
|
|
1035
1035
|
n0,
|
|
1036
1036
|
_LLS,
|
|
1037
1037
|
{ [_h]: ["POST", "/v1/datalake/logsources/list", 200] },
|
|
1038
|
-
() => ListLogSourcesRequest
|
|
1039
|
-
() => ListLogSourcesResponse
|
|
1038
|
+
() => ListLogSourcesRequest$,
|
|
1039
|
+
() => ListLogSourcesResponse$,
|
|
1040
1040
|
];
|
|
1041
|
-
var ListSubscribers = [
|
|
1041
|
+
var ListSubscribers$ = [
|
|
1042
1042
|
9,
|
|
1043
1043
|
n0,
|
|
1044
1044
|
_LSi,
|
|
1045
1045
|
{ [_h]: ["GET", "/v1/subscribers", 200] },
|
|
1046
|
-
() => ListSubscribersRequest
|
|
1047
|
-
() => ListSubscribersResponse
|
|
1046
|
+
() => ListSubscribersRequest$,
|
|
1047
|
+
() => ListSubscribersResponse$,
|
|
1048
1048
|
];
|
|
1049
|
-
var ListTagsForResource = [
|
|
1049
|
+
var ListTagsForResource$ = [
|
|
1050
1050
|
9,
|
|
1051
1051
|
n0,
|
|
1052
1052
|
_LTFR,
|
|
1053
1053
|
{ [_h]: ["GET", "/v1/tags/{resourceArn}", 200] },
|
|
1054
|
-
() => ListTagsForResourceRequest
|
|
1055
|
-
() => ListTagsForResourceResponse
|
|
1054
|
+
() => ListTagsForResourceRequest$,
|
|
1055
|
+
() => ListTagsForResourceResponse$,
|
|
1056
1056
|
];
|
|
1057
|
-
var RegisterDataLakeDelegatedAdministrator = [
|
|
1057
|
+
var RegisterDataLakeDelegatedAdministrator$ = [
|
|
1058
1058
|
9,
|
|
1059
1059
|
n0,
|
|
1060
1060
|
_RDLDA,
|
|
1061
1061
|
{ [_h]: ["POST", "/v1/datalake/delegate", 200] },
|
|
1062
|
-
() => RegisterDataLakeDelegatedAdministratorRequest
|
|
1063
|
-
() => RegisterDataLakeDelegatedAdministratorResponse
|
|
1062
|
+
() => RegisterDataLakeDelegatedAdministratorRequest$,
|
|
1063
|
+
() => RegisterDataLakeDelegatedAdministratorResponse$,
|
|
1064
1064
|
];
|
|
1065
|
-
var TagResource = [
|
|
1065
|
+
var TagResource$ = [
|
|
1066
1066
|
9,
|
|
1067
1067
|
n0,
|
|
1068
1068
|
_TR,
|
|
1069
1069
|
{ [_h]: ["POST", "/v1/tags/{resourceArn}", 200] },
|
|
1070
|
-
() => TagResourceRequest
|
|
1071
|
-
() => TagResourceResponse
|
|
1070
|
+
() => TagResourceRequest$,
|
|
1071
|
+
() => TagResourceResponse$,
|
|
1072
1072
|
];
|
|
1073
|
-
var UntagResource = [
|
|
1073
|
+
var UntagResource$ = [
|
|
1074
1074
|
9,
|
|
1075
1075
|
n0,
|
|
1076
1076
|
_UR,
|
|
1077
1077
|
{ [_h]: ["DELETE", "/v1/tags/{resourceArn}", 200] },
|
|
1078
|
-
() => UntagResourceRequest
|
|
1079
|
-
() => UntagResourceResponse
|
|
1078
|
+
() => UntagResourceRequest$,
|
|
1079
|
+
() => UntagResourceResponse$,
|
|
1080
1080
|
];
|
|
1081
|
-
var UpdateDataLake = [
|
|
1081
|
+
var UpdateDataLake$ = [
|
|
1082
1082
|
9,
|
|
1083
1083
|
n0,
|
|
1084
1084
|
_UDL,
|
|
1085
1085
|
{ [_h]: ["PUT", "/v1/datalake", 200] },
|
|
1086
|
-
() => UpdateDataLakeRequest
|
|
1087
|
-
() => UpdateDataLakeResponse
|
|
1086
|
+
() => UpdateDataLakeRequest$,
|
|
1087
|
+
() => UpdateDataLakeResponse$,
|
|
1088
1088
|
];
|
|
1089
|
-
var UpdateDataLakeExceptionSubscription = [
|
|
1089
|
+
var UpdateDataLakeExceptionSubscription$ = [
|
|
1090
1090
|
9,
|
|
1091
1091
|
n0,
|
|
1092
1092
|
_UDLES,
|
|
1093
1093
|
{ [_h]: ["PUT", "/v1/datalake/exceptions/subscription", 200] },
|
|
1094
|
-
() => UpdateDataLakeExceptionSubscriptionRequest
|
|
1095
|
-
() => UpdateDataLakeExceptionSubscriptionResponse
|
|
1094
|
+
() => UpdateDataLakeExceptionSubscriptionRequest$,
|
|
1095
|
+
() => UpdateDataLakeExceptionSubscriptionResponse$,
|
|
1096
1096
|
];
|
|
1097
|
-
var UpdateSubscriber = [
|
|
1097
|
+
var UpdateSubscriber$ = [
|
|
1098
1098
|
9,
|
|
1099
1099
|
n0,
|
|
1100
1100
|
_US,
|
|
1101
1101
|
{ [_h]: ["PUT", "/v1/subscribers/{subscriberId}", 200] },
|
|
1102
|
-
() => UpdateSubscriberRequest
|
|
1103
|
-
() => UpdateSubscriberResponse
|
|
1102
|
+
() => UpdateSubscriberRequest$,
|
|
1103
|
+
() => UpdateSubscriberResponse$,
|
|
1104
1104
|
];
|
|
1105
|
-
var UpdateSubscriberNotification = [
|
|
1105
|
+
var UpdateSubscriberNotification$ = [
|
|
1106
1106
|
9,
|
|
1107
1107
|
n0,
|
|
1108
1108
|
_USN,
|
|
1109
1109
|
{ [_h]: ["PUT", "/v1/subscribers/{subscriberId}/notification", 200] },
|
|
1110
|
-
() => UpdateSubscriberNotificationRequest
|
|
1111
|
-
() => UpdateSubscriberNotificationResponse
|
|
1110
|
+
() => UpdateSubscriberNotificationRequest$,
|
|
1111
|
+
() => UpdateSubscriberNotificationResponse$,
|
|
1112
1112
|
];
|
|
1113
1113
|
|
|
1114
1114
|
class CreateAwsLogSourceCommand extends smithyClient.Command
|
|
@@ -1119,7 +1119,7 @@ class CreateAwsLogSourceCommand extends smithyClient.Command
|
|
|
1119
1119
|
})
|
|
1120
1120
|
.s("SecurityLake", "CreateAwsLogSource", {})
|
|
1121
1121
|
.n("SecurityLakeClient", "CreateAwsLogSourceCommand")
|
|
1122
|
-
.sc(CreateAwsLogSource)
|
|
1122
|
+
.sc(CreateAwsLogSource$)
|
|
1123
1123
|
.build() {
|
|
1124
1124
|
}
|
|
1125
1125
|
|
|
@@ -1131,7 +1131,7 @@ class CreateCustomLogSourceCommand extends smithyClient.Command
|
|
|
1131
1131
|
})
|
|
1132
1132
|
.s("SecurityLake", "CreateCustomLogSource", {})
|
|
1133
1133
|
.n("SecurityLakeClient", "CreateCustomLogSourceCommand")
|
|
1134
|
-
.sc(CreateCustomLogSource)
|
|
1134
|
+
.sc(CreateCustomLogSource$)
|
|
1135
1135
|
.build() {
|
|
1136
1136
|
}
|
|
1137
1137
|
|
|
@@ -1143,7 +1143,7 @@ class CreateDataLakeCommand extends smithyClient.Command
|
|
|
1143
1143
|
})
|
|
1144
1144
|
.s("SecurityLake", "CreateDataLake", {})
|
|
1145
1145
|
.n("SecurityLakeClient", "CreateDataLakeCommand")
|
|
1146
|
-
.sc(CreateDataLake)
|
|
1146
|
+
.sc(CreateDataLake$)
|
|
1147
1147
|
.build() {
|
|
1148
1148
|
}
|
|
1149
1149
|
|
|
@@ -1155,7 +1155,7 @@ class CreateDataLakeExceptionSubscriptionCommand extends smithyClient.Command
|
|
|
1155
1155
|
})
|
|
1156
1156
|
.s("SecurityLake", "CreateDataLakeExceptionSubscription", {})
|
|
1157
1157
|
.n("SecurityLakeClient", "CreateDataLakeExceptionSubscriptionCommand")
|
|
1158
|
-
.sc(CreateDataLakeExceptionSubscription)
|
|
1158
|
+
.sc(CreateDataLakeExceptionSubscription$)
|
|
1159
1159
|
.build() {
|
|
1160
1160
|
}
|
|
1161
1161
|
|
|
@@ -1167,7 +1167,7 @@ class CreateDataLakeOrganizationConfigurationCommand extends smithyClient.Comman
|
|
|
1167
1167
|
})
|
|
1168
1168
|
.s("SecurityLake", "CreateDataLakeOrganizationConfiguration", {})
|
|
1169
1169
|
.n("SecurityLakeClient", "CreateDataLakeOrganizationConfigurationCommand")
|
|
1170
|
-
.sc(CreateDataLakeOrganizationConfiguration)
|
|
1170
|
+
.sc(CreateDataLakeOrganizationConfiguration$)
|
|
1171
1171
|
.build() {
|
|
1172
1172
|
}
|
|
1173
1173
|
|
|
@@ -1179,7 +1179,7 @@ class CreateSubscriberCommand extends smithyClient.Command
|
|
|
1179
1179
|
})
|
|
1180
1180
|
.s("SecurityLake", "CreateSubscriber", {})
|
|
1181
1181
|
.n("SecurityLakeClient", "CreateSubscriberCommand")
|
|
1182
|
-
.sc(CreateSubscriber)
|
|
1182
|
+
.sc(CreateSubscriber$)
|
|
1183
1183
|
.build() {
|
|
1184
1184
|
}
|
|
1185
1185
|
|
|
@@ -1191,7 +1191,7 @@ class CreateSubscriberNotificationCommand extends smithyClient.Command
|
|
|
1191
1191
|
})
|
|
1192
1192
|
.s("SecurityLake", "CreateSubscriberNotification", {})
|
|
1193
1193
|
.n("SecurityLakeClient", "CreateSubscriberNotificationCommand")
|
|
1194
|
-
.sc(CreateSubscriberNotification)
|
|
1194
|
+
.sc(CreateSubscriberNotification$)
|
|
1195
1195
|
.build() {
|
|
1196
1196
|
}
|
|
1197
1197
|
|
|
@@ -1203,7 +1203,7 @@ class DeleteAwsLogSourceCommand extends smithyClient.Command
|
|
|
1203
1203
|
})
|
|
1204
1204
|
.s("SecurityLake", "DeleteAwsLogSource", {})
|
|
1205
1205
|
.n("SecurityLakeClient", "DeleteAwsLogSourceCommand")
|
|
1206
|
-
.sc(DeleteAwsLogSource)
|
|
1206
|
+
.sc(DeleteAwsLogSource$)
|
|
1207
1207
|
.build() {
|
|
1208
1208
|
}
|
|
1209
1209
|
|
|
@@ -1215,7 +1215,7 @@ class DeleteCustomLogSourceCommand extends smithyClient.Command
|
|
|
1215
1215
|
})
|
|
1216
1216
|
.s("SecurityLake", "DeleteCustomLogSource", {})
|
|
1217
1217
|
.n("SecurityLakeClient", "DeleteCustomLogSourceCommand")
|
|
1218
|
-
.sc(DeleteCustomLogSource)
|
|
1218
|
+
.sc(DeleteCustomLogSource$)
|
|
1219
1219
|
.build() {
|
|
1220
1220
|
}
|
|
1221
1221
|
|
|
@@ -1227,7 +1227,7 @@ class DeleteDataLakeCommand extends smithyClient.Command
|
|
|
1227
1227
|
})
|
|
1228
1228
|
.s("SecurityLake", "DeleteDataLake", {})
|
|
1229
1229
|
.n("SecurityLakeClient", "DeleteDataLakeCommand")
|
|
1230
|
-
.sc(DeleteDataLake)
|
|
1230
|
+
.sc(DeleteDataLake$)
|
|
1231
1231
|
.build() {
|
|
1232
1232
|
}
|
|
1233
1233
|
|
|
@@ -1239,7 +1239,7 @@ class DeleteDataLakeExceptionSubscriptionCommand extends smithyClient.Command
|
|
|
1239
1239
|
})
|
|
1240
1240
|
.s("SecurityLake", "DeleteDataLakeExceptionSubscription", {})
|
|
1241
1241
|
.n("SecurityLakeClient", "DeleteDataLakeExceptionSubscriptionCommand")
|
|
1242
|
-
.sc(DeleteDataLakeExceptionSubscription)
|
|
1242
|
+
.sc(DeleteDataLakeExceptionSubscription$)
|
|
1243
1243
|
.build() {
|
|
1244
1244
|
}
|
|
1245
1245
|
|
|
@@ -1251,7 +1251,7 @@ class DeleteDataLakeOrganizationConfigurationCommand extends smithyClient.Comman
|
|
|
1251
1251
|
})
|
|
1252
1252
|
.s("SecurityLake", "DeleteDataLakeOrganizationConfiguration", {})
|
|
1253
1253
|
.n("SecurityLakeClient", "DeleteDataLakeOrganizationConfigurationCommand")
|
|
1254
|
-
.sc(DeleteDataLakeOrganizationConfiguration)
|
|
1254
|
+
.sc(DeleteDataLakeOrganizationConfiguration$)
|
|
1255
1255
|
.build() {
|
|
1256
1256
|
}
|
|
1257
1257
|
|
|
@@ -1263,7 +1263,7 @@ class DeleteSubscriberCommand extends smithyClient.Command
|
|
|
1263
1263
|
})
|
|
1264
1264
|
.s("SecurityLake", "DeleteSubscriber", {})
|
|
1265
1265
|
.n("SecurityLakeClient", "DeleteSubscriberCommand")
|
|
1266
|
-
.sc(DeleteSubscriber)
|
|
1266
|
+
.sc(DeleteSubscriber$)
|
|
1267
1267
|
.build() {
|
|
1268
1268
|
}
|
|
1269
1269
|
|
|
@@ -1275,7 +1275,7 @@ class DeleteSubscriberNotificationCommand extends smithyClient.Command
|
|
|
1275
1275
|
})
|
|
1276
1276
|
.s("SecurityLake", "DeleteSubscriberNotification", {})
|
|
1277
1277
|
.n("SecurityLakeClient", "DeleteSubscriberNotificationCommand")
|
|
1278
|
-
.sc(DeleteSubscriberNotification)
|
|
1278
|
+
.sc(DeleteSubscriberNotification$)
|
|
1279
1279
|
.build() {
|
|
1280
1280
|
}
|
|
1281
1281
|
|
|
@@ -1287,7 +1287,7 @@ class DeregisterDataLakeDelegatedAdministratorCommand extends smithyClient.Comma
|
|
|
1287
1287
|
})
|
|
1288
1288
|
.s("SecurityLake", "DeregisterDataLakeDelegatedAdministrator", {})
|
|
1289
1289
|
.n("SecurityLakeClient", "DeregisterDataLakeDelegatedAdministratorCommand")
|
|
1290
|
-
.sc(DeregisterDataLakeDelegatedAdministrator)
|
|
1290
|
+
.sc(DeregisterDataLakeDelegatedAdministrator$)
|
|
1291
1291
|
.build() {
|
|
1292
1292
|
}
|
|
1293
1293
|
|
|
@@ -1299,7 +1299,7 @@ class GetDataLakeExceptionSubscriptionCommand extends smithyClient.Command
|
|
|
1299
1299
|
})
|
|
1300
1300
|
.s("SecurityLake", "GetDataLakeExceptionSubscription", {})
|
|
1301
1301
|
.n("SecurityLakeClient", "GetDataLakeExceptionSubscriptionCommand")
|
|
1302
|
-
.sc(GetDataLakeExceptionSubscription)
|
|
1302
|
+
.sc(GetDataLakeExceptionSubscription$)
|
|
1303
1303
|
.build() {
|
|
1304
1304
|
}
|
|
1305
1305
|
|
|
@@ -1311,7 +1311,7 @@ class GetDataLakeOrganizationConfigurationCommand extends smithyClient.Command
|
|
|
1311
1311
|
})
|
|
1312
1312
|
.s("SecurityLake", "GetDataLakeOrganizationConfiguration", {})
|
|
1313
1313
|
.n("SecurityLakeClient", "GetDataLakeOrganizationConfigurationCommand")
|
|
1314
|
-
.sc(GetDataLakeOrganizationConfiguration)
|
|
1314
|
+
.sc(GetDataLakeOrganizationConfiguration$)
|
|
1315
1315
|
.build() {
|
|
1316
1316
|
}
|
|
1317
1317
|
|
|
@@ -1323,7 +1323,7 @@ class GetDataLakeSourcesCommand extends smithyClient.Command
|
|
|
1323
1323
|
})
|
|
1324
1324
|
.s("SecurityLake", "GetDataLakeSources", {})
|
|
1325
1325
|
.n("SecurityLakeClient", "GetDataLakeSourcesCommand")
|
|
1326
|
-
.sc(GetDataLakeSources)
|
|
1326
|
+
.sc(GetDataLakeSources$)
|
|
1327
1327
|
.build() {
|
|
1328
1328
|
}
|
|
1329
1329
|
|
|
@@ -1335,7 +1335,7 @@ class GetSubscriberCommand extends smithyClient.Command
|
|
|
1335
1335
|
})
|
|
1336
1336
|
.s("SecurityLake", "GetSubscriber", {})
|
|
1337
1337
|
.n("SecurityLakeClient", "GetSubscriberCommand")
|
|
1338
|
-
.sc(GetSubscriber)
|
|
1338
|
+
.sc(GetSubscriber$)
|
|
1339
1339
|
.build() {
|
|
1340
1340
|
}
|
|
1341
1341
|
|
|
@@ -1347,7 +1347,7 @@ class ListDataLakeExceptionsCommand extends smithyClient.Command
|
|
|
1347
1347
|
})
|
|
1348
1348
|
.s("SecurityLake", "ListDataLakeExceptions", {})
|
|
1349
1349
|
.n("SecurityLakeClient", "ListDataLakeExceptionsCommand")
|
|
1350
|
-
.sc(ListDataLakeExceptions)
|
|
1350
|
+
.sc(ListDataLakeExceptions$)
|
|
1351
1351
|
.build() {
|
|
1352
1352
|
}
|
|
1353
1353
|
|
|
@@ -1359,7 +1359,7 @@ class ListDataLakesCommand extends smithyClient.Command
|
|
|
1359
1359
|
})
|
|
1360
1360
|
.s("SecurityLake", "ListDataLakes", {})
|
|
1361
1361
|
.n("SecurityLakeClient", "ListDataLakesCommand")
|
|
1362
|
-
.sc(ListDataLakes)
|
|
1362
|
+
.sc(ListDataLakes$)
|
|
1363
1363
|
.build() {
|
|
1364
1364
|
}
|
|
1365
1365
|
|
|
@@ -1371,7 +1371,7 @@ class ListLogSourcesCommand extends smithyClient.Command
|
|
|
1371
1371
|
})
|
|
1372
1372
|
.s("SecurityLake", "ListLogSources", {})
|
|
1373
1373
|
.n("SecurityLakeClient", "ListLogSourcesCommand")
|
|
1374
|
-
.sc(ListLogSources)
|
|
1374
|
+
.sc(ListLogSources$)
|
|
1375
1375
|
.build() {
|
|
1376
1376
|
}
|
|
1377
1377
|
|
|
@@ -1383,7 +1383,7 @@ class ListSubscribersCommand extends smithyClient.Command
|
|
|
1383
1383
|
})
|
|
1384
1384
|
.s("SecurityLake", "ListSubscribers", {})
|
|
1385
1385
|
.n("SecurityLakeClient", "ListSubscribersCommand")
|
|
1386
|
-
.sc(ListSubscribers)
|
|
1386
|
+
.sc(ListSubscribers$)
|
|
1387
1387
|
.build() {
|
|
1388
1388
|
}
|
|
1389
1389
|
|
|
@@ -1395,7 +1395,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1395
1395
|
})
|
|
1396
1396
|
.s("SecurityLake", "ListTagsForResource", {})
|
|
1397
1397
|
.n("SecurityLakeClient", "ListTagsForResourceCommand")
|
|
1398
|
-
.sc(ListTagsForResource)
|
|
1398
|
+
.sc(ListTagsForResource$)
|
|
1399
1399
|
.build() {
|
|
1400
1400
|
}
|
|
1401
1401
|
|
|
@@ -1407,7 +1407,7 @@ class RegisterDataLakeDelegatedAdministratorCommand extends smithyClient.Command
|
|
|
1407
1407
|
})
|
|
1408
1408
|
.s("SecurityLake", "RegisterDataLakeDelegatedAdministrator", {})
|
|
1409
1409
|
.n("SecurityLakeClient", "RegisterDataLakeDelegatedAdministratorCommand")
|
|
1410
|
-
.sc(RegisterDataLakeDelegatedAdministrator)
|
|
1410
|
+
.sc(RegisterDataLakeDelegatedAdministrator$)
|
|
1411
1411
|
.build() {
|
|
1412
1412
|
}
|
|
1413
1413
|
|
|
@@ -1419,7 +1419,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1419
1419
|
})
|
|
1420
1420
|
.s("SecurityLake", "TagResource", {})
|
|
1421
1421
|
.n("SecurityLakeClient", "TagResourceCommand")
|
|
1422
|
-
.sc(TagResource)
|
|
1422
|
+
.sc(TagResource$)
|
|
1423
1423
|
.build() {
|
|
1424
1424
|
}
|
|
1425
1425
|
|
|
@@ -1431,7 +1431,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1431
1431
|
})
|
|
1432
1432
|
.s("SecurityLake", "UntagResource", {})
|
|
1433
1433
|
.n("SecurityLakeClient", "UntagResourceCommand")
|
|
1434
|
-
.sc(UntagResource)
|
|
1434
|
+
.sc(UntagResource$)
|
|
1435
1435
|
.build() {
|
|
1436
1436
|
}
|
|
1437
1437
|
|
|
@@ -1443,7 +1443,7 @@ class UpdateDataLakeCommand extends smithyClient.Command
|
|
|
1443
1443
|
})
|
|
1444
1444
|
.s("SecurityLake", "UpdateDataLake", {})
|
|
1445
1445
|
.n("SecurityLakeClient", "UpdateDataLakeCommand")
|
|
1446
|
-
.sc(UpdateDataLake)
|
|
1446
|
+
.sc(UpdateDataLake$)
|
|
1447
1447
|
.build() {
|
|
1448
1448
|
}
|
|
1449
1449
|
|
|
@@ -1455,7 +1455,7 @@ class UpdateDataLakeExceptionSubscriptionCommand extends smithyClient.Command
|
|
|
1455
1455
|
})
|
|
1456
1456
|
.s("SecurityLake", "UpdateDataLakeExceptionSubscription", {})
|
|
1457
1457
|
.n("SecurityLakeClient", "UpdateDataLakeExceptionSubscriptionCommand")
|
|
1458
|
-
.sc(UpdateDataLakeExceptionSubscription)
|
|
1458
|
+
.sc(UpdateDataLakeExceptionSubscription$)
|
|
1459
1459
|
.build() {
|
|
1460
1460
|
}
|
|
1461
1461
|
|
|
@@ -1467,7 +1467,7 @@ class UpdateSubscriberCommand extends smithyClient.Command
|
|
|
1467
1467
|
})
|
|
1468
1468
|
.s("SecurityLake", "UpdateSubscriber", {})
|
|
1469
1469
|
.n("SecurityLakeClient", "UpdateSubscriberCommand")
|
|
1470
|
-
.sc(UpdateSubscriber)
|
|
1470
|
+
.sc(UpdateSubscriber$)
|
|
1471
1471
|
.build() {
|
|
1472
1472
|
}
|
|
1473
1473
|
|
|
@@ -1479,7 +1479,7 @@ class UpdateSubscriberNotificationCommand extends smithyClient.Command
|
|
|
1479
1479
|
})
|
|
1480
1480
|
.s("SecurityLake", "UpdateSubscriberNotification", {})
|
|
1481
1481
|
.n("SecurityLakeClient", "UpdateSubscriberNotificationCommand")
|
|
1482
|
-
.sc(UpdateSubscriberNotification)
|
|
1482
|
+
.sc(UpdateSubscriberNotification$)
|
|
1483
1483
|
.build() {
|
|
1484
1484
|
}
|
|
1485
1485
|
|
|
@@ -1572,52 +1572,180 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1572
1572
|
enumerable: true,
|
|
1573
1573
|
get: function () { return smithyClient.Client; }
|
|
1574
1574
|
});
|
|
1575
|
-
exports.AccessDeniedException = AccessDeniedException
|
|
1575
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
1576
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
1576
1577
|
exports.AccessType = AccessType;
|
|
1578
|
+
exports.AwsIdentity$ = AwsIdentity$;
|
|
1579
|
+
exports.AwsLogSourceConfiguration$ = AwsLogSourceConfiguration$;
|
|
1577
1580
|
exports.AwsLogSourceName = AwsLogSourceName;
|
|
1578
|
-
exports.
|
|
1579
|
-
exports.
|
|
1581
|
+
exports.AwsLogSourceResource$ = AwsLogSourceResource$;
|
|
1582
|
+
exports.BadRequestException = BadRequestException;
|
|
1583
|
+
exports.BadRequestException$ = BadRequestException$;
|
|
1584
|
+
exports.ConflictException = ConflictException;
|
|
1585
|
+
exports.ConflictException$ = ConflictException$;
|
|
1586
|
+
exports.CreateAwsLogSource$ = CreateAwsLogSource$;
|
|
1580
1587
|
exports.CreateAwsLogSourceCommand = CreateAwsLogSourceCommand;
|
|
1588
|
+
exports.CreateAwsLogSourceRequest$ = CreateAwsLogSourceRequest$;
|
|
1589
|
+
exports.CreateAwsLogSourceResponse$ = CreateAwsLogSourceResponse$;
|
|
1590
|
+
exports.CreateCustomLogSource$ = CreateCustomLogSource$;
|
|
1581
1591
|
exports.CreateCustomLogSourceCommand = CreateCustomLogSourceCommand;
|
|
1592
|
+
exports.CreateCustomLogSourceRequest$ = CreateCustomLogSourceRequest$;
|
|
1593
|
+
exports.CreateCustomLogSourceResponse$ = CreateCustomLogSourceResponse$;
|
|
1594
|
+
exports.CreateDataLake$ = CreateDataLake$;
|
|
1582
1595
|
exports.CreateDataLakeCommand = CreateDataLakeCommand;
|
|
1596
|
+
exports.CreateDataLakeExceptionSubscription$ = CreateDataLakeExceptionSubscription$;
|
|
1583
1597
|
exports.CreateDataLakeExceptionSubscriptionCommand = CreateDataLakeExceptionSubscriptionCommand;
|
|
1598
|
+
exports.CreateDataLakeExceptionSubscriptionRequest$ = CreateDataLakeExceptionSubscriptionRequest$;
|
|
1599
|
+
exports.CreateDataLakeExceptionSubscriptionResponse$ = CreateDataLakeExceptionSubscriptionResponse$;
|
|
1600
|
+
exports.CreateDataLakeOrganizationConfiguration$ = CreateDataLakeOrganizationConfiguration$;
|
|
1584
1601
|
exports.CreateDataLakeOrganizationConfigurationCommand = CreateDataLakeOrganizationConfigurationCommand;
|
|
1602
|
+
exports.CreateDataLakeOrganizationConfigurationRequest$ = CreateDataLakeOrganizationConfigurationRequest$;
|
|
1603
|
+
exports.CreateDataLakeOrganizationConfigurationResponse$ = CreateDataLakeOrganizationConfigurationResponse$;
|
|
1604
|
+
exports.CreateDataLakeRequest$ = CreateDataLakeRequest$;
|
|
1605
|
+
exports.CreateDataLakeResponse$ = CreateDataLakeResponse$;
|
|
1606
|
+
exports.CreateSubscriber$ = CreateSubscriber$;
|
|
1585
1607
|
exports.CreateSubscriberCommand = CreateSubscriberCommand;
|
|
1608
|
+
exports.CreateSubscriberNotification$ = CreateSubscriberNotification$;
|
|
1586
1609
|
exports.CreateSubscriberNotificationCommand = CreateSubscriberNotificationCommand;
|
|
1610
|
+
exports.CreateSubscriberNotificationRequest$ = CreateSubscriberNotificationRequest$;
|
|
1611
|
+
exports.CreateSubscriberNotificationResponse$ = CreateSubscriberNotificationResponse$;
|
|
1612
|
+
exports.CreateSubscriberRequest$ = CreateSubscriberRequest$;
|
|
1613
|
+
exports.CreateSubscriberResponse$ = CreateSubscriberResponse$;
|
|
1614
|
+
exports.CustomLogSourceAttributes$ = CustomLogSourceAttributes$;
|
|
1615
|
+
exports.CustomLogSourceConfiguration$ = CustomLogSourceConfiguration$;
|
|
1616
|
+
exports.CustomLogSourceCrawlerConfiguration$ = CustomLogSourceCrawlerConfiguration$;
|
|
1617
|
+
exports.CustomLogSourceProvider$ = CustomLogSourceProvider$;
|
|
1618
|
+
exports.CustomLogSourceResource$ = CustomLogSourceResource$;
|
|
1619
|
+
exports.DataLakeAutoEnableNewAccountConfiguration$ = DataLakeAutoEnableNewAccountConfiguration$;
|
|
1620
|
+
exports.DataLakeConfiguration$ = DataLakeConfiguration$;
|
|
1621
|
+
exports.DataLakeEncryptionConfiguration$ = DataLakeEncryptionConfiguration$;
|
|
1622
|
+
exports.DataLakeException$ = DataLakeException$;
|
|
1623
|
+
exports.DataLakeLifecycleConfiguration$ = DataLakeLifecycleConfiguration$;
|
|
1624
|
+
exports.DataLakeLifecycleExpiration$ = DataLakeLifecycleExpiration$;
|
|
1625
|
+
exports.DataLakeLifecycleTransition$ = DataLakeLifecycleTransition$;
|
|
1626
|
+
exports.DataLakeReplicationConfiguration$ = DataLakeReplicationConfiguration$;
|
|
1627
|
+
exports.DataLakeResource$ = DataLakeResource$;
|
|
1628
|
+
exports.DataLakeSource$ = DataLakeSource$;
|
|
1629
|
+
exports.DataLakeSourceStatus$ = DataLakeSourceStatus$;
|
|
1587
1630
|
exports.DataLakeStatus = DataLakeStatus;
|
|
1631
|
+
exports.DataLakeUpdateException$ = DataLakeUpdateException$;
|
|
1632
|
+
exports.DataLakeUpdateStatus$ = DataLakeUpdateStatus$;
|
|
1633
|
+
exports.DeleteAwsLogSource$ = DeleteAwsLogSource$;
|
|
1588
1634
|
exports.DeleteAwsLogSourceCommand = DeleteAwsLogSourceCommand;
|
|
1635
|
+
exports.DeleteAwsLogSourceRequest$ = DeleteAwsLogSourceRequest$;
|
|
1636
|
+
exports.DeleteAwsLogSourceResponse$ = DeleteAwsLogSourceResponse$;
|
|
1637
|
+
exports.DeleteCustomLogSource$ = DeleteCustomLogSource$;
|
|
1589
1638
|
exports.DeleteCustomLogSourceCommand = DeleteCustomLogSourceCommand;
|
|
1639
|
+
exports.DeleteCustomLogSourceRequest$ = DeleteCustomLogSourceRequest$;
|
|
1640
|
+
exports.DeleteCustomLogSourceResponse$ = DeleteCustomLogSourceResponse$;
|
|
1641
|
+
exports.DeleteDataLake$ = DeleteDataLake$;
|
|
1590
1642
|
exports.DeleteDataLakeCommand = DeleteDataLakeCommand;
|
|
1643
|
+
exports.DeleteDataLakeExceptionSubscription$ = DeleteDataLakeExceptionSubscription$;
|
|
1591
1644
|
exports.DeleteDataLakeExceptionSubscriptionCommand = DeleteDataLakeExceptionSubscriptionCommand;
|
|
1645
|
+
exports.DeleteDataLakeExceptionSubscriptionRequest$ = DeleteDataLakeExceptionSubscriptionRequest$;
|
|
1646
|
+
exports.DeleteDataLakeExceptionSubscriptionResponse$ = DeleteDataLakeExceptionSubscriptionResponse$;
|
|
1647
|
+
exports.DeleteDataLakeOrganizationConfiguration$ = DeleteDataLakeOrganizationConfiguration$;
|
|
1592
1648
|
exports.DeleteDataLakeOrganizationConfigurationCommand = DeleteDataLakeOrganizationConfigurationCommand;
|
|
1649
|
+
exports.DeleteDataLakeOrganizationConfigurationRequest$ = DeleteDataLakeOrganizationConfigurationRequest$;
|
|
1650
|
+
exports.DeleteDataLakeOrganizationConfigurationResponse$ = DeleteDataLakeOrganizationConfigurationResponse$;
|
|
1651
|
+
exports.DeleteDataLakeRequest$ = DeleteDataLakeRequest$;
|
|
1652
|
+
exports.DeleteDataLakeResponse$ = DeleteDataLakeResponse$;
|
|
1653
|
+
exports.DeleteSubscriber$ = DeleteSubscriber$;
|
|
1593
1654
|
exports.DeleteSubscriberCommand = DeleteSubscriberCommand;
|
|
1655
|
+
exports.DeleteSubscriberNotification$ = DeleteSubscriberNotification$;
|
|
1594
1656
|
exports.DeleteSubscriberNotificationCommand = DeleteSubscriberNotificationCommand;
|
|
1657
|
+
exports.DeleteSubscriberNotificationRequest$ = DeleteSubscriberNotificationRequest$;
|
|
1658
|
+
exports.DeleteSubscriberNotificationResponse$ = DeleteSubscriberNotificationResponse$;
|
|
1659
|
+
exports.DeleteSubscriberRequest$ = DeleteSubscriberRequest$;
|
|
1660
|
+
exports.DeleteSubscriberResponse$ = DeleteSubscriberResponse$;
|
|
1661
|
+
exports.DeregisterDataLakeDelegatedAdministrator$ = DeregisterDataLakeDelegatedAdministrator$;
|
|
1595
1662
|
exports.DeregisterDataLakeDelegatedAdministratorCommand = DeregisterDataLakeDelegatedAdministratorCommand;
|
|
1663
|
+
exports.DeregisterDataLakeDelegatedAdministratorRequest$ = DeregisterDataLakeDelegatedAdministratorRequest$;
|
|
1664
|
+
exports.DeregisterDataLakeDelegatedAdministratorResponse$ = DeregisterDataLakeDelegatedAdministratorResponse$;
|
|
1665
|
+
exports.GetDataLakeExceptionSubscription$ = GetDataLakeExceptionSubscription$;
|
|
1596
1666
|
exports.GetDataLakeExceptionSubscriptionCommand = GetDataLakeExceptionSubscriptionCommand;
|
|
1667
|
+
exports.GetDataLakeExceptionSubscriptionRequest$ = GetDataLakeExceptionSubscriptionRequest$;
|
|
1668
|
+
exports.GetDataLakeExceptionSubscriptionResponse$ = GetDataLakeExceptionSubscriptionResponse$;
|
|
1669
|
+
exports.GetDataLakeOrganizationConfiguration$ = GetDataLakeOrganizationConfiguration$;
|
|
1597
1670
|
exports.GetDataLakeOrganizationConfigurationCommand = GetDataLakeOrganizationConfigurationCommand;
|
|
1671
|
+
exports.GetDataLakeOrganizationConfigurationRequest$ = GetDataLakeOrganizationConfigurationRequest$;
|
|
1672
|
+
exports.GetDataLakeOrganizationConfigurationResponse$ = GetDataLakeOrganizationConfigurationResponse$;
|
|
1673
|
+
exports.GetDataLakeSources$ = GetDataLakeSources$;
|
|
1598
1674
|
exports.GetDataLakeSourcesCommand = GetDataLakeSourcesCommand;
|
|
1675
|
+
exports.GetDataLakeSourcesRequest$ = GetDataLakeSourcesRequest$;
|
|
1676
|
+
exports.GetDataLakeSourcesResponse$ = GetDataLakeSourcesResponse$;
|
|
1677
|
+
exports.GetSubscriber$ = GetSubscriber$;
|
|
1599
1678
|
exports.GetSubscriberCommand = GetSubscriberCommand;
|
|
1679
|
+
exports.GetSubscriberRequest$ = GetSubscriberRequest$;
|
|
1680
|
+
exports.GetSubscriberResponse$ = GetSubscriberResponse$;
|
|
1600
1681
|
exports.HttpMethod = HttpMethod;
|
|
1601
|
-
exports.
|
|
1682
|
+
exports.HttpsNotificationConfiguration$ = HttpsNotificationConfiguration$;
|
|
1683
|
+
exports.InternalServerException = InternalServerException;
|
|
1684
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
1685
|
+
exports.ListDataLakeExceptions$ = ListDataLakeExceptions$;
|
|
1602
1686
|
exports.ListDataLakeExceptionsCommand = ListDataLakeExceptionsCommand;
|
|
1687
|
+
exports.ListDataLakeExceptionsRequest$ = ListDataLakeExceptionsRequest$;
|
|
1688
|
+
exports.ListDataLakeExceptionsResponse$ = ListDataLakeExceptionsResponse$;
|
|
1689
|
+
exports.ListDataLakes$ = ListDataLakes$;
|
|
1603
1690
|
exports.ListDataLakesCommand = ListDataLakesCommand;
|
|
1691
|
+
exports.ListDataLakesRequest$ = ListDataLakesRequest$;
|
|
1692
|
+
exports.ListDataLakesResponse$ = ListDataLakesResponse$;
|
|
1693
|
+
exports.ListLogSources$ = ListLogSources$;
|
|
1604
1694
|
exports.ListLogSourcesCommand = ListLogSourcesCommand;
|
|
1695
|
+
exports.ListLogSourcesRequest$ = ListLogSourcesRequest$;
|
|
1696
|
+
exports.ListLogSourcesResponse$ = ListLogSourcesResponse$;
|
|
1697
|
+
exports.ListSubscribers$ = ListSubscribers$;
|
|
1605
1698
|
exports.ListSubscribersCommand = ListSubscribersCommand;
|
|
1699
|
+
exports.ListSubscribersRequest$ = ListSubscribersRequest$;
|
|
1700
|
+
exports.ListSubscribersResponse$ = ListSubscribersResponse$;
|
|
1701
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1606
1702
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1703
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1704
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1705
|
+
exports.LogSource$ = LogSource$;
|
|
1706
|
+
exports.LogSourceResource$ = LogSourceResource$;
|
|
1707
|
+
exports.NotificationConfiguration$ = NotificationConfiguration$;
|
|
1708
|
+
exports.RegisterDataLakeDelegatedAdministrator$ = RegisterDataLakeDelegatedAdministrator$;
|
|
1607
1709
|
exports.RegisterDataLakeDelegatedAdministratorCommand = RegisterDataLakeDelegatedAdministratorCommand;
|
|
1608
|
-
exports.
|
|
1710
|
+
exports.RegisterDataLakeDelegatedAdministratorRequest$ = RegisterDataLakeDelegatedAdministratorRequest$;
|
|
1711
|
+
exports.RegisterDataLakeDelegatedAdministratorResponse$ = RegisterDataLakeDelegatedAdministratorResponse$;
|
|
1712
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1713
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1609
1714
|
exports.SecurityLake = SecurityLake;
|
|
1610
1715
|
exports.SecurityLakeClient = SecurityLakeClient;
|
|
1611
|
-
exports.SecurityLakeServiceException = SecurityLakeServiceException
|
|
1716
|
+
exports.SecurityLakeServiceException = SecurityLakeServiceException;
|
|
1717
|
+
exports.SecurityLakeServiceException$ = SecurityLakeServiceException$;
|
|
1612
1718
|
exports.SourceCollectionStatus = SourceCollectionStatus;
|
|
1719
|
+
exports.SqsNotificationConfiguration$ = SqsNotificationConfiguration$;
|
|
1720
|
+
exports.SubscriberResource$ = SubscriberResource$;
|
|
1613
1721
|
exports.SubscriberStatus = SubscriberStatus;
|
|
1722
|
+
exports.Tag$ = Tag$;
|
|
1723
|
+
exports.TagResource$ = TagResource$;
|
|
1614
1724
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1615
|
-
exports.
|
|
1725
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1726
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1727
|
+
exports.ThrottlingException = ThrottlingException;
|
|
1728
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
1729
|
+
exports.UntagResource$ = UntagResource$;
|
|
1616
1730
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1731
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1732
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1733
|
+
exports.UpdateDataLake$ = UpdateDataLake$;
|
|
1617
1734
|
exports.UpdateDataLakeCommand = UpdateDataLakeCommand;
|
|
1735
|
+
exports.UpdateDataLakeExceptionSubscription$ = UpdateDataLakeExceptionSubscription$;
|
|
1618
1736
|
exports.UpdateDataLakeExceptionSubscriptionCommand = UpdateDataLakeExceptionSubscriptionCommand;
|
|
1737
|
+
exports.UpdateDataLakeExceptionSubscriptionRequest$ = UpdateDataLakeExceptionSubscriptionRequest$;
|
|
1738
|
+
exports.UpdateDataLakeExceptionSubscriptionResponse$ = UpdateDataLakeExceptionSubscriptionResponse$;
|
|
1739
|
+
exports.UpdateDataLakeRequest$ = UpdateDataLakeRequest$;
|
|
1740
|
+
exports.UpdateDataLakeResponse$ = UpdateDataLakeResponse$;
|
|
1741
|
+
exports.UpdateSubscriber$ = UpdateSubscriber$;
|
|
1619
1742
|
exports.UpdateSubscriberCommand = UpdateSubscriberCommand;
|
|
1743
|
+
exports.UpdateSubscriberNotification$ = UpdateSubscriberNotification$;
|
|
1620
1744
|
exports.UpdateSubscriberNotificationCommand = UpdateSubscriberNotificationCommand;
|
|
1745
|
+
exports.UpdateSubscriberNotificationRequest$ = UpdateSubscriberNotificationRequest$;
|
|
1746
|
+
exports.UpdateSubscriberNotificationResponse$ = UpdateSubscriberNotificationResponse$;
|
|
1747
|
+
exports.UpdateSubscriberRequest$ = UpdateSubscriberRequest$;
|
|
1748
|
+
exports.UpdateSubscriberResponse$ = UpdateSubscriberResponse$;
|
|
1621
1749
|
exports.paginateGetDataLakeSources = paginateGetDataLakeSources;
|
|
1622
1750
|
exports.paginateListDataLakeExceptions = paginateListDataLakeExceptions;
|
|
1623
1751
|
exports.paginateListLogSources = paginateListLogSources;
|