@aws-sdk/client-iotthingsgraph 3.183.0 → 3.186.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 (58) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/dist-cjs/protocols/Aws_json1_1.js +2 -2
  3. package/dist-es/IoTThingsGraph.js +149 -142
  4. package/dist-es/IoTThingsGraphClient.js +28 -22
  5. package/dist-es/commands/AssociateEntityToThingCommand.js +28 -21
  6. package/dist-es/commands/CreateFlowTemplateCommand.js +28 -21
  7. package/dist-es/commands/CreateSystemInstanceCommand.js +28 -21
  8. package/dist-es/commands/CreateSystemTemplateCommand.js +28 -21
  9. package/dist-es/commands/DeleteFlowTemplateCommand.js +28 -21
  10. package/dist-es/commands/DeleteNamespaceCommand.js +28 -21
  11. package/dist-es/commands/DeleteSystemInstanceCommand.js +28 -21
  12. package/dist-es/commands/DeleteSystemTemplateCommand.js +28 -21
  13. package/dist-es/commands/DeploySystemInstanceCommand.js +28 -21
  14. package/dist-es/commands/DeprecateFlowTemplateCommand.js +28 -21
  15. package/dist-es/commands/DeprecateSystemTemplateCommand.js +28 -21
  16. package/dist-es/commands/DescribeNamespaceCommand.js +28 -21
  17. package/dist-es/commands/DissociateEntityFromThingCommand.js +28 -21
  18. package/dist-es/commands/GetEntitiesCommand.js +28 -21
  19. package/dist-es/commands/GetFlowTemplateCommand.js +28 -21
  20. package/dist-es/commands/GetFlowTemplateRevisionsCommand.js +28 -21
  21. package/dist-es/commands/GetNamespaceDeletionStatusCommand.js +28 -21
  22. package/dist-es/commands/GetSystemInstanceCommand.js +28 -21
  23. package/dist-es/commands/GetSystemTemplateCommand.js +28 -21
  24. package/dist-es/commands/GetSystemTemplateRevisionsCommand.js +28 -21
  25. package/dist-es/commands/GetUploadStatusCommand.js +28 -21
  26. package/dist-es/commands/ListFlowExecutionMessagesCommand.js +28 -21
  27. package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
  28. package/dist-es/commands/SearchEntitiesCommand.js +28 -21
  29. package/dist-es/commands/SearchFlowExecutionsCommand.js +28 -21
  30. package/dist-es/commands/SearchFlowTemplatesCommand.js +28 -21
  31. package/dist-es/commands/SearchSystemInstancesCommand.js +28 -21
  32. package/dist-es/commands/SearchSystemTemplatesCommand.js +28 -21
  33. package/dist-es/commands/SearchThingsCommand.js +28 -21
  34. package/dist-es/commands/TagResourceCommand.js +28 -21
  35. package/dist-es/commands/UndeploySystemInstanceCommand.js +28 -21
  36. package/dist-es/commands/UntagResourceCommand.js +28 -21
  37. package/dist-es/commands/UpdateFlowTemplateCommand.js +28 -21
  38. package/dist-es/commands/UpdateSystemTemplateCommand.js +28 -21
  39. package/dist-es/commands/UploadEntityDefinitionsCommand.js +28 -21
  40. package/dist-es/endpoints.js +8 -8
  41. package/dist-es/models/IoTThingsGraphServiceException.js +10 -5
  42. package/dist-es/models/models_0.js +166 -341
  43. package/dist-es/pagination/GetFlowTemplateRevisionsPaginator.js +68 -25
  44. package/dist-es/pagination/GetSystemTemplateRevisionsPaginator.js +68 -25
  45. package/dist-es/pagination/ListFlowExecutionMessagesPaginator.js +68 -25
  46. package/dist-es/pagination/ListTagsForResourcePaginator.js +68 -25
  47. package/dist-es/pagination/SearchEntitiesPaginator.js +68 -25
  48. package/dist-es/pagination/SearchFlowExecutionsPaginator.js +68 -25
  49. package/dist-es/pagination/SearchFlowTemplatesPaginator.js +68 -25
  50. package/dist-es/pagination/SearchSystemInstancesPaginator.js +68 -25
  51. package/dist-es/pagination/SearchSystemTemplatesPaginator.js +68 -25
  52. package/dist-es/pagination/SearchThingsPaginator.js +68 -25
  53. package/dist-es/protocols/Aws_json1_1.js +2918 -2228
  54. package/dist-es/runtimeConfig.browser.js +12 -26
  55. package/dist-es/runtimeConfig.js +12 -30
  56. package/dist-es/runtimeConfig.native.js +5 -8
  57. package/dist-es/runtimeConfig.shared.js +11 -8
  58. package/package.json +33 -33
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { GetSystemTemplateRevisionsRequestFilterSensitiveLog, GetSystemTemplateRevisionsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1GetSystemTemplateRevisionsCommand, serializeAws_json1_1GetSystemTemplateRevisionsCommand, } from "../protocols/Aws_json1_1";
5
- export class GetSystemTemplateRevisionsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var GetSystemTemplateRevisionsCommand = (function (_super) {
7
+ __extends(GetSystemTemplateRevisionsCommand, _super);
8
+ function GetSystemTemplateRevisionsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ GetSystemTemplateRevisionsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "IoTThingsGraphClient";
15
- const commandName = "GetSystemTemplateRevisionsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "IoTThingsGraphClient";
18
+ var commandName = "GetSystemTemplateRevisionsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: GetSystemTemplateRevisionsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: GetSystemTemplateRevisionsResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ GetSystemTemplateRevisionsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1GetSystemTemplateRevisionsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ GetSystemTemplateRevisionsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1GetSystemTemplateRevisionsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return GetSystemTemplateRevisionsCommand;
38
+ }($Command));
39
+ export { GetSystemTemplateRevisionsCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { GetUploadStatusRequestFilterSensitiveLog, GetUploadStatusResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1GetUploadStatusCommand, serializeAws_json1_1GetUploadStatusCommand, } from "../protocols/Aws_json1_1";
5
- export class GetUploadStatusCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var GetUploadStatusCommand = (function (_super) {
7
+ __extends(GetUploadStatusCommand, _super);
8
+ function GetUploadStatusCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ GetUploadStatusCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "IoTThingsGraphClient";
15
- const commandName = "GetUploadStatusCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "IoTThingsGraphClient";
18
+ var commandName = "GetUploadStatusCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: GetUploadStatusRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: GetUploadStatusResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ GetUploadStatusCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1GetUploadStatusCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ GetUploadStatusCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1GetUploadStatusCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return GetUploadStatusCommand;
38
+ }($Command));
39
+ export { GetUploadStatusCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { ListFlowExecutionMessagesRequestFilterSensitiveLog, ListFlowExecutionMessagesResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1ListFlowExecutionMessagesCommand, serializeAws_json1_1ListFlowExecutionMessagesCommand, } from "../protocols/Aws_json1_1";
5
- export class ListFlowExecutionMessagesCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListFlowExecutionMessagesCommand = (function (_super) {
7
+ __extends(ListFlowExecutionMessagesCommand, _super);
8
+ function ListFlowExecutionMessagesCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListFlowExecutionMessagesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "IoTThingsGraphClient";
15
- const commandName = "ListFlowExecutionMessagesCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "IoTThingsGraphClient";
18
+ var commandName = "ListFlowExecutionMessagesCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListFlowExecutionMessagesRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListFlowExecutionMessagesResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListFlowExecutionMessagesCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1ListFlowExecutionMessagesCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListFlowExecutionMessagesCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1ListFlowExecutionMessagesCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListFlowExecutionMessagesCommand;
38
+ }($Command));
39
+ export { ListFlowExecutionMessagesCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { ListTagsForResourceRequestFilterSensitiveLog, ListTagsForResourceResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1ListTagsForResourceCommand, serializeAws_json1_1ListTagsForResourceCommand, } from "../protocols/Aws_json1_1";
5
- export class ListTagsForResourceCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListTagsForResourceCommand = (function (_super) {
7
+ __extends(ListTagsForResourceCommand, _super);
8
+ function ListTagsForResourceCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListTagsForResourceCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "IoTThingsGraphClient";
15
- const commandName = "ListTagsForResourceCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "IoTThingsGraphClient";
18
+ var commandName = "ListTagsForResourceCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListTagsForResourceRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListTagsForResourceResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListTagsForResourceCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1ListTagsForResourceCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListTagsForResourceCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1ListTagsForResourceCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListTagsForResourceCommand;
38
+ }($Command));
39
+ export { ListTagsForResourceCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { SearchEntitiesRequestFilterSensitiveLog, SearchEntitiesResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1SearchEntitiesCommand, serializeAws_json1_1SearchEntitiesCommand, } from "../protocols/Aws_json1_1";
5
- export class SearchEntitiesCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var SearchEntitiesCommand = (function (_super) {
7
+ __extends(SearchEntitiesCommand, _super);
8
+ function SearchEntitiesCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ SearchEntitiesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "IoTThingsGraphClient";
15
- const commandName = "SearchEntitiesCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "IoTThingsGraphClient";
18
+ var commandName = "SearchEntitiesCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: SearchEntitiesRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: SearchEntitiesResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ SearchEntitiesCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1SearchEntitiesCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ SearchEntitiesCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1SearchEntitiesCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return SearchEntitiesCommand;
38
+ }($Command));
39
+ export { SearchEntitiesCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { SearchFlowExecutionsRequestFilterSensitiveLog, SearchFlowExecutionsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1SearchFlowExecutionsCommand, serializeAws_json1_1SearchFlowExecutionsCommand, } from "../protocols/Aws_json1_1";
5
- export class SearchFlowExecutionsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var SearchFlowExecutionsCommand = (function (_super) {
7
+ __extends(SearchFlowExecutionsCommand, _super);
8
+ function SearchFlowExecutionsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ SearchFlowExecutionsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "IoTThingsGraphClient";
15
- const commandName = "SearchFlowExecutionsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "IoTThingsGraphClient";
18
+ var commandName = "SearchFlowExecutionsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: SearchFlowExecutionsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: SearchFlowExecutionsResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ SearchFlowExecutionsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1SearchFlowExecutionsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ SearchFlowExecutionsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1SearchFlowExecutionsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return SearchFlowExecutionsCommand;
38
+ }($Command));
39
+ export { SearchFlowExecutionsCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { SearchFlowTemplatesRequestFilterSensitiveLog, SearchFlowTemplatesResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1SearchFlowTemplatesCommand, serializeAws_json1_1SearchFlowTemplatesCommand, } from "../protocols/Aws_json1_1";
5
- export class SearchFlowTemplatesCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var SearchFlowTemplatesCommand = (function (_super) {
7
+ __extends(SearchFlowTemplatesCommand, _super);
8
+ function SearchFlowTemplatesCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ SearchFlowTemplatesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "IoTThingsGraphClient";
15
- const commandName = "SearchFlowTemplatesCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "IoTThingsGraphClient";
18
+ var commandName = "SearchFlowTemplatesCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: SearchFlowTemplatesRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: SearchFlowTemplatesResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ SearchFlowTemplatesCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1SearchFlowTemplatesCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ SearchFlowTemplatesCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1SearchFlowTemplatesCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return SearchFlowTemplatesCommand;
38
+ }($Command));
39
+ export { SearchFlowTemplatesCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { SearchSystemInstancesRequestFilterSensitiveLog, SearchSystemInstancesResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1SearchSystemInstancesCommand, serializeAws_json1_1SearchSystemInstancesCommand, } from "../protocols/Aws_json1_1";
5
- export class SearchSystemInstancesCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var SearchSystemInstancesCommand = (function (_super) {
7
+ __extends(SearchSystemInstancesCommand, _super);
8
+ function SearchSystemInstancesCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ SearchSystemInstancesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "IoTThingsGraphClient";
15
- const commandName = "SearchSystemInstancesCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "IoTThingsGraphClient";
18
+ var commandName = "SearchSystemInstancesCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: SearchSystemInstancesRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: SearchSystemInstancesResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ SearchSystemInstancesCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1SearchSystemInstancesCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ SearchSystemInstancesCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1SearchSystemInstancesCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return SearchSystemInstancesCommand;
38
+ }($Command));
39
+ export { SearchSystemInstancesCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { SearchSystemTemplatesRequestFilterSensitiveLog, SearchSystemTemplatesResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1SearchSystemTemplatesCommand, serializeAws_json1_1SearchSystemTemplatesCommand, } from "../protocols/Aws_json1_1";
5
- export class SearchSystemTemplatesCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var SearchSystemTemplatesCommand = (function (_super) {
7
+ __extends(SearchSystemTemplatesCommand, _super);
8
+ function SearchSystemTemplatesCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ SearchSystemTemplatesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "IoTThingsGraphClient";
15
- const commandName = "SearchSystemTemplatesCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "IoTThingsGraphClient";
18
+ var commandName = "SearchSystemTemplatesCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: SearchSystemTemplatesRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: SearchSystemTemplatesResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ SearchSystemTemplatesCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1SearchSystemTemplatesCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ SearchSystemTemplatesCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1SearchSystemTemplatesCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return SearchSystemTemplatesCommand;
38
+ }($Command));
39
+ export { SearchSystemTemplatesCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { SearchThingsRequestFilterSensitiveLog, SearchThingsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1SearchThingsCommand, serializeAws_json1_1SearchThingsCommand, } from "../protocols/Aws_json1_1";
5
- export class SearchThingsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var SearchThingsCommand = (function (_super) {
7
+ __extends(SearchThingsCommand, _super);
8
+ function SearchThingsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ SearchThingsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "IoTThingsGraphClient";
15
- const commandName = "SearchThingsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "IoTThingsGraphClient";
18
+ var commandName = "SearchThingsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: SearchThingsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: SearchThingsResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ SearchThingsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1SearchThingsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ SearchThingsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1SearchThingsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return SearchThingsCommand;
38
+ }($Command));
39
+ export { SearchThingsCommand };