@aws-sdk/client-iotthingsgraph 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 (59) hide show
  1. package/dist-cjs/IoTThingsGraph.js +1 -81
  2. package/dist-cjs/IoTThingsGraphClient.js +1 -43
  3. package/dist-cjs/commands/AssociateEntityToThingCommand.js +1 -28
  4. package/dist-cjs/commands/CreateFlowTemplateCommand.js +1 -28
  5. package/dist-cjs/commands/CreateSystemInstanceCommand.js +1 -28
  6. package/dist-cjs/commands/CreateSystemTemplateCommand.js +1 -28
  7. package/dist-cjs/commands/DeleteFlowTemplateCommand.js +1 -28
  8. package/dist-cjs/commands/DeleteNamespaceCommand.js +1 -28
  9. package/dist-cjs/commands/DeleteSystemInstanceCommand.js +1 -28
  10. package/dist-cjs/commands/DeleteSystemTemplateCommand.js +1 -28
  11. package/dist-cjs/commands/DeploySystemInstanceCommand.js +1 -28
  12. package/dist-cjs/commands/DeprecateFlowTemplateCommand.js +1 -28
  13. package/dist-cjs/commands/DeprecateSystemTemplateCommand.js +1 -28
  14. package/dist-cjs/commands/DescribeNamespaceCommand.js +1 -28
  15. package/dist-cjs/commands/DissociateEntityFromThingCommand.js +1 -28
  16. package/dist-cjs/commands/GetEntitiesCommand.js +1 -28
  17. package/dist-cjs/commands/GetFlowTemplateCommand.js +1 -28
  18. package/dist-cjs/commands/GetFlowTemplateRevisionsCommand.js +1 -28
  19. package/dist-cjs/commands/GetNamespaceDeletionStatusCommand.js +1 -28
  20. package/dist-cjs/commands/GetSystemInstanceCommand.js +1 -28
  21. package/dist-cjs/commands/GetSystemTemplateCommand.js +1 -28
  22. package/dist-cjs/commands/GetSystemTemplateRevisionsCommand.js +1 -28
  23. package/dist-cjs/commands/GetUploadStatusCommand.js +1 -28
  24. package/dist-cjs/commands/ListFlowExecutionMessagesCommand.js +1 -28
  25. package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -28
  26. package/dist-cjs/commands/SearchEntitiesCommand.js +1 -28
  27. package/dist-cjs/commands/SearchFlowExecutionsCommand.js +1 -28
  28. package/dist-cjs/commands/SearchFlowTemplatesCommand.js +1 -28
  29. package/dist-cjs/commands/SearchSystemInstancesCommand.js +1 -28
  30. package/dist-cjs/commands/SearchSystemTemplatesCommand.js +1 -28
  31. package/dist-cjs/commands/SearchThingsCommand.js +1 -28
  32. package/dist-cjs/commands/TagResourceCommand.js +1 -28
  33. package/dist-cjs/commands/UndeploySystemInstanceCommand.js +1 -28
  34. package/dist-cjs/commands/UntagResourceCommand.js +1 -28
  35. package/dist-cjs/commands/UpdateFlowTemplateCommand.js +1 -28
  36. package/dist-cjs/commands/UpdateSystemTemplateCommand.js +1 -28
  37. package/dist-cjs/commands/UploadEntityDefinitionsCommand.js +1 -28
  38. package/dist-cjs/commands/index.js +1 -38
  39. package/dist-cjs/endpoint/EndpointParameters.js +1 -18
  40. package/dist-cjs/extensionConfiguration.js +1 -2
  41. package/dist-cjs/index.js +3175 -11
  42. package/dist-cjs/models/IoTThingsGraphServiceException.js +1 -12
  43. package/dist-cjs/models/index.js +1 -4
  44. package/dist-cjs/models/models_0.js +1 -179
  45. package/dist-cjs/pagination/GetFlowTemplateRevisionsPaginator.js +1 -7
  46. package/dist-cjs/pagination/GetSystemTemplateRevisionsPaginator.js +1 -7
  47. package/dist-cjs/pagination/Interfaces.js +1 -2
  48. package/dist-cjs/pagination/ListFlowExecutionMessagesPaginator.js +1 -7
  49. package/dist-cjs/pagination/ListTagsForResourcePaginator.js +1 -7
  50. package/dist-cjs/pagination/SearchEntitiesPaginator.js +1 -7
  51. package/dist-cjs/pagination/SearchFlowExecutionsPaginator.js +1 -7
  52. package/dist-cjs/pagination/SearchFlowTemplatesPaginator.js +1 -7
  53. package/dist-cjs/pagination/SearchSystemInstancesPaginator.js +1 -7
  54. package/dist-cjs/pagination/SearchSystemTemplatesPaginator.js +1 -7
  55. package/dist-cjs/pagination/SearchThingsPaginator.js +1 -7
  56. package/dist-cjs/pagination/index.js +1 -14
  57. package/dist-cjs/protocols/Aws_json1_1.js +1 -2100
  58. package/dist-cjs/runtimeExtensions.js +1 -22
  59. package/package.json +40 -40
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetNamespaceDeletionStatusCommand = 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_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class GetNamespaceDeletionStatusCommand 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("IotThingsGraphFrontEndService", "GetNamespaceDeletionStatus", {})
22
- .n("IoTThingsGraphClient", "GetNamespaceDeletionStatusCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_GetNamespaceDeletionStatusCommand)
25
- .de(Aws_json1_1_1.de_GetNamespaceDeletionStatusCommand)
26
- .build() {
27
- }
28
- exports.GetNamespaceDeletionStatusCommand = GetNamespaceDeletionStatusCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetSystemInstanceCommand = 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_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class GetSystemInstanceCommand 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("IotThingsGraphFrontEndService", "GetSystemInstance", {})
22
- .n("IoTThingsGraphClient", "GetSystemInstanceCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_GetSystemInstanceCommand)
25
- .de(Aws_json1_1_1.de_GetSystemInstanceCommand)
26
- .build() {
27
- }
28
- exports.GetSystemInstanceCommand = GetSystemInstanceCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetSystemTemplateCommand = 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_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class GetSystemTemplateCommand 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("IotThingsGraphFrontEndService", "GetSystemTemplate", {})
22
- .n("IoTThingsGraphClient", "GetSystemTemplateCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_GetSystemTemplateCommand)
25
- .de(Aws_json1_1_1.de_GetSystemTemplateCommand)
26
- .build() {
27
- }
28
- exports.GetSystemTemplateCommand = GetSystemTemplateCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetSystemTemplateRevisionsCommand = 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_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class GetSystemTemplateRevisionsCommand 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("IotThingsGraphFrontEndService", "GetSystemTemplateRevisions", {})
22
- .n("IoTThingsGraphClient", "GetSystemTemplateRevisionsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_GetSystemTemplateRevisionsCommand)
25
- .de(Aws_json1_1_1.de_GetSystemTemplateRevisionsCommand)
26
- .build() {
27
- }
28
- exports.GetSystemTemplateRevisionsCommand = GetSystemTemplateRevisionsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetUploadStatusCommand = 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_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class GetUploadStatusCommand 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("IotThingsGraphFrontEndService", "GetUploadStatus", {})
22
- .n("IoTThingsGraphClient", "GetUploadStatusCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_GetUploadStatusCommand)
25
- .de(Aws_json1_1_1.de_GetUploadStatusCommand)
26
- .build() {
27
- }
28
- exports.GetUploadStatusCommand = GetUploadStatusCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListFlowExecutionMessagesCommand = 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_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class ListFlowExecutionMessagesCommand 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("IotThingsGraphFrontEndService", "ListFlowExecutionMessages", {})
22
- .n("IoTThingsGraphClient", "ListFlowExecutionMessagesCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_ListFlowExecutionMessagesCommand)
25
- .de(Aws_json1_1_1.de_ListFlowExecutionMessagesCommand)
26
- .build() {
27
- }
28
- exports.ListFlowExecutionMessagesCommand = ListFlowExecutionMessagesCommand;
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_json1_1_1 = require("../protocols/Aws_json1_1");
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("IotThingsGraphFrontEndService", "ListTagsForResource", {})
22
- .n("IoTThingsGraphClient", "ListTagsForResourceCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_ListTagsForResourceCommand)
25
- .de(Aws_json1_1_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.SearchEntitiesCommand = 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_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class SearchEntitiesCommand 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("IotThingsGraphFrontEndService", "SearchEntities", {})
22
- .n("IoTThingsGraphClient", "SearchEntitiesCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_SearchEntitiesCommand)
25
- .de(Aws_json1_1_1.de_SearchEntitiesCommand)
26
- .build() {
27
- }
28
- exports.SearchEntitiesCommand = SearchEntitiesCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.SearchFlowExecutionsCommand = 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_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class SearchFlowExecutionsCommand 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("IotThingsGraphFrontEndService", "SearchFlowExecutions", {})
22
- .n("IoTThingsGraphClient", "SearchFlowExecutionsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_SearchFlowExecutionsCommand)
25
- .de(Aws_json1_1_1.de_SearchFlowExecutionsCommand)
26
- .build() {
27
- }
28
- exports.SearchFlowExecutionsCommand = SearchFlowExecutionsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.SearchFlowTemplatesCommand = 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_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class SearchFlowTemplatesCommand 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("IotThingsGraphFrontEndService", "SearchFlowTemplates", {})
22
- .n("IoTThingsGraphClient", "SearchFlowTemplatesCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_SearchFlowTemplatesCommand)
25
- .de(Aws_json1_1_1.de_SearchFlowTemplatesCommand)
26
- .build() {
27
- }
28
- exports.SearchFlowTemplatesCommand = SearchFlowTemplatesCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.SearchSystemInstancesCommand = 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_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class SearchSystemInstancesCommand 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("IotThingsGraphFrontEndService", "SearchSystemInstances", {})
22
- .n("IoTThingsGraphClient", "SearchSystemInstancesCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_SearchSystemInstancesCommand)
25
- .de(Aws_json1_1_1.de_SearchSystemInstancesCommand)
26
- .build() {
27
- }
28
- exports.SearchSystemInstancesCommand = SearchSystemInstancesCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.SearchSystemTemplatesCommand = 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_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class SearchSystemTemplatesCommand 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("IotThingsGraphFrontEndService", "SearchSystemTemplates", {})
22
- .n("IoTThingsGraphClient", "SearchSystemTemplatesCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_SearchSystemTemplatesCommand)
25
- .de(Aws_json1_1_1.de_SearchSystemTemplatesCommand)
26
- .build() {
27
- }
28
- exports.SearchSystemTemplatesCommand = SearchSystemTemplatesCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.SearchThingsCommand = 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_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class SearchThingsCommand 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("IotThingsGraphFrontEndService", "SearchThings", {})
22
- .n("IoTThingsGraphClient", "SearchThingsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_SearchThingsCommand)
25
- .de(Aws_json1_1_1.de_SearchThingsCommand)
26
- .build() {
27
- }
28
- exports.SearchThingsCommand = SearchThingsCommand;
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_json1_1_1 = require("../protocols/Aws_json1_1");
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("IotThingsGraphFrontEndService", "TagResource", {})
22
- .n("IoTThingsGraphClient", "TagResourceCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_TagResourceCommand)
25
- .de(Aws_json1_1_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.UndeploySystemInstanceCommand = 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_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class UndeploySystemInstanceCommand 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("IotThingsGraphFrontEndService", "UndeploySystemInstance", {})
22
- .n("IoTThingsGraphClient", "UndeploySystemInstanceCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_UndeploySystemInstanceCommand)
25
- .de(Aws_json1_1_1.de_UndeploySystemInstanceCommand)
26
- .build() {
27
- }
28
- exports.UndeploySystemInstanceCommand = UndeploySystemInstanceCommand;
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_json1_1_1 = require("../protocols/Aws_json1_1");
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("IotThingsGraphFrontEndService", "UntagResource", {})
22
- .n("IoTThingsGraphClient", "UntagResourceCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_UntagResourceCommand)
25
- .de(Aws_json1_1_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.UpdateFlowTemplateCommand = 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_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class UpdateFlowTemplateCommand 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("IotThingsGraphFrontEndService", "UpdateFlowTemplate", {})
22
- .n("IoTThingsGraphClient", "UpdateFlowTemplateCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_UpdateFlowTemplateCommand)
25
- .de(Aws_json1_1_1.de_UpdateFlowTemplateCommand)
26
- .build() {
27
- }
28
- exports.UpdateFlowTemplateCommand = UpdateFlowTemplateCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateSystemTemplateCommand = 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_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class UpdateSystemTemplateCommand 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("IotThingsGraphFrontEndService", "UpdateSystemTemplate", {})
22
- .n("IoTThingsGraphClient", "UpdateSystemTemplateCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_UpdateSystemTemplateCommand)
25
- .de(Aws_json1_1_1.de_UpdateSystemTemplateCommand)
26
- .build() {
27
- }
28
- exports.UpdateSystemTemplateCommand = UpdateSystemTemplateCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UploadEntityDefinitionsCommand = 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_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class UploadEntityDefinitionsCommand 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("IotThingsGraphFrontEndService", "UploadEntityDefinitions", {})
22
- .n("IoTThingsGraphClient", "UploadEntityDefinitionsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_UploadEntityDefinitionsCommand)
25
- .de(Aws_json1_1_1.de_UploadEntityDefinitionsCommand)
26
- .build() {
27
- }
28
- exports.UploadEntityDefinitionsCommand = UploadEntityDefinitionsCommand;
1
+ module.exports = require("../index.js");
@@ -1,38 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./AssociateEntityToThingCommand"), exports);
5
- tslib_1.__exportStar(require("./CreateFlowTemplateCommand"), exports);
6
- tslib_1.__exportStar(require("./CreateSystemInstanceCommand"), exports);
7
- tslib_1.__exportStar(require("./CreateSystemTemplateCommand"), exports);
8
- tslib_1.__exportStar(require("./DeleteFlowTemplateCommand"), exports);
9
- tslib_1.__exportStar(require("./DeleteNamespaceCommand"), exports);
10
- tslib_1.__exportStar(require("./DeleteSystemInstanceCommand"), exports);
11
- tslib_1.__exportStar(require("./DeleteSystemTemplateCommand"), exports);
12
- tslib_1.__exportStar(require("./DeploySystemInstanceCommand"), exports);
13
- tslib_1.__exportStar(require("./DeprecateFlowTemplateCommand"), exports);
14
- tslib_1.__exportStar(require("./DeprecateSystemTemplateCommand"), exports);
15
- tslib_1.__exportStar(require("./DescribeNamespaceCommand"), exports);
16
- tslib_1.__exportStar(require("./DissociateEntityFromThingCommand"), exports);
17
- tslib_1.__exportStar(require("./GetEntitiesCommand"), exports);
18
- tslib_1.__exportStar(require("./GetFlowTemplateCommand"), exports);
19
- tslib_1.__exportStar(require("./GetFlowTemplateRevisionsCommand"), exports);
20
- tslib_1.__exportStar(require("./GetNamespaceDeletionStatusCommand"), exports);
21
- tslib_1.__exportStar(require("./GetSystemInstanceCommand"), exports);
22
- tslib_1.__exportStar(require("./GetSystemTemplateCommand"), exports);
23
- tslib_1.__exportStar(require("./GetSystemTemplateRevisionsCommand"), exports);
24
- tslib_1.__exportStar(require("./GetUploadStatusCommand"), exports);
25
- tslib_1.__exportStar(require("./ListFlowExecutionMessagesCommand"), exports);
26
- tslib_1.__exportStar(require("./ListTagsForResourceCommand"), exports);
27
- tslib_1.__exportStar(require("./SearchEntitiesCommand"), exports);
28
- tslib_1.__exportStar(require("./SearchFlowExecutionsCommand"), exports);
29
- tslib_1.__exportStar(require("./SearchFlowTemplatesCommand"), exports);
30
- tslib_1.__exportStar(require("./SearchSystemInstancesCommand"), exports);
31
- tslib_1.__exportStar(require("./SearchSystemTemplatesCommand"), exports);
32
- tslib_1.__exportStar(require("./SearchThingsCommand"), exports);
33
- tslib_1.__exportStar(require("./TagResourceCommand"), exports);
34
- tslib_1.__exportStar(require("./UndeploySystemInstanceCommand"), exports);
35
- tslib_1.__exportStar(require("./UntagResourceCommand"), exports);
36
- tslib_1.__exportStar(require("./UpdateFlowTemplateCommand"), exports);
37
- tslib_1.__exportStar(require("./UpdateSystemTemplateCommand"), exports);
38
- tslib_1.__exportStar(require("./UploadEntityDefinitionsCommand"), 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: "iotthingsgraph",
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");