@aws-sdk/client-lookoutequipment 3.183.0 → 3.185.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 (55) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist-cjs/protocols/Aws_json1_0.js +2 -2
  3. package/dist-es/LookoutEquipment.js +141 -134
  4. package/dist-es/LookoutEquipmentClient.js +28 -22
  5. package/dist-es/commands/CreateDatasetCommand.js +28 -21
  6. package/dist-es/commands/CreateInferenceSchedulerCommand.js +28 -21
  7. package/dist-es/commands/CreateLabelCommand.js +28 -21
  8. package/dist-es/commands/CreateLabelGroupCommand.js +28 -21
  9. package/dist-es/commands/CreateModelCommand.js +28 -21
  10. package/dist-es/commands/DeleteDatasetCommand.js +29 -22
  11. package/dist-es/commands/DeleteInferenceSchedulerCommand.js +29 -22
  12. package/dist-es/commands/DeleteLabelCommand.js +29 -22
  13. package/dist-es/commands/DeleteLabelGroupCommand.js +29 -22
  14. package/dist-es/commands/DeleteModelCommand.js +29 -22
  15. package/dist-es/commands/DescribeDataIngestionJobCommand.js +28 -21
  16. package/dist-es/commands/DescribeDatasetCommand.js +28 -21
  17. package/dist-es/commands/DescribeInferenceSchedulerCommand.js +28 -21
  18. package/dist-es/commands/DescribeLabelCommand.js +28 -21
  19. package/dist-es/commands/DescribeLabelGroupCommand.js +28 -21
  20. package/dist-es/commands/DescribeModelCommand.js +28 -21
  21. package/dist-es/commands/ListDataIngestionJobsCommand.js +28 -21
  22. package/dist-es/commands/ListDatasetsCommand.js +28 -21
  23. package/dist-es/commands/ListInferenceEventsCommand.js +28 -21
  24. package/dist-es/commands/ListInferenceExecutionsCommand.js +28 -21
  25. package/dist-es/commands/ListInferenceSchedulersCommand.js +28 -21
  26. package/dist-es/commands/ListLabelGroupsCommand.js +28 -21
  27. package/dist-es/commands/ListLabelsCommand.js +28 -21
  28. package/dist-es/commands/ListModelsCommand.js +28 -21
  29. package/dist-es/commands/ListSensorStatisticsCommand.js +28 -21
  30. package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
  31. package/dist-es/commands/StartDataIngestionJobCommand.js +28 -21
  32. package/dist-es/commands/StartInferenceSchedulerCommand.js +28 -21
  33. package/dist-es/commands/StopInferenceSchedulerCommand.js +28 -21
  34. package/dist-es/commands/TagResourceCommand.js +28 -21
  35. package/dist-es/commands/UntagResourceCommand.js +28 -21
  36. package/dist-es/commands/UpdateInferenceSchedulerCommand.js +29 -22
  37. package/dist-es/commands/UpdateLabelGroupCommand.js +29 -22
  38. package/dist-es/endpoints.js +8 -8
  39. package/dist-es/models/LookoutEquipmentServiceException.js +10 -5
  40. package/dist-es/models/models_0.js +180 -369
  41. package/dist-es/pagination/ListDataIngestionJobsPaginator.js +68 -25
  42. package/dist-es/pagination/ListDatasetsPaginator.js +68 -25
  43. package/dist-es/pagination/ListInferenceEventsPaginator.js +68 -25
  44. package/dist-es/pagination/ListInferenceExecutionsPaginator.js +68 -25
  45. package/dist-es/pagination/ListInferenceSchedulersPaginator.js +68 -25
  46. package/dist-es/pagination/ListLabelGroupsPaginator.js +68 -25
  47. package/dist-es/pagination/ListLabelsPaginator.js +68 -25
  48. package/dist-es/pagination/ListModelsPaginator.js +68 -25
  49. package/dist-es/pagination/ListSensorStatisticsPaginator.js +68 -25
  50. package/dist-es/protocols/Aws_json1_0.js +3022 -2351
  51. package/dist-es/runtimeConfig.browser.js +12 -26
  52. package/dist-es/runtimeConfig.js +12 -30
  53. package/dist-es/runtimeConfig.native.js +5 -8
  54. package/dist-es/runtimeConfig.shared.js +11 -8
  55. package/package.json +5 -5
