@aws-sdk/client-securitylake 3.490.0 → 3.495.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/SecurityLake.js +1 -73
- package/dist-cjs/SecurityLakeClient.js +1 -43
- package/dist-cjs/commands/CreateAwsLogSourceCommand.js +1 -28
- package/dist-cjs/commands/CreateCustomLogSourceCommand.js +1 -28
- package/dist-cjs/commands/CreateDataLakeCommand.js +1 -28
- package/dist-cjs/commands/CreateDataLakeExceptionSubscriptionCommand.js +1 -28
- package/dist-cjs/commands/CreateDataLakeOrganizationConfigurationCommand.js +1 -28
- package/dist-cjs/commands/CreateSubscriberCommand.js +1 -28
- package/dist-cjs/commands/CreateSubscriberNotificationCommand.js +1 -28
- package/dist-cjs/commands/DeleteAwsLogSourceCommand.js +1 -28
- package/dist-cjs/commands/DeleteCustomLogSourceCommand.js +1 -28
- package/dist-cjs/commands/DeleteDataLakeCommand.js +1 -28
- package/dist-cjs/commands/DeleteDataLakeExceptionSubscriptionCommand.js +1 -28
- package/dist-cjs/commands/DeleteDataLakeOrganizationConfigurationCommand.js +1 -28
- package/dist-cjs/commands/DeleteSubscriberCommand.js +1 -28
- package/dist-cjs/commands/DeleteSubscriberNotificationCommand.js +1 -28
- package/dist-cjs/commands/DeregisterDataLakeDelegatedAdministratorCommand.js +1 -28
- package/dist-cjs/commands/GetDataLakeExceptionSubscriptionCommand.js +1 -28
- package/dist-cjs/commands/GetDataLakeOrganizationConfigurationCommand.js +1 -28
- package/dist-cjs/commands/GetDataLakeSourcesCommand.js +1 -28
- package/dist-cjs/commands/GetSubscriberCommand.js +1 -28
- package/dist-cjs/commands/ListDataLakeExceptionsCommand.js +1 -28
- package/dist-cjs/commands/ListDataLakesCommand.js +1 -28
- package/dist-cjs/commands/ListLogSourcesCommand.js +1 -28
- package/dist-cjs/commands/ListSubscribersCommand.js +1 -28
- package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -28
- package/dist-cjs/commands/RegisterDataLakeDelegatedAdministratorCommand.js +1 -28
- package/dist-cjs/commands/TagResourceCommand.js +1 -28
- package/dist-cjs/commands/UntagResourceCommand.js +1 -28
- package/dist-cjs/commands/UpdateDataLakeCommand.js +1 -28
- package/dist-cjs/commands/UpdateDataLakeExceptionSubscriptionCommand.js +1 -28
- package/dist-cjs/commands/UpdateSubscriberCommand.js +1 -28
- package/dist-cjs/commands/UpdateSubscriberNotificationCommand.js +1 -28
- package/dist-cjs/commands/index.js +1 -34
- package/dist-cjs/endpoint/EndpointParameters.js +1 -18
- package/dist-cjs/extensionConfiguration.js +1 -2
- package/dist-cjs/index.js +3066 -11
- package/dist-cjs/models/SecurityLakeServiceException.js +1 -12
- package/dist-cjs/models/index.js +1 -4
- package/dist-cjs/models/models_0.js +1 -147
- package/dist-cjs/pagination/GetDataLakeSourcesPaginator.js +1 -7
- package/dist-cjs/pagination/Interfaces.js +1 -2
- package/dist-cjs/pagination/ListDataLakeExceptionsPaginator.js +1 -7
- package/dist-cjs/pagination/ListLogSourcesPaginator.js +1 -7
- package/dist-cjs/pagination/ListSubscribersPaginator.js +1 -7
- package/dist-cjs/pagination/index.js +1 -8
- package/dist-cjs/protocols/Aws_restJson1.js +1 -2109
- package/dist-cjs/runtimeExtensions.js +1 -22
- package/package.json +40 -40
package/dist-cjs/SecurityLake.js
CHANGED
|
@@ -1,73 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SecurityLake = void 0;
|
|
4
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
-
const CreateAwsLogSourceCommand_1 = require("./commands/CreateAwsLogSourceCommand");
|
|
6
|
-
const CreateCustomLogSourceCommand_1 = require("./commands/CreateCustomLogSourceCommand");
|
|
7
|
-
const CreateDataLakeCommand_1 = require("./commands/CreateDataLakeCommand");
|
|
8
|
-
const CreateDataLakeExceptionSubscriptionCommand_1 = require("./commands/CreateDataLakeExceptionSubscriptionCommand");
|
|
9
|
-
const CreateDataLakeOrganizationConfigurationCommand_1 = require("./commands/CreateDataLakeOrganizationConfigurationCommand");
|
|
10
|
-
const CreateSubscriberCommand_1 = require("./commands/CreateSubscriberCommand");
|
|
11
|
-
const CreateSubscriberNotificationCommand_1 = require("./commands/CreateSubscriberNotificationCommand");
|
|
12
|
-
const DeleteAwsLogSourceCommand_1 = require("./commands/DeleteAwsLogSourceCommand");
|
|
13
|
-
const DeleteCustomLogSourceCommand_1 = require("./commands/DeleteCustomLogSourceCommand");
|
|
14
|
-
const DeleteDataLakeCommand_1 = require("./commands/DeleteDataLakeCommand");
|
|
15
|
-
const DeleteDataLakeExceptionSubscriptionCommand_1 = require("./commands/DeleteDataLakeExceptionSubscriptionCommand");
|
|
16
|
-
const DeleteDataLakeOrganizationConfigurationCommand_1 = require("./commands/DeleteDataLakeOrganizationConfigurationCommand");
|
|
17
|
-
const DeleteSubscriberCommand_1 = require("./commands/DeleteSubscriberCommand");
|
|
18
|
-
const DeleteSubscriberNotificationCommand_1 = require("./commands/DeleteSubscriberNotificationCommand");
|
|
19
|
-
const DeregisterDataLakeDelegatedAdministratorCommand_1 = require("./commands/DeregisterDataLakeDelegatedAdministratorCommand");
|
|
20
|
-
const GetDataLakeExceptionSubscriptionCommand_1 = require("./commands/GetDataLakeExceptionSubscriptionCommand");
|
|
21
|
-
const GetDataLakeOrganizationConfigurationCommand_1 = require("./commands/GetDataLakeOrganizationConfigurationCommand");
|
|
22
|
-
const GetDataLakeSourcesCommand_1 = require("./commands/GetDataLakeSourcesCommand");
|
|
23
|
-
const GetSubscriberCommand_1 = require("./commands/GetSubscriberCommand");
|
|
24
|
-
const ListDataLakeExceptionsCommand_1 = require("./commands/ListDataLakeExceptionsCommand");
|
|
25
|
-
const ListDataLakesCommand_1 = require("./commands/ListDataLakesCommand");
|
|
26
|
-
const ListLogSourcesCommand_1 = require("./commands/ListLogSourcesCommand");
|
|
27
|
-
const ListSubscribersCommand_1 = require("./commands/ListSubscribersCommand");
|
|
28
|
-
const ListTagsForResourceCommand_1 = require("./commands/ListTagsForResourceCommand");
|
|
29
|
-
const RegisterDataLakeDelegatedAdministratorCommand_1 = require("./commands/RegisterDataLakeDelegatedAdministratorCommand");
|
|
30
|
-
const TagResourceCommand_1 = require("./commands/TagResourceCommand");
|
|
31
|
-
const UntagResourceCommand_1 = require("./commands/UntagResourceCommand");
|
|
32
|
-
const UpdateDataLakeCommand_1 = require("./commands/UpdateDataLakeCommand");
|
|
33
|
-
const UpdateDataLakeExceptionSubscriptionCommand_1 = require("./commands/UpdateDataLakeExceptionSubscriptionCommand");
|
|
34
|
-
const UpdateSubscriberCommand_1 = require("./commands/UpdateSubscriberCommand");
|
|
35
|
-
const UpdateSubscriberNotificationCommand_1 = require("./commands/UpdateSubscriberNotificationCommand");
|
|
36
|
-
const SecurityLakeClient_1 = require("./SecurityLakeClient");
|
|
37
|
-
const commands = {
|
|
38
|
-
CreateAwsLogSourceCommand: CreateAwsLogSourceCommand_1.CreateAwsLogSourceCommand,
|
|
39
|
-
CreateCustomLogSourceCommand: CreateCustomLogSourceCommand_1.CreateCustomLogSourceCommand,
|
|
40
|
-
CreateDataLakeCommand: CreateDataLakeCommand_1.CreateDataLakeCommand,
|
|
41
|
-
CreateDataLakeExceptionSubscriptionCommand: CreateDataLakeExceptionSubscriptionCommand_1.CreateDataLakeExceptionSubscriptionCommand,
|
|
42
|
-
CreateDataLakeOrganizationConfigurationCommand: CreateDataLakeOrganizationConfigurationCommand_1.CreateDataLakeOrganizationConfigurationCommand,
|
|
43
|
-
CreateSubscriberCommand: CreateSubscriberCommand_1.CreateSubscriberCommand,
|
|
44
|
-
CreateSubscriberNotificationCommand: CreateSubscriberNotificationCommand_1.CreateSubscriberNotificationCommand,
|
|
45
|
-
DeleteAwsLogSourceCommand: DeleteAwsLogSourceCommand_1.DeleteAwsLogSourceCommand,
|
|
46
|
-
DeleteCustomLogSourceCommand: DeleteCustomLogSourceCommand_1.DeleteCustomLogSourceCommand,
|
|
47
|
-
DeleteDataLakeCommand: DeleteDataLakeCommand_1.DeleteDataLakeCommand,
|
|
48
|
-
DeleteDataLakeExceptionSubscriptionCommand: DeleteDataLakeExceptionSubscriptionCommand_1.DeleteDataLakeExceptionSubscriptionCommand,
|
|
49
|
-
DeleteDataLakeOrganizationConfigurationCommand: DeleteDataLakeOrganizationConfigurationCommand_1.DeleteDataLakeOrganizationConfigurationCommand,
|
|
50
|
-
DeleteSubscriberCommand: DeleteSubscriberCommand_1.DeleteSubscriberCommand,
|
|
51
|
-
DeleteSubscriberNotificationCommand: DeleteSubscriberNotificationCommand_1.DeleteSubscriberNotificationCommand,
|
|
52
|
-
DeregisterDataLakeDelegatedAdministratorCommand: DeregisterDataLakeDelegatedAdministratorCommand_1.DeregisterDataLakeDelegatedAdministratorCommand,
|
|
53
|
-
GetDataLakeExceptionSubscriptionCommand: GetDataLakeExceptionSubscriptionCommand_1.GetDataLakeExceptionSubscriptionCommand,
|
|
54
|
-
GetDataLakeOrganizationConfigurationCommand: GetDataLakeOrganizationConfigurationCommand_1.GetDataLakeOrganizationConfigurationCommand,
|
|
55
|
-
GetDataLakeSourcesCommand: GetDataLakeSourcesCommand_1.GetDataLakeSourcesCommand,
|
|
56
|
-
GetSubscriberCommand: GetSubscriberCommand_1.GetSubscriberCommand,
|
|
57
|
-
ListDataLakeExceptionsCommand: ListDataLakeExceptionsCommand_1.ListDataLakeExceptionsCommand,
|
|
58
|
-
ListDataLakesCommand: ListDataLakesCommand_1.ListDataLakesCommand,
|
|
59
|
-
ListLogSourcesCommand: ListLogSourcesCommand_1.ListLogSourcesCommand,
|
|
60
|
-
ListSubscribersCommand: ListSubscribersCommand_1.ListSubscribersCommand,
|
|
61
|
-
ListTagsForResourceCommand: ListTagsForResourceCommand_1.ListTagsForResourceCommand,
|
|
62
|
-
RegisterDataLakeDelegatedAdministratorCommand: RegisterDataLakeDelegatedAdministratorCommand_1.RegisterDataLakeDelegatedAdministratorCommand,
|
|
63
|
-
TagResourceCommand: TagResourceCommand_1.TagResourceCommand,
|
|
64
|
-
UntagResourceCommand: UntagResourceCommand_1.UntagResourceCommand,
|
|
65
|
-
UpdateDataLakeCommand: UpdateDataLakeCommand_1.UpdateDataLakeCommand,
|
|
66
|
-
UpdateDataLakeExceptionSubscriptionCommand: UpdateDataLakeExceptionSubscriptionCommand_1.UpdateDataLakeExceptionSubscriptionCommand,
|
|
67
|
-
UpdateSubscriberCommand: UpdateSubscriberCommand_1.UpdateSubscriberCommand,
|
|
68
|
-
UpdateSubscriberNotificationCommand: UpdateSubscriberNotificationCommand_1.UpdateSubscriberNotificationCommand,
|
|
69
|
-
};
|
|
70
|
-
class SecurityLake extends SecurityLakeClient_1.SecurityLakeClient {
|
|
71
|
-
}
|
|
72
|
-
exports.SecurityLake = SecurityLake;
|
|
73
|
-
(0, smithy_client_1.createAggregatedClient)(commands, SecurityLake);
|
|
1
|
+
module.exports = require("./index.js");
|
|
@@ -1,43 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SecurityLakeClient = exports.__Client = void 0;
|
|
4
|
-
const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
|
|
5
|
-
const middleware_logger_1 = require("@aws-sdk/middleware-logger");
|
|
6
|
-
const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
|
|
7
|
-
const middleware_signing_1 = require("@aws-sdk/middleware-signing");
|
|
8
|
-
const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
|
|
9
|
-
const config_resolver_1 = require("@smithy/config-resolver");
|
|
10
|
-
const middleware_content_length_1 = require("@smithy/middleware-content-length");
|
|
11
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
12
|
-
const middleware_retry_1 = require("@smithy/middleware-retry");
|
|
13
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
14
|
-
Object.defineProperty(exports, "__Client", { enumerable: true, get: function () { return smithy_client_1.Client; } });
|
|
15
|
-
const EndpointParameters_1 = require("./endpoint/EndpointParameters");
|
|
16
|
-
const runtimeConfig_1 = require("./runtimeConfig");
|
|
17
|
-
const runtimeExtensions_1 = require("./runtimeExtensions");
|
|
18
|
-
class SecurityLakeClient extends smithy_client_1.Client {
|
|
19
|
-
constructor(...[configuration]) {
|
|
20
|
-
const _config_0 = (0, runtimeConfig_1.getRuntimeConfig)(configuration || {});
|
|
21
|
-
const _config_1 = (0, EndpointParameters_1.resolveClientEndpointParameters)(_config_0);
|
|
22
|
-
const _config_2 = (0, config_resolver_1.resolveRegionConfig)(_config_1);
|
|
23
|
-
const _config_3 = (0, middleware_endpoint_1.resolveEndpointConfig)(_config_2);
|
|
24
|
-
const _config_4 = (0, middleware_retry_1.resolveRetryConfig)(_config_3);
|
|
25
|
-
const _config_5 = (0, middleware_host_header_1.resolveHostHeaderConfig)(_config_4);
|
|
26
|
-
const _config_6 = (0, middleware_signing_1.resolveAwsAuthConfig)(_config_5);
|
|
27
|
-
const _config_7 = (0, middleware_user_agent_1.resolveUserAgentConfig)(_config_6);
|
|
28
|
-
const _config_8 = (0, runtimeExtensions_1.resolveRuntimeExtensions)(_config_7, configuration?.extensions || []);
|
|
29
|
-
super(_config_8);
|
|
30
|
-
this.config = _config_8;
|
|
31
|
-
this.middlewareStack.use((0, middleware_retry_1.getRetryPlugin)(this.config));
|
|
32
|
-
this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
|
|
33
|
-
this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
|
|
34
|
-
this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
|
|
35
|
-
this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
|
|
36
|
-
this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
|
|
37
|
-
this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
|
|
38
|
-
}
|
|
39
|
-
destroy() {
|
|
40
|
-
super.destroy();
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
exports.SecurityLakeClient = SecurityLakeClient;
|
|
1
|
+
module.exports = require("./index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateAwsLogSourceCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class CreateAwsLogSourceCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("SecurityLake", "CreateAwsLogSource", {})
|
|
22
|
-
.n("SecurityLakeClient", "CreateAwsLogSourceCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_CreateAwsLogSourceCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_CreateAwsLogSourceCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CreateAwsLogSourceCommand = CreateAwsLogSourceCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateCustomLogSourceCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class CreateCustomLogSourceCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("SecurityLake", "CreateCustomLogSource", {})
|
|
22
|
-
.n("SecurityLakeClient", "CreateCustomLogSourceCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_CreateCustomLogSourceCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_CreateCustomLogSourceCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CreateCustomLogSourceCommand = CreateCustomLogSourceCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateDataLakeCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class CreateDataLakeCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("SecurityLake", "CreateDataLake", {})
|
|
22
|
-
.n("SecurityLakeClient", "CreateDataLakeCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_CreateDataLakeCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_CreateDataLakeCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CreateDataLakeCommand = CreateDataLakeCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateDataLakeExceptionSubscriptionCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class CreateDataLakeExceptionSubscriptionCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("SecurityLake", "CreateDataLakeExceptionSubscription", {})
|
|
22
|
-
.n("SecurityLakeClient", "CreateDataLakeExceptionSubscriptionCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_CreateDataLakeExceptionSubscriptionCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_CreateDataLakeExceptionSubscriptionCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CreateDataLakeExceptionSubscriptionCommand = CreateDataLakeExceptionSubscriptionCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateDataLakeOrganizationConfigurationCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class CreateDataLakeOrganizationConfigurationCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("SecurityLake", "CreateDataLakeOrganizationConfiguration", {})
|
|
22
|
-
.n("SecurityLakeClient", "CreateDataLakeOrganizationConfigurationCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_CreateDataLakeOrganizationConfigurationCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_CreateDataLakeOrganizationConfigurationCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CreateDataLakeOrganizationConfigurationCommand = CreateDataLakeOrganizationConfigurationCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateSubscriberCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class CreateSubscriberCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("SecurityLake", "CreateSubscriber", {})
|
|
22
|
-
.n("SecurityLakeClient", "CreateSubscriberCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_CreateSubscriberCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_CreateSubscriberCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CreateSubscriberCommand = CreateSubscriberCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateSubscriberNotificationCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class CreateSubscriberNotificationCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("SecurityLake", "CreateSubscriberNotification", {})
|
|
22
|
-
.n("SecurityLakeClient", "CreateSubscriberNotificationCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_CreateSubscriberNotificationCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_CreateSubscriberNotificationCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CreateSubscriberNotificationCommand = CreateSubscriberNotificationCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteAwsLogSourceCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class DeleteAwsLogSourceCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("SecurityLake", "DeleteAwsLogSource", {})
|
|
22
|
-
.n("SecurityLakeClient", "DeleteAwsLogSourceCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_DeleteAwsLogSourceCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_DeleteAwsLogSourceCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteAwsLogSourceCommand = DeleteAwsLogSourceCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteCustomLogSourceCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class DeleteCustomLogSourceCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("SecurityLake", "DeleteCustomLogSource", {})
|
|
22
|
-
.n("SecurityLakeClient", "DeleteCustomLogSourceCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_DeleteCustomLogSourceCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_DeleteCustomLogSourceCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteCustomLogSourceCommand = DeleteCustomLogSourceCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteDataLakeCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class DeleteDataLakeCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("SecurityLake", "DeleteDataLake", {})
|
|
22
|
-
.n("SecurityLakeClient", "DeleteDataLakeCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_DeleteDataLakeCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_DeleteDataLakeCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteDataLakeCommand = DeleteDataLakeCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteDataLakeExceptionSubscriptionCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class DeleteDataLakeExceptionSubscriptionCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("SecurityLake", "DeleteDataLakeExceptionSubscription", {})
|
|
22
|
-
.n("SecurityLakeClient", "DeleteDataLakeExceptionSubscriptionCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_DeleteDataLakeExceptionSubscriptionCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_DeleteDataLakeExceptionSubscriptionCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteDataLakeExceptionSubscriptionCommand = DeleteDataLakeExceptionSubscriptionCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteDataLakeOrganizationConfigurationCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class DeleteDataLakeOrganizationConfigurationCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("SecurityLake", "DeleteDataLakeOrganizationConfiguration", {})
|
|
22
|
-
.n("SecurityLakeClient", "DeleteDataLakeOrganizationConfigurationCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_DeleteDataLakeOrganizationConfigurationCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_DeleteDataLakeOrganizationConfigurationCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteDataLakeOrganizationConfigurationCommand = DeleteDataLakeOrganizationConfigurationCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteSubscriberCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class DeleteSubscriberCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("SecurityLake", "DeleteSubscriber", {})
|
|
22
|
-
.n("SecurityLakeClient", "DeleteSubscriberCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_DeleteSubscriberCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_DeleteSubscriberCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteSubscriberCommand = DeleteSubscriberCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteSubscriberNotificationCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class DeleteSubscriberNotificationCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("SecurityLake", "DeleteSubscriberNotification", {})
|
|
22
|
-
.n("SecurityLakeClient", "DeleteSubscriberNotificationCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_DeleteSubscriberNotificationCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_DeleteSubscriberNotificationCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteSubscriberNotificationCommand = DeleteSubscriberNotificationCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeregisterDataLakeDelegatedAdministratorCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class DeregisterDataLakeDelegatedAdministratorCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("SecurityLake", "DeregisterDataLakeDelegatedAdministrator", {})
|
|
22
|
-
.n("SecurityLakeClient", "DeregisterDataLakeDelegatedAdministratorCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_DeregisterDataLakeDelegatedAdministratorCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_DeregisterDataLakeDelegatedAdministratorCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeregisterDataLakeDelegatedAdministratorCommand = DeregisterDataLakeDelegatedAdministratorCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetDataLakeExceptionSubscriptionCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class GetDataLakeExceptionSubscriptionCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("SecurityLake", "GetDataLakeExceptionSubscription", {})
|
|
22
|
-
.n("SecurityLakeClient", "GetDataLakeExceptionSubscriptionCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_GetDataLakeExceptionSubscriptionCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_GetDataLakeExceptionSubscriptionCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.GetDataLakeExceptionSubscriptionCommand = GetDataLakeExceptionSubscriptionCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetDataLakeOrganizationConfigurationCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class GetDataLakeOrganizationConfigurationCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("SecurityLake", "GetDataLakeOrganizationConfiguration", {})
|
|
22
|
-
.n("SecurityLakeClient", "GetDataLakeOrganizationConfigurationCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_GetDataLakeOrganizationConfigurationCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_GetDataLakeOrganizationConfigurationCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.GetDataLakeOrganizationConfigurationCommand = GetDataLakeOrganizationConfigurationCommand;
|
|
1
|
+
module.exports = require("../index.js");
|