@aws-sdk/client-ssm-sap 3.490.0 → 3.496.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.
Files changed (36) hide show
  1. package/dist-cjs/SsmSap.js +1 -47
  2. package/dist-cjs/SsmSapClient.js +1 -43
  3. package/dist-cjs/commands/DeleteResourcePermissionCommand.js +1 -28
  4. package/dist-cjs/commands/DeregisterApplicationCommand.js +1 -28
  5. package/dist-cjs/commands/GetApplicationCommand.js +1 -28
  6. package/dist-cjs/commands/GetComponentCommand.js +1 -28
  7. package/dist-cjs/commands/GetDatabaseCommand.js +1 -29
  8. package/dist-cjs/commands/GetOperationCommand.js +1 -28
  9. package/dist-cjs/commands/GetResourcePermissionCommand.js +1 -28
  10. package/dist-cjs/commands/ListApplicationsCommand.js +1 -28
  11. package/dist-cjs/commands/ListComponentsCommand.js +1 -28
  12. package/dist-cjs/commands/ListDatabasesCommand.js +1 -28
  13. package/dist-cjs/commands/ListOperationsCommand.js +1 -28
  14. package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -28
  15. package/dist-cjs/commands/PutResourcePermissionCommand.js +1 -28
  16. package/dist-cjs/commands/RegisterApplicationCommand.js +1 -29
  17. package/dist-cjs/commands/StartApplicationRefreshCommand.js +1 -28
  18. package/dist-cjs/commands/TagResourceCommand.js +1 -28
  19. package/dist-cjs/commands/UntagResourceCommand.js +1 -28
  20. package/dist-cjs/commands/UpdateApplicationSettingsCommand.js +1 -29
  21. package/dist-cjs/commands/index.js +1 -21
  22. package/dist-cjs/endpoint/EndpointParameters.js +1 -18
  23. package/dist-cjs/extensionConfiguration.js +1 -2
  24. package/dist-cjs/index.js +2026 -11
  25. package/dist-cjs/models/SsmSapServiceException.js +1 -12
  26. package/dist-cjs/models/index.js +1 -4
  27. package/dist-cjs/models/models_0.js +1 -213
  28. package/dist-cjs/pagination/Interfaces.js +1 -2
  29. package/dist-cjs/pagination/ListApplicationsPaginator.js +1 -7
  30. package/dist-cjs/pagination/ListComponentsPaginator.js +1 -7
  31. package/dist-cjs/pagination/ListDatabasesPaginator.js +1 -7
  32. package/dist-cjs/pagination/ListOperationsPaginator.js +1 -7
  33. package/dist-cjs/pagination/index.js +1 -8
  34. package/dist-cjs/protocols/Aws_restJson1.js +1 -1217
  35. package/dist-cjs/runtimeExtensions.js +1 -22
  36. package/package.json +40 -40