@@ -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 { ListInferenceExecutionsRequestFilterSensitiveLog, ListInferenceExecutionsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_0ListInferenceExecutionsCommand, serializeAws_json1_0ListInferenceExecutionsCommand, } from "../protocols/Aws_json1_0";
5
- export class ListInferenceExecutionsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListInferenceExecutionsCommand = (function (_super) {
7
+ __extends(ListInferenceExecutionsCommand, _super);
8
+ function ListInferenceExecutionsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListInferenceExecutionsCommand.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 = "LookoutEquipmentClient";
15
- const commandName = "ListInferenceExecutionsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "LookoutEquipmentClient";
18
+ var commandName = "ListInferenceExecutionsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListInferenceExecutionsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListInferenceExecutionsResponseFilterSensitiveLog,
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
+ ListInferenceExecutionsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_0ListInferenceExecutionsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListInferenceExecutionsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_0ListInferenceExecutionsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListInferenceExecutionsCommand;
38
+ }($Command));
39
+ export { ListInferenceExecutionsCommand };
@@ -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 { ListInferenceSchedulersRequestFilterSensitiveLog, ListInferenceSchedulersResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_0ListInferenceSchedulersCommand, serializeAws_json1_0ListInferenceSchedulersCommand, } from "../protocols/Aws_json1_0";
5
- export class ListInferenceSchedulersCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListInferenceSchedulersCommand = (function (_super) {
7
+ __extends(ListInferenceSchedulersCommand, _super);
8
+ function ListInferenceSchedulersCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListInferenceSchedulersCommand.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 = "LookoutEquipmentClient";
15
- const commandName = "ListInferenceSchedulersCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "LookoutEquipmentClient";
18
+ var commandName = "ListInferenceSchedulersCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListInferenceSchedulersRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListInferenceSchedulersResponseFilterSensitiveLog,
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
+ ListInferenceSchedulersCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_0ListInferenceSchedulersCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListInferenceSchedulersCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_0ListInferenceSchedulersCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListInferenceSchedulersCommand;
38
+ }($Command));
39
+ export { ListInferenceSchedulersCommand };
@@ -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 { ListLabelGroupsRequestFilterSensitiveLog, ListLabelGroupsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_0ListLabelGroupsCommand, serializeAws_json1_0ListLabelGroupsCommand, } from "../protocols/Aws_json1_0";
5
- export class ListLabelGroupsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListLabelGroupsCommand = (function (_super) {
7
+ __extends(ListLabelGroupsCommand, _super);
8
+ function ListLabelGroupsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListLabelGroupsCommand.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 = "LookoutEquipmentClient";
15
- const commandName = "ListLabelGroupsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "LookoutEquipmentClient";
18
+ var commandName = "ListLabelGroupsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListLabelGroupsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListLabelGroupsResponseFilterSensitiveLog,
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
+ ListLabelGroupsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_0ListLabelGroupsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListLabelGroupsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_0ListLabelGroupsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListLabelGroupsCommand;
38
+ }($Command));
39
+ export { ListLabelGroupsCommand };
@@ -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 { ListLabelsRequestFilterSensitiveLog, ListLabelsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_0ListLabelsCommand, serializeAws_json1_0ListLabelsCommand, } from "../protocols/Aws_json1_0";
5
- export class ListLabelsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListLabelsCommand = (function (_super) {
7
+ __extends(ListLabelsCommand, _super);
8
+ function ListLabelsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListLabelsCommand.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 = "LookoutEquipmentClient";
15
- const commandName = "ListLabelsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "LookoutEquipmentClient";
18
+ var commandName = "ListLabelsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListLabelsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListLabelsResponseFilterSensitiveLog,
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
+ ListLabelsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_0ListLabelsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListLabelsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_0ListLabelsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListLabelsCommand;
38
+ }($Command));
39
+ export { ListLabelsCommand };
@@ -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 { ListModelsRequestFilterSensitiveLog, ListModelsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_0ListModelsCommand, serializeAws_json1_0ListModelsCommand, } from "../protocols/Aws_json1_0";
5
- export class ListModelsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListModelsCommand = (function (_super) {
7
+ __extends(ListModelsCommand, _super);
8
+ function ListModelsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListModelsCommand.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 = "LookoutEquipmentClient";
15
- const commandName = "ListModelsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "LookoutEquipmentClient";
18
+ var commandName = "ListModelsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListModelsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListModelsResponseFilterSensitiveLog,
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
+ ListModelsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_0ListModelsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListModelsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_0ListModelsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListModelsCommand;
38
+ }($Command));
39
+ export { ListModelsCommand };
@@ -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 { ListSensorStatisticsRequestFilterSensitiveLog, ListSensorStatisticsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_0ListSensorStatisticsCommand, serializeAws_json1_0ListSensorStatisticsCommand, } from "../protocols/Aws_json1_0";
5
- export class ListSensorStatisticsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListSensorStatisticsCommand = (function (_super) {
7
+ __extends(ListSensorStatisticsCommand, _super);
8
+ function ListSensorStatisticsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListSensorStatisticsCommand.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 = "LookoutEquipmentClient";
15
- const commandName = "ListSensorStatisticsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "LookoutEquipmentClient";
18
+ var commandName = "ListSensorStatisticsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListSensorStatisticsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListSensorStatisticsResponseFilterSensitiveLog,
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
+ ListSensorStatisticsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_0ListSensorStatisticsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListSensorStatisticsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_0ListSensorStatisticsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListSensorStatisticsCommand;
38
+ }($Command));
39
+ export { ListSensorStatisticsCommand };
@@ -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_0ListTagsForResourceCommand, serializeAws_json1_0ListTagsForResourceCommand, } from "../protocols/Aws_json1_0";
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 = "LookoutEquipmentClient";
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 = "LookoutEquipmentClient";
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_0ListTagsForResourceCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListTagsForResourceCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_0ListTagsForResourceCommand(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 { StartDataIngestionJobRequestFilterSensitiveLog, StartDataIngestionJobResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_0StartDataIngestionJobCommand, serializeAws_json1_0StartDataIngestionJobCommand, } from "../protocols/Aws_json1_0";
5
- export class StartDataIngestionJobCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var StartDataIngestionJobCommand = (function (_super) {
7
+ __extends(StartDataIngestionJobCommand, _super);
8
+ function StartDataIngestionJobCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ StartDataIngestionJobCommand.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 = "LookoutEquipmentClient";
15
- const commandName = "StartDataIngestionJobCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "LookoutEquipmentClient";
18
+ var commandName = "StartDataIngestionJobCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: StartDataIngestionJobRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: StartDataIngestionJobResponseFilterSensitiveLog,
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
+ StartDataIngestionJobCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_0StartDataIngestionJobCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ StartDataIngestionJobCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_0StartDataIngestionJobCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return StartDataIngestionJobCommand;
38
+ }($Command));
39
+ export { StartDataIngestionJobCommand };
@@ -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 { StartInferenceSchedulerRequestFilterSensitiveLog, StartInferenceSchedulerResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_0StartInferenceSchedulerCommand, serializeAws_json1_0StartInferenceSchedulerCommand, } from "../protocols/Aws_json1_0";
5
- export class StartInferenceSchedulerCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var StartInferenceSchedulerCommand = (function (_super) {
7
+ __extends(StartInferenceSchedulerCommand, _super);
8
+ function StartInferenceSchedulerCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ StartInferenceSchedulerCommand.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 = "LookoutEquipmentClient";
15
- const commandName = "StartInferenceSchedulerCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "LookoutEquipmentClient";
18
+ var commandName = "StartInferenceSchedulerCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: StartInferenceSchedulerRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: StartInferenceSchedulerResponseFilterSensitiveLog,
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
+ StartInferenceSchedulerCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_0StartInferenceSchedulerCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ StartInferenceSchedulerCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_0StartInferenceSchedulerCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return StartInferenceSchedulerCommand;
38
+ }($Command));
39
+ export { StartInferenceSchedulerCommand };
@@ -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 { StopInferenceSchedulerRequestFilterSensitiveLog, StopInferenceSchedulerResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_0StopInferenceSchedulerCommand, serializeAws_json1_0StopInferenceSchedulerCommand, } from "../protocols/Aws_json1_0";
5
- export class StopInferenceSchedulerCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var StopInferenceSchedulerCommand = (function (_super) {
7
+ __extends(StopInferenceSchedulerCommand, _super);
8
+ function StopInferenceSchedulerCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ StopInferenceSchedulerCommand.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 = "LookoutEquipmentClient";
15
- const commandName = "StopInferenceSchedulerCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "LookoutEquipmentClient";
18
+ var commandName = "StopInferenceSchedulerCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: StopInferenceSchedulerRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: StopInferenceSchedulerResponseFilterSensitiveLog,
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
+ StopInferenceSchedulerCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_0StopInferenceSchedulerCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ StopInferenceSchedulerCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_0StopInferenceSchedulerCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return StopInferenceSchedulerCommand;
38
+ }($Command));
39
+ export { StopInferenceSchedulerCommand };