@aws-sdk/client-tnb 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 (52) hide show
  1. package/dist-cjs/Tnb.js +1 -77
  2. package/dist-cjs/TnbClient.js +1 -43
  3. package/dist-cjs/commands/CancelSolNetworkOperationCommand.js +1 -28
  4. package/dist-cjs/commands/CreateSolFunctionPackageCommand.js +1 -29
  5. package/dist-cjs/commands/CreateSolNetworkInstanceCommand.js +1 -29
  6. package/dist-cjs/commands/CreateSolNetworkPackageCommand.js +1 -29
  7. package/dist-cjs/commands/DeleteSolFunctionPackageCommand.js +1 -28
  8. package/dist-cjs/commands/DeleteSolNetworkInstanceCommand.js +1 -28
  9. package/dist-cjs/commands/DeleteSolNetworkPackageCommand.js +1 -28
  10. package/dist-cjs/commands/GetSolFunctionInstanceCommand.js +1 -29
  11. package/dist-cjs/commands/GetSolFunctionPackageCommand.js +1 -29
  12. package/dist-cjs/commands/GetSolFunctionPackageContentCommand.js +1 -28
  13. package/dist-cjs/commands/GetSolFunctionPackageDescriptorCommand.js +1 -28
  14. package/dist-cjs/commands/GetSolNetworkInstanceCommand.js +1 -29
  15. package/dist-cjs/commands/GetSolNetworkOperationCommand.js +1 -29
  16. package/dist-cjs/commands/GetSolNetworkPackageCommand.js +1 -29
  17. package/dist-cjs/commands/GetSolNetworkPackageContentCommand.js +1 -28
  18. package/dist-cjs/commands/GetSolNetworkPackageDescriptorCommand.js +1 -28
  19. package/dist-cjs/commands/InstantiateSolNetworkInstanceCommand.js +1 -29
  20. package/dist-cjs/commands/ListSolFunctionInstancesCommand.js +1 -28
  21. package/dist-cjs/commands/ListSolFunctionPackagesCommand.js +1 -28
  22. package/dist-cjs/commands/ListSolNetworkInstancesCommand.js +1 -28
  23. package/dist-cjs/commands/ListSolNetworkOperationsCommand.js +1 -28
  24. package/dist-cjs/commands/ListSolNetworkPackagesCommand.js +1 -28
  25. package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -29
  26. package/dist-cjs/commands/PutSolFunctionPackageContentCommand.js +1 -28
  27. package/dist-cjs/commands/PutSolNetworkPackageContentCommand.js +1 -28
  28. package/dist-cjs/commands/TagResourceCommand.js +1 -29
  29. package/dist-cjs/commands/TerminateSolNetworkInstanceCommand.js +1 -29
  30. package/dist-cjs/commands/UntagResourceCommand.js +1 -28
  31. package/dist-cjs/commands/UpdateSolFunctionPackageCommand.js +1 -28
  32. package/dist-cjs/commands/UpdateSolNetworkInstanceCommand.js +1 -29
  33. package/dist-cjs/commands/UpdateSolNetworkPackageCommand.js +1 -28
  34. package/dist-cjs/commands/ValidateSolFunctionPackageContentCommand.js +1 -28
  35. package/dist-cjs/commands/ValidateSolNetworkPackageContentCommand.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 +3458 -11
  40. package/dist-cjs/models/TnbServiceException.js +1 -12
  41. package/dist-cjs/models/index.js +1 -4
  42. package/dist-cjs/models/models_0.js +1 -252
  43. package/dist-cjs/pagination/Interfaces.js +1 -2
  44. package/dist-cjs/pagination/ListSolFunctionInstancesPaginator.js +1 -7
  45. package/dist-cjs/pagination/ListSolFunctionPackagesPaginator.js +1 -7
  46. package/dist-cjs/pagination/ListSolNetworkInstancesPaginator.js +1 -7
  47. package/dist-cjs/pagination/ListSolNetworkOperationsPaginator.js +1 -7
  48. package/dist-cjs/pagination/ListSolNetworkPackagesPaginator.js +1 -7
  49. package/dist-cjs/pagination/index.js +1 -9
  50. package/dist-cjs/protocols/Aws_restJson1.js +1 -2346
  51. package/dist-cjs/runtimeExtensions.js +1 -22
  52. package/package.json +41 -41
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.InstantiateSolNetworkInstanceCommand = 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 InstantiateSolNetworkInstanceCommand 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("TNB", "InstantiateSolNetworkInstance", {})
23
- .n("TnbClient", "InstantiateSolNetworkInstanceCommand")
24
- .f(models_0_1.InstantiateSolNetworkInstanceInputFilterSensitiveLog, models_0_1.InstantiateSolNetworkInstanceOutputFilterSensitiveLog)
25
- .ser(Aws_restJson1_1.se_InstantiateSolNetworkInstanceCommand)
26
- .de(Aws_restJson1_1.de_InstantiateSolNetworkInstanceCommand)
27
- .build() {
28
- }
29
- exports.InstantiateSolNetworkInstanceCommand = InstantiateSolNetworkInstanceCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListSolFunctionInstancesCommand = 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 ListSolFunctionInstancesCommand 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("TNB", "ListSolFunctionInstances", {})
22
- .n("TnbClient", "ListSolFunctionInstancesCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ListSolFunctionInstancesCommand)
25
- .de(Aws_restJson1_1.de_ListSolFunctionInstancesCommand)
26
- .build() {
27
- }
28
- exports.ListSolFunctionInstancesCommand = ListSolFunctionInstancesCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListSolFunctionPackagesCommand = 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 ListSolFunctionPackagesCommand 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("TNB", "ListSolFunctionPackages", {})
22
- .n("TnbClient", "ListSolFunctionPackagesCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ListSolFunctionPackagesCommand)
25
- .de(Aws_restJson1_1.de_ListSolFunctionPackagesCommand)
26
- .build() {
27
- }
28
- exports.ListSolFunctionPackagesCommand = ListSolFunctionPackagesCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListSolNetworkInstancesCommand = 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 ListSolNetworkInstancesCommand 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("TNB", "ListSolNetworkInstances", {})
22
- .n("TnbClient", "ListSolNetworkInstancesCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ListSolNetworkInstancesCommand)
25
- .de(Aws_restJson1_1.de_ListSolNetworkInstancesCommand)
26
- .build() {
27
- }
28
- exports.ListSolNetworkInstancesCommand = ListSolNetworkInstancesCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListSolNetworkOperationsCommand = 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 ListSolNetworkOperationsCommand 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("TNB", "ListSolNetworkOperations", {})
22
- .n("TnbClient", "ListSolNetworkOperationsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ListSolNetworkOperationsCommand)
25
- .de(Aws_restJson1_1.de_ListSolNetworkOperationsCommand)
26
- .build() {
27
- }
28
- exports.ListSolNetworkOperationsCommand = ListSolNetworkOperationsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListSolNetworkPackagesCommand = 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 ListSolNetworkPackagesCommand 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("TNB", "ListSolNetworkPackages", {})
22
- .n("TnbClient", "ListSolNetworkPackagesCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ListSolNetworkPackagesCommand)
25
- .de(Aws_restJson1_1.de_ListSolNetworkPackagesCommand)
26
- .build() {
27
- }
28
- exports.ListSolNetworkPackagesCommand = ListSolNetworkPackagesCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +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 models_0_1 = require("../models/models_0");
10
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
11
- class ListTagsForResourceCommand 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("TNB", "ListTagsForResource", {})
23
- .n("TnbClient", "ListTagsForResourceCommand")
24
- .f(void 0, models_0_1.ListTagsForResourceOutputFilterSensitiveLog)
25
- .ser(Aws_restJson1_1.se_ListTagsForResourceCommand)
26
- .de(Aws_restJson1_1.de_ListTagsForResourceCommand)
27
- .build() {
28
- }
29
- exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PutSolFunctionPackageContentCommand = 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 PutSolFunctionPackageContentCommand 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("TNB", "PutSolFunctionPackageContent", {})
22
- .n("TnbClient", "PutSolFunctionPackageContentCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_PutSolFunctionPackageContentCommand)
25
- .de(Aws_restJson1_1.de_PutSolFunctionPackageContentCommand)
26
- .build() {
27
- }
28
- exports.PutSolFunctionPackageContentCommand = PutSolFunctionPackageContentCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PutSolNetworkPackageContentCommand = 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 PutSolNetworkPackageContentCommand 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("TNB", "PutSolNetworkPackageContent", {})
22
- .n("TnbClient", "PutSolNetworkPackageContentCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_PutSolNetworkPackageContentCommand)
25
- .de(Aws_restJson1_1.de_PutSolNetworkPackageContentCommand)
26
- .build() {
27
- }
28
- exports.PutSolNetworkPackageContentCommand = PutSolNetworkPackageContentCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +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 models_0_1 = require("../models/models_0");
10
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
11
- class TagResourceCommand 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("TNB", "TagResource", {})
23
- .n("TnbClient", "TagResourceCommand")
24
- .f(models_0_1.TagResourceInputFilterSensitiveLog, void 0)
25
- .ser(Aws_restJson1_1.se_TagResourceCommand)
26
- .de(Aws_restJson1_1.de_TagResourceCommand)
27
- .build() {
28
- }
29
- exports.TagResourceCommand = TagResourceCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.TerminateSolNetworkInstanceCommand = 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 TerminateSolNetworkInstanceCommand 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("TNB", "TerminateSolNetworkInstance", {})
23
- .n("TnbClient", "TerminateSolNetworkInstanceCommand")
24
- .f(models_0_1.TerminateSolNetworkInstanceInputFilterSensitiveLog, models_0_1.TerminateSolNetworkInstanceOutputFilterSensitiveLog)
25
- .ser(Aws_restJson1_1.se_TerminateSolNetworkInstanceCommand)
26
- .de(Aws_restJson1_1.de_TerminateSolNetworkInstanceCommand)
27
- .build() {
28
- }
29
- exports.TerminateSolNetworkInstanceCommand = TerminateSolNetworkInstanceCommand;
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("TNB", "UntagResource", {})
22
- .n("TnbClient", "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.UpdateSolFunctionPackageCommand = 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 UpdateSolFunctionPackageCommand 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("TNB", "UpdateSolFunctionPackage", {})
22
- .n("TnbClient", "UpdateSolFunctionPackageCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_UpdateSolFunctionPackageCommand)
25
- .de(Aws_restJson1_1.de_UpdateSolFunctionPackageCommand)
26
- .build() {
27
- }
28
- exports.UpdateSolFunctionPackageCommand = UpdateSolFunctionPackageCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateSolNetworkInstanceCommand = 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 UpdateSolNetworkInstanceCommand 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("TNB", "UpdateSolNetworkInstance", {})
23
- .n("TnbClient", "UpdateSolNetworkInstanceCommand")
24
- .f(models_0_1.UpdateSolNetworkInstanceInputFilterSensitiveLog, models_0_1.UpdateSolNetworkInstanceOutputFilterSensitiveLog)
25
- .ser(Aws_restJson1_1.se_UpdateSolNetworkInstanceCommand)
26
- .de(Aws_restJson1_1.de_UpdateSolNetworkInstanceCommand)
27
- .build() {
28
- }
29
- exports.UpdateSolNetworkInstanceCommand = UpdateSolNetworkInstanceCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateSolNetworkPackageCommand = 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 UpdateSolNetworkPackageCommand 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("TNB", "UpdateSolNetworkPackage", {})
22
- .n("TnbClient", "UpdateSolNetworkPackageCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_UpdateSolNetworkPackageCommand)
25
- .de(Aws_restJson1_1.de_UpdateSolNetworkPackageCommand)
26
- .build() {
27
- }
28
- exports.UpdateSolNetworkPackageCommand = UpdateSolNetworkPackageCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ValidateSolFunctionPackageContentCommand = 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 ValidateSolFunctionPackageContentCommand 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("TNB", "ValidateSolFunctionPackageContent", {})
22
- .n("TnbClient", "ValidateSolFunctionPackageContentCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ValidateSolFunctionPackageContentCommand)
25
- .de(Aws_restJson1_1.de_ValidateSolFunctionPackageContentCommand)
26
- .build() {
27
- }
28
- exports.ValidateSolFunctionPackageContentCommand = ValidateSolFunctionPackageContentCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ValidateSolNetworkPackageContentCommand = 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 ValidateSolNetworkPackageContentCommand 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("TNB", "ValidateSolNetworkPackageContent", {})
22
- .n("TnbClient", "ValidateSolNetworkPackageContentCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ValidateSolNetworkPackageContentCommand)
25
- .de(Aws_restJson1_1.de_ValidateSolNetworkPackageContentCommand)
26
- .build() {
27
- }
28
- exports.ValidateSolNetworkPackageContentCommand = ValidateSolNetworkPackageContentCommand;
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("./CancelSolNetworkOperationCommand"), exports);
5
- tslib_1.__exportStar(require("./CreateSolFunctionPackageCommand"), exports);
6
- tslib_1.__exportStar(require("./CreateSolNetworkInstanceCommand"), exports);
7
- tslib_1.__exportStar(require("./CreateSolNetworkPackageCommand"), exports);
8
- tslib_1.__exportStar(require("./DeleteSolFunctionPackageCommand"), exports);
9
- tslib_1.__exportStar(require("./DeleteSolNetworkInstanceCommand"), exports);
10
- tslib_1.__exportStar(require("./DeleteSolNetworkPackageCommand"), exports);
11
- tslib_1.__exportStar(require("./GetSolFunctionInstanceCommand"), exports);
12
- tslib_1.__exportStar(require("./GetSolFunctionPackageCommand"), exports);
13
- tslib_1.__exportStar(require("./GetSolFunctionPackageContentCommand"), exports);
14
- tslib_1.__exportStar(require("./GetSolFunctionPackageDescriptorCommand"), exports);
15
- tslib_1.__exportStar(require("./GetSolNetworkInstanceCommand"), exports);
16
- tslib_1.__exportStar(require("./GetSolNetworkOperationCommand"), exports);
17
- tslib_1.__exportStar(require("./GetSolNetworkPackageCommand"), exports);
18
- tslib_1.__exportStar(require("./GetSolNetworkPackageContentCommand"), exports);
19
- tslib_1.__exportStar(require("./GetSolNetworkPackageDescriptorCommand"), exports);
20
- tslib_1.__exportStar(require("./InstantiateSolNetworkInstanceCommand"), exports);
21
- tslib_1.__exportStar(require("./ListSolFunctionInstancesCommand"), exports);
22
- tslib_1.__exportStar(require("./ListSolFunctionPackagesCommand"), exports);
23
- tslib_1.__exportStar(require("./ListSolNetworkInstancesCommand"), exports);
24
- tslib_1.__exportStar(require("./ListSolNetworkOperationsCommand"), exports);
25
- tslib_1.__exportStar(require("./ListSolNetworkPackagesCommand"), exports);
26
- tslib_1.__exportStar(require("./ListTagsForResourceCommand"), exports);
27
- tslib_1.__exportStar(require("./PutSolFunctionPackageContentCommand"), exports);
28
- tslib_1.__exportStar(require("./PutSolNetworkPackageContentCommand"), exports);
29
- tslib_1.__exportStar(require("./TagResourceCommand"), exports);
30
- tslib_1.__exportStar(require("./TerminateSolNetworkInstanceCommand"), exports);
31
- tslib_1.__exportStar(require("./UntagResourceCommand"), exports);
32
- tslib_1.__exportStar(require("./UpdateSolFunctionPackageCommand"), exports);
33
- tslib_1.__exportStar(require("./UpdateSolNetworkInstanceCommand"), exports);
34
- tslib_1.__exportStar(require("./UpdateSolNetworkPackageCommand"), exports);
35
- tslib_1.__exportStar(require("./ValidateSolFunctionPackageContentCommand"), exports);
36
- tslib_1.__exportStar(require("./ValidateSolNetworkPackageContentCommand"), 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: "tnb",
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");