@aws-sdk/client-m2 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.
Files changed (56) hide show
  1. package/dist-cjs/M2.js +1 -77
  2. package/dist-cjs/M2Client.js +1 -43
  3. package/dist-cjs/commands/CancelBatchJobExecutionCommand.js +1 -28
  4. package/dist-cjs/commands/CreateApplicationCommand.js +1 -28
  5. package/dist-cjs/commands/CreateDataSetImportTaskCommand.js +1 -28
  6. package/dist-cjs/commands/CreateDeploymentCommand.js +1 -28
  7. package/dist-cjs/commands/CreateEnvironmentCommand.js +1 -28
  8. package/dist-cjs/commands/DeleteApplicationCommand.js +1 -28
  9. package/dist-cjs/commands/DeleteApplicationFromEnvironmentCommand.js +1 -28
  10. package/dist-cjs/commands/DeleteEnvironmentCommand.js +1 -28
  11. package/dist-cjs/commands/GetApplicationCommand.js +1 -28
  12. package/dist-cjs/commands/GetApplicationVersionCommand.js +1 -28
  13. package/dist-cjs/commands/GetBatchJobExecutionCommand.js +1 -28
  14. package/dist-cjs/commands/GetDataSetDetailsCommand.js +1 -28
  15. package/dist-cjs/commands/GetDataSetImportTaskCommand.js +1 -28
  16. package/dist-cjs/commands/GetDeploymentCommand.js +1 -28
  17. package/dist-cjs/commands/GetEnvironmentCommand.js +1 -28
  18. package/dist-cjs/commands/GetSignedBluinsightsUrlCommand.js +1 -28
  19. package/dist-cjs/commands/ListApplicationVersionsCommand.js +1 -28
  20. package/dist-cjs/commands/ListApplicationsCommand.js +1 -28
  21. package/dist-cjs/commands/ListBatchJobDefinitionsCommand.js +1 -28
  22. package/dist-cjs/commands/ListBatchJobExecutionsCommand.js +1 -28
  23. package/dist-cjs/commands/ListDataSetImportHistoryCommand.js +1 -28
  24. package/dist-cjs/commands/ListDataSetsCommand.js +1 -28
  25. package/dist-cjs/commands/ListDeploymentsCommand.js +1 -28
  26. package/dist-cjs/commands/ListEngineVersionsCommand.js +1 -28
  27. package/dist-cjs/commands/ListEnvironmentsCommand.js +1 -28
  28. package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -28
  29. package/dist-cjs/commands/StartApplicationCommand.js +1 -28
  30. package/dist-cjs/commands/StartBatchJobCommand.js +1 -28
  31. package/dist-cjs/commands/StopApplicationCommand.js +1 -28
  32. package/dist-cjs/commands/TagResourceCommand.js +1 -28
  33. package/dist-cjs/commands/UntagResourceCommand.js +1 -28
  34. package/dist-cjs/commands/UpdateApplicationCommand.js +1 -28
  35. package/dist-cjs/commands/UpdateEnvironmentCommand.js +1 -28
  36. package/dist-cjs/commands/index.js +1 -36
  37. package/dist-cjs/endpoint/EndpointParameters.js +1 -18
  38. package/dist-cjs/extensionConfiguration.js +1 -2
  39. package/dist-cjs/index.js +3675 -11
  40. package/dist-cjs/models/M2ServiceException.js +1 -12
  41. package/dist-cjs/models/index.js +1 -4
  42. package/dist-cjs/models/models_0.js +1 -306
  43. package/dist-cjs/pagination/Interfaces.js +1 -2
  44. package/dist-cjs/pagination/ListApplicationVersionsPaginator.js +1 -7
  45. package/dist-cjs/pagination/ListApplicationsPaginator.js +1 -7
  46. package/dist-cjs/pagination/ListBatchJobDefinitionsPaginator.js +1 -7
  47. package/dist-cjs/pagination/ListBatchJobExecutionsPaginator.js +1 -7
  48. package/dist-cjs/pagination/ListDataSetImportHistoryPaginator.js +1 -7
  49. package/dist-cjs/pagination/ListDataSetsPaginator.js +1 -7
  50. package/dist-cjs/pagination/ListDeploymentsPaginator.js +1 -7
  51. package/dist-cjs/pagination/ListEngineVersionsPaginator.js +1 -7
  52. package/dist-cjs/pagination/ListEnvironmentsPaginator.js +1 -7
  53. package/dist-cjs/pagination/index.js +1 -13
  54. package/dist-cjs/protocols/Aws_restJson1.js +1 -2485
  55. package/dist-cjs/runtimeExtensions.js +1 -22
  56. package/package.json +40 -40