@@ -1,47 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.SsmSap = void 0;
4
- const smithy_client_1 = require("@smithy/smithy-client");
5
- const DeleteResourcePermissionCommand_1 = require("./commands/DeleteResourcePermissionCommand");
6
- const DeregisterApplicationCommand_1 = require("./commands/DeregisterApplicationCommand");
7
- const GetApplicationCommand_1 = require("./commands/GetApplicationCommand");
8
- const GetComponentCommand_1 = require("./commands/GetComponentCommand");
9
- const GetDatabaseCommand_1 = require("./commands/GetDatabaseCommand");
10
- const GetOperationCommand_1 = require("./commands/GetOperationCommand");
11
- const GetResourcePermissionCommand_1 = require("./commands/GetResourcePermissionCommand");
12
- const ListApplicationsCommand_1 = require("./commands/ListApplicationsCommand");
13
- const ListComponentsCommand_1 = require("./commands/ListComponentsCommand");
14
- const ListDatabasesCommand_1 = require("./commands/ListDatabasesCommand");
15
- const ListOperationsCommand_1 = require("./commands/ListOperationsCommand");
16
- const ListTagsForResourceCommand_1 = require("./commands/ListTagsForResourceCommand");
17
- const PutResourcePermissionCommand_1 = require("./commands/PutResourcePermissionCommand");
18
- const RegisterApplicationCommand_1 = require("./commands/RegisterApplicationCommand");
19
- const StartApplicationRefreshCommand_1 = require("./commands/StartApplicationRefreshCommand");
20
- const TagResourceCommand_1 = require("./commands/TagResourceCommand");
21
- const UntagResourceCommand_1 = require("./commands/UntagResourceCommand");
22
- const UpdateApplicationSettingsCommand_1 = require("./commands/UpdateApplicationSettingsCommand");
23
- const SsmSapClient_1 = require("./SsmSapClient");
24
- const commands = {
25
- DeleteResourcePermissionCommand: DeleteResourcePermissionCommand_1.DeleteResourcePermissionCommand,
26
- DeregisterApplicationCommand: DeregisterApplicationCommand_1.DeregisterApplicationCommand,
27
- GetApplicationCommand: GetApplicationCommand_1.GetApplicationCommand,
28
- GetComponentCommand: GetComponentCommand_1.GetComponentCommand,
29
- GetDatabaseCommand: GetDatabaseCommand_1.GetDatabaseCommand,
30
- GetOperationCommand: GetOperationCommand_1.GetOperationCommand,
31
- GetResourcePermissionCommand: GetResourcePermissionCommand_1.GetResourcePermissionCommand,
32
- ListApplicationsCommand: ListApplicationsCommand_1.ListApplicationsCommand,
33
- ListComponentsCommand: ListComponentsCommand_1.ListComponentsCommand,
34
- ListDatabasesCommand: ListDatabasesCommand_1.ListDatabasesCommand,
35
- ListOperationsCommand: ListOperationsCommand_1.ListOperationsCommand,
36
- ListTagsForResourceCommand: ListTagsForResourceCommand_1.ListTagsForResourceCommand,
37
- PutResourcePermissionCommand: PutResourcePermissionCommand_1.PutResourcePermissionCommand,
38
- RegisterApplicationCommand: RegisterApplicationCommand_1.RegisterApplicationCommand,
39
- StartApplicationRefreshCommand: StartApplicationRefreshCommand_1.StartApplicationRefreshCommand,
40
- TagResourceCommand: TagResourceCommand_1.TagResourceCommand,
41
- UntagResourceCommand: UntagResourceCommand_1.UntagResourceCommand,
42
- UpdateApplicationSettingsCommand: UpdateApplicationSettingsCommand_1.UpdateApplicationSettingsCommand,
43
- };
44
- class SsmSap extends SsmSapClient_1.SsmSapClient {
45
- }
46
- exports.SsmSap = SsmSap;
47
- (0, smithy_client_1.createAggregatedClient)(commands, SsmSap);
1
+ module.exports = require("./index.js");
@@ -1,43 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.SsmSapClient = 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 SsmSapClient 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.SsmSapClient = SsmSapClient;
1
+ module.exports = require("./index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DeleteResourcePermissionCommand = 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 DeleteResourcePermissionCommand 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("SsmSap", "DeleteResourcePermission", {})
22
- .n("SsmSapClient", "DeleteResourcePermissionCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_DeleteResourcePermissionCommand)
25
- .de(Aws_restJson1_1.de_DeleteResourcePermissionCommand)
26
- .build() {
27
- }
28
- exports.DeleteResourcePermissionCommand = DeleteResourcePermissionCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DeregisterApplicationCommand = 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 DeregisterApplicationCommand 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("SsmSap", "DeregisterApplication", {})
22
- .n("SsmSapClient", "DeregisterApplicationCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_DeregisterApplicationCommand)
25
- .de(Aws_restJson1_1.de_DeregisterApplicationCommand)
26
- .build() {
27
- }
28
- exports.DeregisterApplicationCommand = DeregisterApplicationCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetApplicationCommand = 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 GetApplicationCommand 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("SsmSap", "GetApplication", {})
22
- .n("SsmSapClient", "GetApplicationCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_GetApplicationCommand)
25
- .de(Aws_restJson1_1.de_GetApplicationCommand)
26
- .build() {
27
- }
28
- exports.GetApplicationCommand = GetApplicationCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetComponentCommand = 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 GetComponentCommand 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("SsmSap", "GetComponent", {})
22
- .n("SsmSapClient", "GetComponentCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_GetComponentCommand)
25
- .de(Aws_restJson1_1.de_GetComponentCommand)
26
- .build() {
27
- }
28
- exports.GetComponentCommand = GetComponentCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetDatabaseCommand = 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 models_0_1 = require("../models/models_0");
10
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
11
- class GetDatabaseCommand extends smithy_client_1.Command
12
- .classBuilder()
13
- .ep({
14
- ...EndpointParameters_1.commonParams,
15
- })
16
- .m(function (Command, cs, config, o) {
17
- return [
18
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
19
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
20
- ];
21
- })
22
- .s("SsmSap", "GetDatabase", {})
23
- .n("SsmSapClient", "GetDatabaseCommand")
24
- .f(void 0, models_0_1.GetDatabaseOutputFilterSensitiveLog)
25
- .ser(Aws_restJson1_1.se_GetDatabaseCommand)
26
- .de(Aws_restJson1_1.de_GetDatabaseCommand)
27
- .build() {
28
- }
29
- exports.GetDatabaseCommand = GetDatabaseCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetOperationCommand = 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 GetOperationCommand 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("SsmSap", "GetOperation", {})
22
- .n("SsmSapClient", "GetOperationCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_GetOperationCommand)
25
- .de(Aws_restJson1_1.de_GetOperationCommand)
26
- .build() {
27
- }
28
- exports.GetOperationCommand = GetOperationCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetResourcePermissionCommand = 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 GetResourcePermissionCommand 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("SsmSap", "GetResourcePermission", {})
22
- .n("SsmSapClient", "GetResourcePermissionCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_GetResourcePermissionCommand)
25
- .de(Aws_restJson1_1.de_GetResourcePermissionCommand)
26
- .build() {
27
- }
28
- exports.GetResourcePermissionCommand = GetResourcePermissionCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListApplicationsCommand = 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 ListApplicationsCommand 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("SsmSap", "ListApplications", {})
22
- .n("SsmSapClient", "ListApplicationsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ListApplicationsCommand)
25
- .de(Aws_restJson1_1.de_ListApplicationsCommand)
26
- .build() {
27
- }
28
- exports.ListApplicationsCommand = ListApplicationsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListComponentsCommand = 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 ListComponentsCommand 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("SsmSap", "ListComponents", {})
22
- .n("SsmSapClient", "ListComponentsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ListComponentsCommand)
25
- .de(Aws_restJson1_1.de_ListComponentsCommand)
26
- .build() {
27
- }
28
- exports.ListComponentsCommand = ListComponentsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListDatabasesCommand = 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 ListDatabasesCommand 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("SsmSap", "ListDatabases", {})
22
- .n("SsmSapClient", "ListDatabasesCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ListDatabasesCommand)
25
- .de(Aws_restJson1_1.de_ListDatabasesCommand)
26
- .build() {
27
- }
28
- exports.ListDatabasesCommand = ListDatabasesCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListOperationsCommand = 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 ListOperationsCommand 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("SsmSap", "ListOperations", {})
22
- .n("SsmSapClient", "ListOperationsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ListOperationsCommand)
25
- .de(Aws_restJson1_1.de_ListOperationsCommand)
26
- .build() {
27
- }
28
- exports.ListOperationsCommand = ListOperationsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListTagsForResourceCommand = 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 ListTagsForResourceCommand 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("SsmSap", "ListTagsForResource", {})
22
- .n("SsmSapClient", "ListTagsForResourceCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ListTagsForResourceCommand)
25
- .de(Aws_restJson1_1.de_ListTagsForResourceCommand)
26
- .build() {
27
- }
28
- exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PutResourcePermissionCommand = 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 PutResourcePermissionCommand 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("SsmSap", "PutResourcePermission", {})
22
- .n("SsmSapClient", "PutResourcePermissionCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_PutResourcePermissionCommand)
25
- .de(Aws_restJson1_1.de_PutResourcePermissionCommand)
26
- .build() {
27
- }
28
- exports.PutResourcePermissionCommand = PutResourcePermissionCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.RegisterApplicationCommand = 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 models_0_1 = require("../models/models_0");
10
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
11
- class RegisterApplicationCommand extends smithy_client_1.Command
12
- .classBuilder()
13
- .ep({
14
- ...EndpointParameters_1.commonParams,
15
- })
16
- .m(function (Command, cs, config, o) {
17
- return [
18
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
19
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
20
- ];
21
- })
22
- .s("SsmSap", "RegisterApplication", {})
23
- .n("SsmSapClient", "RegisterApplicationCommand")
24
- .f(models_0_1.RegisterApplicationInputFilterSensitiveLog, void 0)
25
- .ser(Aws_restJson1_1.se_RegisterApplicationCommand)
26
- .de(Aws_restJson1_1.de_RegisterApplicationCommand)
27
- .build() {
28
- }
29
- exports.RegisterApplicationCommand = RegisterApplicationCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.StartApplicationRefreshCommand = 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 StartApplicationRefreshCommand 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("SsmSap", "StartApplicationRefresh", {})
22
- .n("SsmSapClient", "StartApplicationRefreshCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_StartApplicationRefreshCommand)
25
- .de(Aws_restJson1_1.de_StartApplicationRefreshCommand)
26
- .build() {
27
- }
28
- exports.StartApplicationRefreshCommand = StartApplicationRefreshCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.TagResourceCommand = 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 TagResourceCommand 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("SsmSap", "TagResource", {})
22
- .n("SsmSapClient", "TagResourceCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_TagResourceCommand)
25
- .de(Aws_restJson1_1.de_TagResourceCommand)
26
- .build() {
27
- }
28
- exports.TagResourceCommand = TagResourceCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UntagResourceCommand = 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 UntagResourceCommand 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("SsmSap", "UntagResource", {})
22
- .n("SsmSapClient", "UntagResourceCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_UntagResourceCommand)
25
- .de(Aws_restJson1_1.de_UntagResourceCommand)
26
- .build() {
27
- }
28
- exports.UntagResourceCommand = UntagResourceCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateApplicationSettingsCommand = 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 models_0_1 = require("../models/models_0");
10
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
11
- class UpdateApplicationSettingsCommand extends smithy_client_1.Command
12
- .classBuilder()
13
- .ep({
14
- ...EndpointParameters_1.commonParams,
15
- })
16
- .m(function (Command, cs, config, o) {
17
- return [
18
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
19
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
20
- ];
21
- })
22
- .s("SsmSap", "UpdateApplicationSettings", {})
23
- .n("SsmSapClient", "UpdateApplicationSettingsCommand")
24
- .f(models_0_1.UpdateApplicationSettingsInputFilterSensitiveLog, void 0)
25
- .ser(Aws_restJson1_1.se_UpdateApplicationSettingsCommand)
26
- .de(Aws_restJson1_1.de_UpdateApplicationSettingsCommand)
27
- .build() {
28
- }
29
- exports.UpdateApplicationSettingsCommand = UpdateApplicationSettingsCommand;
1
+ module.exports = require("../index.js");