@@ -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("AwsSupernovaControlPlaneService", "ListApplications", {})
22
- .n("M2Client", "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.ListBatchJobDefinitionsCommand = 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 ListBatchJobDefinitionsCommand 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("AwsSupernovaControlPlaneService", "ListBatchJobDefinitions", {})
22
- .n("M2Client", "ListBatchJobDefinitionsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ListBatchJobDefinitionsCommand)
25
- .de(Aws_restJson1_1.de_ListBatchJobDefinitionsCommand)
26
- .build() {
27
- }
28
- exports.ListBatchJobDefinitionsCommand = ListBatchJobDefinitionsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListBatchJobExecutionsCommand = 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 ListBatchJobExecutionsCommand 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("AwsSupernovaControlPlaneService", "ListBatchJobExecutions", {})
22
- .n("M2Client", "ListBatchJobExecutionsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ListBatchJobExecutionsCommand)
25
- .de(Aws_restJson1_1.de_ListBatchJobExecutionsCommand)
26
- .build() {
27
- }
28
- exports.ListBatchJobExecutionsCommand = ListBatchJobExecutionsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListDataSetImportHistoryCommand = 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 ListDataSetImportHistoryCommand 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("AwsSupernovaControlPlaneService", "ListDataSetImportHistory", {})
22
- .n("M2Client", "ListDataSetImportHistoryCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ListDataSetImportHistoryCommand)
25
- .de(Aws_restJson1_1.de_ListDataSetImportHistoryCommand)
26
- .build() {
27
- }
28
- exports.ListDataSetImportHistoryCommand = ListDataSetImportHistoryCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListDataSetsCommand = 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 ListDataSetsCommand 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("AwsSupernovaControlPlaneService", "ListDataSets", {})
22
- .n("M2Client", "ListDataSetsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ListDataSetsCommand)
25
- .de(Aws_restJson1_1.de_ListDataSetsCommand)
26
- .build() {
27
- }
28
- exports.ListDataSetsCommand = ListDataSetsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListDeploymentsCommand = 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 ListDeploymentsCommand 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("AwsSupernovaControlPlaneService", "ListDeployments", {})
22
- .n("M2Client", "ListDeploymentsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ListDeploymentsCommand)
25
- .de(Aws_restJson1_1.de_ListDeploymentsCommand)
26
- .build() {
27
- }
28
- exports.ListDeploymentsCommand = ListDeploymentsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListEngineVersionsCommand = 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 ListEngineVersionsCommand 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("AwsSupernovaControlPlaneService", "ListEngineVersions", {})
22
- .n("M2Client", "ListEngineVersionsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ListEngineVersionsCommand)
25
- .de(Aws_restJson1_1.de_ListEngineVersionsCommand)
26
- .build() {
27
- }
28
- exports.ListEngineVersionsCommand = ListEngineVersionsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListEnvironmentsCommand = 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 ListEnvironmentsCommand 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("AwsSupernovaControlPlaneService", "ListEnvironments", {})
22
- .n("M2Client", "ListEnvironmentsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ListEnvironmentsCommand)
25
- .de(Aws_restJson1_1.de_ListEnvironmentsCommand)
26
- .build() {
27
- }
28
- exports.ListEnvironmentsCommand = ListEnvironmentsCommand;
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("AwsSupernovaControlPlaneService", "ListTagsForResource", {})
22
- .n("M2Client", "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.StartApplicationCommand = 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 StartApplicationCommand 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("AwsSupernovaControlPlaneService", "StartApplication", {})
22
- .n("M2Client", "StartApplicationCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_StartApplicationCommand)
25
- .de(Aws_restJson1_1.de_StartApplicationCommand)
26
- .build() {
27
- }
28
- exports.StartApplicationCommand = StartApplicationCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.StartBatchJobCommand = 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 StartBatchJobCommand 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("AwsSupernovaControlPlaneService", "StartBatchJob", {})
22
- .n("M2Client", "StartBatchJobCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_StartBatchJobCommand)
25
- .de(Aws_restJson1_1.de_StartBatchJobCommand)
26
- .build() {
27
- }
28
- exports.StartBatchJobCommand = StartBatchJobCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.StopApplicationCommand = 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 StopApplicationCommand 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("AwsSupernovaControlPlaneService", "StopApplication", {})
22
- .n("M2Client", "StopApplicationCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_StopApplicationCommand)
25
- .de(Aws_restJson1_1.de_StopApplicationCommand)
26
- .build() {
27
- }
28
- exports.StopApplicationCommand = StopApplicationCommand;
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("AwsSupernovaControlPlaneService", "TagResource", {})
22
- .n("M2Client", "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("AwsSupernovaControlPlaneService", "UntagResource", {})
22
- .n("M2Client", "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,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateApplicationCommand = 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 UpdateApplicationCommand 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("AwsSupernovaControlPlaneService", "UpdateApplication", {})
22
- .n("M2Client", "UpdateApplicationCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_UpdateApplicationCommand)
25
- .de(Aws_restJson1_1.de_UpdateApplicationCommand)
26
- .build() {
27
- }
28
- exports.UpdateApplicationCommand = UpdateApplicationCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateEnvironmentCommand = 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 UpdateEnvironmentCommand 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("AwsSupernovaControlPlaneService", "UpdateEnvironment", {})
22
- .n("M2Client", "UpdateEnvironmentCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_UpdateEnvironmentCommand)
25
- .de(Aws_restJson1_1.de_UpdateEnvironmentCommand)
26
- .build() {
27
- }
28
- exports.UpdateEnvironmentCommand = UpdateEnvironmentCommand;
1
+ module.exports = require("../index.js");
@@ -1,36 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./CancelBatchJobExecutionCommand"), exports);
5
- tslib_1.__exportStar(require("./CreateApplicationCommand"), exports);
6
- tslib_1.__exportStar(require("./CreateDataSetImportTaskCommand"), exports);
7
- tslib_1.__exportStar(require("./CreateDeploymentCommand"), exports);
8
- tslib_1.__exportStar(require("./CreateEnvironmentCommand"), exports);
9
- tslib_1.__exportStar(require("./DeleteApplicationCommand"), exports);
10
- tslib_1.__exportStar(require("./DeleteApplicationFromEnvironmentCommand"), exports);
11
- tslib_1.__exportStar(require("./DeleteEnvironmentCommand"), exports);
12
- tslib_1.__exportStar(require("./GetApplicationCommand"), exports);
13
- tslib_1.__exportStar(require("./GetApplicationVersionCommand"), exports);
14
- tslib_1.__exportStar(require("./GetBatchJobExecutionCommand"), exports);
15
- tslib_1.__exportStar(require("./GetDataSetDetailsCommand"), exports);
16
- tslib_1.__exportStar(require("./GetDataSetImportTaskCommand"), exports);
17
- tslib_1.__exportStar(require("./GetDeploymentCommand"), exports);
18
- tslib_1.__exportStar(require("./GetEnvironmentCommand"), exports);
19
- tslib_1.__exportStar(require("./GetSignedBluinsightsUrlCommand"), exports);
20
- tslib_1.__exportStar(require("./ListApplicationVersionsCommand"), exports);
21
- tslib_1.__exportStar(require("./ListApplicationsCommand"), exports);
22
- tslib_1.__exportStar(require("./ListBatchJobDefinitionsCommand"), exports);
23
- tslib_1.__exportStar(require("./ListBatchJobExecutionsCommand"), exports);
24
- tslib_1.__exportStar(require("./ListDataSetImportHistoryCommand"), exports);
25
- tslib_1.__exportStar(require("./ListDataSetsCommand"), exports);
26
- tslib_1.__exportStar(require("./ListDeploymentsCommand"), exports);
27
- tslib_1.__exportStar(require("./ListEngineVersionsCommand"), exports);
28
- tslib_1.__exportStar(require("./ListEnvironmentsCommand"), exports);
29
- tslib_1.__exportStar(require("./ListTagsForResourceCommand"), exports);
30
- tslib_1.__exportStar(require("./StartApplicationCommand"), exports);
31
- tslib_1.__exportStar(require("./StartBatchJobCommand"), exports);
32
- tslib_1.__exportStar(require("./StopApplicationCommand"), exports);
33
- tslib_1.__exportStar(require("./TagResourceCommand"), exports);
34
- tslib_1.__exportStar(require("./UntagResourceCommand"), exports);
35
- tslib_1.__exportStar(require("./UpdateApplicationCommand"), exports);
36
- tslib_1.__exportStar(require("./UpdateEnvironmentCommand"), exports);
1
+ module.exports = require("../index.js");
@@ -1,18 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.commonParams = exports.resolveClientEndpointParameters = void 0;
4
- const resolveClientEndpointParameters = (options) => {
5
- return {
6
- ...options,
7
- useDualstackEndpoint: options.useDualstackEndpoint ?? false,
8
- useFipsEndpoint: options.useFipsEndpoint ?? false,
9
- defaultSigningName: "m2",
10
- };
11
- };
12
- exports.resolveClientEndpointParameters = resolveClientEndpointParameters;
13
- exports.commonParams = {
14
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
15
- Endpoint: { type: "builtInParams", name: "endpoint" },
16
- Region: { type: "builtInParams", name: "region" },
17
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
18
- };
1
+ module.exports = require("../index.js");
@@ -1,2 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ module.exports = require("./index.js");