@aws-sdk/client-lookoutequipment 3.306.0 → 3.310.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.
- package/dist-cjs/commands/CreateDatasetCommand.js +2 -2
- package/dist-cjs/commands/CreateInferenceSchedulerCommand.js +2 -2
- package/dist-cjs/commands/CreateLabelCommand.js +2 -2
- package/dist-cjs/commands/CreateLabelGroupCommand.js +2 -2
- package/dist-cjs/commands/CreateModelCommand.js +2 -2
- package/dist-cjs/commands/DeleteDatasetCommand.js +2 -2
- package/dist-cjs/commands/DeleteInferenceSchedulerCommand.js +2 -2
- package/dist-cjs/commands/DeleteLabelCommand.js +2 -2
- package/dist-cjs/commands/DeleteLabelGroupCommand.js +2 -2
- package/dist-cjs/commands/DeleteModelCommand.js +2 -2
- package/dist-cjs/commands/DescribeDataIngestionJobCommand.js +2 -2
- package/dist-cjs/commands/DescribeDatasetCommand.js +2 -2
- package/dist-cjs/commands/DescribeInferenceSchedulerCommand.js +2 -2
- package/dist-cjs/commands/DescribeLabelCommand.js +2 -2
- package/dist-cjs/commands/DescribeLabelGroupCommand.js +2 -2
- package/dist-cjs/commands/DescribeModelCommand.js +2 -2
- package/dist-cjs/commands/ListDataIngestionJobsCommand.js +2 -2
- package/dist-cjs/commands/ListDatasetsCommand.js +2 -2
- package/dist-cjs/commands/ListInferenceEventsCommand.js +2 -2
- package/dist-cjs/commands/ListInferenceExecutionsCommand.js +2 -2
- package/dist-cjs/commands/ListInferenceSchedulersCommand.js +2 -2
- package/dist-cjs/commands/ListLabelGroupsCommand.js +2 -2
- package/dist-cjs/commands/ListLabelsCommand.js +2 -2
- package/dist-cjs/commands/ListModelsCommand.js +2 -2
- package/dist-cjs/commands/ListSensorStatisticsCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/StartDataIngestionJobCommand.js +2 -2
- package/dist-cjs/commands/StartInferenceSchedulerCommand.js +2 -2
- package/dist-cjs/commands/StopInferenceSchedulerCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/commands/UpdateInferenceSchedulerCommand.js +2 -2
- package/dist-cjs/commands/UpdateLabelGroupCommand.js +2 -2
- package/dist-cjs/protocols/Aws_json1_0.js +660 -696
- package/dist-es/commands/CreateDatasetCommand.js +3 -3
- package/dist-es/commands/CreateInferenceSchedulerCommand.js +3 -3
- package/dist-es/commands/CreateLabelCommand.js +3 -3
- package/dist-es/commands/CreateLabelGroupCommand.js +3 -3
- package/dist-es/commands/CreateModelCommand.js +3 -3
- package/dist-es/commands/DeleteDatasetCommand.js +3 -3
- package/dist-es/commands/DeleteInferenceSchedulerCommand.js +3 -3
- package/dist-es/commands/DeleteLabelCommand.js +3 -3
- package/dist-es/commands/DeleteLabelGroupCommand.js +3 -3
- package/dist-es/commands/DeleteModelCommand.js +3 -3
- package/dist-es/commands/DescribeDataIngestionJobCommand.js +3 -3
- package/dist-es/commands/DescribeDatasetCommand.js +3 -3
- package/dist-es/commands/DescribeInferenceSchedulerCommand.js +3 -3
- package/dist-es/commands/DescribeLabelCommand.js +3 -3
- package/dist-es/commands/DescribeLabelGroupCommand.js +3 -3
- package/dist-es/commands/DescribeModelCommand.js +3 -3
- package/dist-es/commands/ListDataIngestionJobsCommand.js +3 -3
- package/dist-es/commands/ListDatasetsCommand.js +3 -3
- package/dist-es/commands/ListInferenceEventsCommand.js +3 -3
- package/dist-es/commands/ListInferenceExecutionsCommand.js +3 -3
- package/dist-es/commands/ListInferenceSchedulersCommand.js +3 -3
- package/dist-es/commands/ListLabelGroupsCommand.js +3 -3
- package/dist-es/commands/ListLabelsCommand.js +3 -3
- package/dist-es/commands/ListModelsCommand.js +3 -3
- package/dist-es/commands/ListSensorStatisticsCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/StartDataIngestionJobCommand.js +3 -3
- package/dist-es/commands/StartInferenceSchedulerCommand.js +3 -3
- package/dist-es/commands/StopInferenceSchedulerCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/commands/UpdateInferenceSchedulerCommand.js +3 -3
- package/dist-es/commands/UpdateLabelGroupCommand.js +3 -3
- package/dist-es/protocols/Aws_json1_0.js +592 -628
- package/dist-types/protocols/Aws_json1_0.d.ts +264 -66
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +66 -66
- package/package.json +35 -35
|
@@ -36,10 +36,10 @@ class CreateDatasetCommand extends smithy_client_1.Command {
|
|
|
36
36
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
37
|
}
|
|
38
38
|
serialize(input, context) {
|
|
39
|
-
return (0, Aws_json1_0_1.
|
|
39
|
+
return (0, Aws_json1_0_1.se_CreateDatasetCommand)(input, context);
|
|
40
40
|
}
|
|
41
41
|
deserialize(output, context) {
|
|
42
|
-
return (0, Aws_json1_0_1.
|
|
42
|
+
return (0, Aws_json1_0_1.de_CreateDatasetCommand)(output, context);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
exports.CreateDatasetCommand = CreateDatasetCommand;
|
|
@@ -36,10 +36,10 @@ class CreateInferenceSchedulerCommand extends smithy_client_1.Command {
|
|
|
36
36
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
37
|
}
|
|
38
38
|
serialize(input, context) {
|
|
39
|
-
return (0, Aws_json1_0_1.
|
|
39
|
+
return (0, Aws_json1_0_1.se_CreateInferenceSchedulerCommand)(input, context);
|
|
40
40
|
}
|
|
41
41
|
deserialize(output, context) {
|
|
42
|
-
return (0, Aws_json1_0_1.
|
|
42
|
+
return (0, Aws_json1_0_1.de_CreateInferenceSchedulerCommand)(output, context);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
exports.CreateInferenceSchedulerCommand = CreateInferenceSchedulerCommand;
|
|
@@ -36,10 +36,10 @@ class CreateLabelCommand extends smithy_client_1.Command {
|
|
|
36
36
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
37
|
}
|
|
38
38
|
serialize(input, context) {
|
|
39
|
-
return (0, Aws_json1_0_1.
|
|
39
|
+
return (0, Aws_json1_0_1.se_CreateLabelCommand)(input, context);
|
|
40
40
|
}
|
|
41
41
|
deserialize(output, context) {
|
|
42
|
-
return (0, Aws_json1_0_1.
|
|
42
|
+
return (0, Aws_json1_0_1.de_CreateLabelCommand)(output, context);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
exports.CreateLabelCommand = CreateLabelCommand;
|
|
@@ -36,10 +36,10 @@ class CreateLabelGroupCommand extends smithy_client_1.Command {
|
|
|
36
36
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
37
|
}
|
|
38
38
|
serialize(input, context) {
|
|
39
|
-
return (0, Aws_json1_0_1.
|
|
39
|
+
return (0, Aws_json1_0_1.se_CreateLabelGroupCommand)(input, context);
|
|
40
40
|
}
|
|
41
41
|
deserialize(output, context) {
|
|
42
|
-
return (0, Aws_json1_0_1.
|
|
42
|
+
return (0, Aws_json1_0_1.de_CreateLabelGroupCommand)(output, context);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
exports.CreateLabelGroupCommand = CreateLabelGroupCommand;
|
|
@@ -36,10 +36,10 @@ class CreateModelCommand extends smithy_client_1.Command {
|
|
|
36
36
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
37
|
}
|
|
38
38
|
serialize(input, context) {
|
|
39
|
-
return (0, Aws_json1_0_1.
|
|
39
|
+
return (0, Aws_json1_0_1.se_CreateModelCommand)(input, context);
|
|
40
40
|
}
|
|
41
41
|
deserialize(output, context) {
|
|
42
|
-
return (0, Aws_json1_0_1.
|
|
42
|
+
return (0, Aws_json1_0_1.de_CreateModelCommand)(output, context);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
exports.CreateModelCommand = CreateModelCommand;
|
|
@@ -36,10 +36,10 @@ class DeleteDatasetCommand extends smithy_client_1.Command {
|
|
|
36
36
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
37
|
}
|
|
38
38
|
serialize(input, context) {
|
|
39
|
-
return (0, Aws_json1_0_1.
|
|
39
|
+
return (0, Aws_json1_0_1.se_DeleteDatasetCommand)(input, context);
|
|
40
40
|
}
|
|
41
41
|
deserialize(output, context) {
|
|
42
|
-
return (0, Aws_json1_0_1.
|
|
42
|
+
return (0, Aws_json1_0_1.de_DeleteDatasetCommand)(output, context);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
exports.DeleteDatasetCommand = DeleteDatasetCommand;
|
|
@@ -36,10 +36,10 @@ class DeleteInferenceSchedulerCommand extends smithy_client_1.Command {
|
|
|
36
36
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
37
|
}
|
|
38
38
|
serialize(input, context) {
|
|
39
|
-
return (0, Aws_json1_0_1.
|
|
39
|
+
return (0, Aws_json1_0_1.se_DeleteInferenceSchedulerCommand)(input, context);
|
|
40
40
|
}
|
|
41
41
|
deserialize(output, context) {
|
|
42
|
-
return (0, Aws_json1_0_1.
|
|
42
|
+
return (0, Aws_json1_0_1.de_DeleteInferenceSchedulerCommand)(output, context);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
exports.DeleteInferenceSchedulerCommand = DeleteInferenceSchedulerCommand;
|
|
@@ -36,10 +36,10 @@ class DeleteLabelCommand extends smithy_client_1.Command {
|
|
|
36
36
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
37
|
}
|
|
38
38
|
serialize(input, context) {
|
|
39
|
-
return (0, Aws_json1_0_1.
|
|
39
|
+
return (0, Aws_json1_0_1.se_DeleteLabelCommand)(input, context);
|
|
40
40
|
}
|
|
41
41
|
deserialize(output, context) {
|
|
42
|
-
return (0, Aws_json1_0_1.
|
|
42
|
+
return (0, Aws_json1_0_1.de_DeleteLabelCommand)(output, context);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
exports.DeleteLabelCommand = DeleteLabelCommand;
|
|
@@ -36,10 +36,10 @@ class DeleteLabelGroupCommand extends smithy_client_1.Command {
|
|
|
36
36
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
37
|
}
|
|
38
38
|
serialize(input, context) {
|
|
39
|
-
return (0, Aws_json1_0_1.
|
|
39
|
+
return (0, Aws_json1_0_1.se_DeleteLabelGroupCommand)(input, context);
|
|
40
40
|
}
|
|
41
41
|
deserialize(output, context) {
|
|
42
|
-
return (0, Aws_json1_0_1.
|
|
42
|
+
return (0, Aws_json1_0_1.de_DeleteLabelGroupCommand)(output, context);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
exports.DeleteLabelGroupCommand = DeleteLabelGroupCommand;
|
|
@@ -36,10 +36,10 @@ class DeleteModelCommand extends smithy_client_1.Command {
|
|
|
36
36
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
37
|
}
|
|
38
38
|
serialize(input, context) {
|
|
39
|
-
return (0, Aws_json1_0_1.
|
|
39
|
+
return (0, Aws_json1_0_1.se_DeleteModelCommand)(input, context);
|
|
40
40
|
}
|
|
41
41
|
deserialize(output, context) {
|
|
42
|
-
return (0, Aws_json1_0_1.
|
|
42
|
+
return (0, Aws_json1_0_1.de_DeleteModelCommand)(output, context);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
exports.DeleteModelCommand = DeleteModelCommand;
|
|
@@ -36,10 +36,10 @@ class DescribeDataIngestionJobCommand extends smithy_client_1.Command {
|
|
|
36
36
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
37
|
}
|
|
38
38
|
serialize(input, context) {
|
|
39
|
-
return (0, Aws_json1_0_1.
|
|
39
|
+
return (0, Aws_json1_0_1.se_DescribeDataIngestionJobCommand)(input, context);
|
|
40
40
|
}
|
|
41
41
|
deserialize(output, context) {
|
|
42
|
-
return (0, Aws_json1_0_1.
|
|
42
|
+
return (0, Aws_json1_0_1.de_DescribeDataIngestionJobCommand)(output, context);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
exports.DescribeDataIngestionJobCommand = DescribeDataIngestionJobCommand;
|
|
@@ -36,10 +36,10 @@ class DescribeDatasetCommand extends smithy_client_1.Command {
|
|
|
36
36
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
37
|
}
|
|
38
38
|
serialize(input, context) {
|
|
39
|
-
return (0, Aws_json1_0_1.
|
|
39
|
+
return (0, Aws_json1_0_1.se_DescribeDatasetCommand)(input, context);
|
|
40
40
|
}
|
|
41
41
|
deserialize(output, context) {
|
|
42
|
-
return (0, Aws_json1_0_1.
|
|
42
|
+
return (0, Aws_json1_0_1.de_DescribeDatasetCommand)(output, context);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
exports.DescribeDatasetCommand = DescribeDatasetCommand;
|
|
@@ -36,10 +36,10 @@ class DescribeInferenceSchedulerCommand extends smithy_client_1.Command {
|
|
|
36
36
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
37
|
}
|
|
38
38
|
serialize(input, context) {
|
|
39
|
-
return (0, Aws_json1_0_1.
|
|
39
|
+
return (0, Aws_json1_0_1.se_DescribeInferenceSchedulerCommand)(input, context);
|
|
40
40
|
}
|
|
41
41
|
deserialize(output, context) {
|
|
42
|
-
return (0, Aws_json1_0_1.
|
|
42
|
+
return (0, Aws_json1_0_1.de_DescribeInferenceSchedulerCommand)(output, context);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
exports.DescribeInferenceSchedulerCommand = DescribeInferenceSchedulerCommand;
|
|
@@ -36,10 +36,10 @@ class DescribeLabelCommand extends smithy_client_1.Command {
|
|
|
36
36
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
37
|
}
|
|
38
38
|
serialize(input, context) {
|
|
39
|
-
return (0, Aws_json1_0_1.
|
|
39
|
+
return (0, Aws_json1_0_1.se_DescribeLabelCommand)(input, context);
|
|
40
40
|
}
|
|
41
41
|
deserialize(output, context) {
|
|
42
|
-
return (0, Aws_json1_0_1.
|
|
42
|
+
return (0, Aws_json1_0_1.de_DescribeLabelCommand)(output, context);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
exports.DescribeLabelCommand = DescribeLabelCommand;
|
|
@@ -36,10 +36,10 @@ class DescribeLabelGroupCommand extends smithy_client_1.Command {
|
|
|
36
36
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
37
|
}
|
|
38
38
|
serialize(input, context) {
|
|
39
|
-
return (0, Aws_json1_0_1.
|
|
39
|
+
return (0, Aws_json1_0_1.se_DescribeLabelGroupCommand)(input, context);
|
|
40
40
|
}
|
|
41
41
|
deserialize(output, context) {
|
|
42
|
-
return (0, Aws_json1_0_1.
|
|
42
|
+
return (0, Aws_json1_0_1.de_DescribeLabelGroupCommand)(output, context);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
exports.DescribeLabelGroupCommand = DescribeLabelGroupCommand;
|
|
@@ -36,10 +36,10 @@ class DescribeModelCommand extends smithy_client_1.Command {
|
|
|
36
36
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
37
|
}
|
|
38
38
|
serialize(input, context) {
|
|
39
|
-
return (0, Aws_json1_0_1.
|
|
39
|
+
return (0, Aws_json1_0_1.se_DescribeModelCommand)(input, context);
|
|
40
40
|
}
|
|
41
41
|
deserialize(output, context) {
|
|
42
|
-
return (0, Aws_json1_0_1.
|
|
42
|
+
return (0, Aws_json1_0_1.de_DescribeModelCommand)(output, context);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
exports.DescribeModelCommand = DescribeModelCommand;
|
|
@@ -36,10 +36,10 @@ class ListDataIngestionJobsCommand extends smithy_client_1.Command {
|
|
|
36
36
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
37
|
}
|
|
38
38
|
serialize(input, context) {
|
|
39
|
-
return (0, Aws_json1_0_1.
|
|
39
|
+
return (0, Aws_json1_0_1.se_ListDataIngestionJobsCommand)(input, context);
|
|
40
40
|
}
|
|
41
41
|
deserialize(output, context) {
|
|
42
|
-
return (0, Aws_json1_0_1.
|
|
42
|
+
return (0, Aws_json1_0_1.de_ListDataIngestionJobsCommand)(output, context);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
exports.ListDataIngestionJobsCommand = ListDataIngestionJobsCommand;
|
|
@@ -36,10 +36,10 @@ class ListDatasetsCommand extends smithy_client_1.Command {
|
|
|
36
36
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
37
|
}
|
|
38
38
|
serialize(input, context) {
|
|
39
|
-
return (0, Aws_json1_0_1.
|
|
39
|
+
return (0, Aws_json1_0_1.se_ListDatasetsCommand)(input, context);
|
|
40
40
|
}
|
|
41
41
|
deserialize(output, context) {
|
|
42
|
-
return (0, Aws_json1_0_1.
|
|
42
|
+
return (0, Aws_json1_0_1.de_ListDatasetsCommand)(output, context);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
exports.ListDatasetsCommand = ListDatasetsCommand;
|
|
@@ -36,10 +36,10 @@ class ListInferenceEventsCommand extends smithy_client_1.Command {
|
|
|
36
36
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
37
|
}
|
|
38
38
|
serialize(input, context) {
|
|
39
|
-
return (0, Aws_json1_0_1.
|
|
39
|
+
return (0, Aws_json1_0_1.se_ListInferenceEventsCommand)(input, context);
|
|
40
40
|
}
|
|
41
41
|
deserialize(output, context) {
|
|
42
|
-
return (0, Aws_json1_0_1.
|
|
42
|
+
return (0, Aws_json1_0_1.de_ListInferenceEventsCommand)(output, context);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
exports.ListInferenceEventsCommand = ListInferenceEventsCommand;
|
|
@@ -36,10 +36,10 @@ class ListInferenceExecutionsCommand extends smithy_client_1.Command {
|
|
|
36
36
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
37
|
}
|
|
38
38
|
serialize(input, context) {
|
|
39
|
-
return (0, Aws_json1_0_1.
|
|
39
|
+
return (0, Aws_json1_0_1.se_ListInferenceExecutionsCommand)(input, context);
|
|
40
40
|
}
|
|
41
41
|
deserialize(output, context) {
|
|
42
|
-
return (0, Aws_json1_0_1.
|
|
42
|
+
return (0, Aws_json1_0_1.de_ListInferenceExecutionsCommand)(output, context);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
exports.ListInferenceExecutionsCommand = ListInferenceExecutionsCommand;
|
|
@@ -36,10 +36,10 @@ class ListInferenceSchedulersCommand extends smithy_client_1.Command {
|
|
|
36
36
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
37
|
}
|
|
38
38
|
serialize(input, context) {
|
|
39
|
-
return (0, Aws_json1_0_1.
|
|
39
|
+
return (0, Aws_json1_0_1.se_ListInferenceSchedulersCommand)(input, context);
|
|
40
40
|
}
|
|
41
41
|
deserialize(output, context) {
|
|
42
|
-
return (0, Aws_json1_0_1.
|
|
42
|
+
return (0, Aws_json1_0_1.de_ListInferenceSchedulersCommand)(output, context);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
exports.ListInferenceSchedulersCommand = ListInferenceSchedulersCommand;
|
|
@@ -36,10 +36,10 @@ class ListLabelGroupsCommand extends smithy_client_1.Command {
|
|
|
36
36
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
37
|
}
|
|
38
38
|
serialize(input, context) {
|
|
39
|
-
return (0, Aws_json1_0_1.
|
|
39
|
+
return (0, Aws_json1_0_1.se_ListLabelGroupsCommand)(input, context);
|
|
40
40
|
}
|
|
41
41
|
deserialize(output, context) {
|
|
42
|
-
return (0, Aws_json1_0_1.
|
|
42
|
+
return (0, Aws_json1_0_1.de_ListLabelGroupsCommand)(output, context);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
exports.ListLabelGroupsCommand = ListLabelGroupsCommand;
|
|
@@ -36,10 +36,10 @@ class ListLabelsCommand extends smithy_client_1.Command {
|
|
|
36
36
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
37
|
}
|
|
38
38
|
serialize(input, context) {
|
|
39
|
-
return (0, Aws_json1_0_1.
|
|
39
|
+
return (0, Aws_json1_0_1.se_ListLabelsCommand)(input, context);
|
|
40
40
|
}
|
|
41
41
|
deserialize(output, context) {
|
|
42
|
-
return (0, Aws_json1_0_1.
|
|
42
|
+
return (0, Aws_json1_0_1.de_ListLabelsCommand)(output, context);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
exports.ListLabelsCommand = ListLabelsCommand;
|
|
@@ -36,10 +36,10 @@ class ListModelsCommand extends smithy_client_1.Command {
|
|
|
36
36
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
37
|
}
|
|
38
38
|
serialize(input, context) {
|
|
39
|
-
return (0, Aws_json1_0_1.
|
|
39
|
+
return (0, Aws_json1_0_1.se_ListModelsCommand)(input, context);
|
|
40
40
|
}
|
|
41
41
|
deserialize(output, context) {
|
|
42
|
-
return (0, Aws_json1_0_1.
|
|
42
|
+
return (0, Aws_json1_0_1.de_ListModelsCommand)(output, context);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
exports.ListModelsCommand = ListModelsCommand;
|
|
@@ -36,10 +36,10 @@ class ListSensorStatisticsCommand extends smithy_client_1.Command {
|
|
|
36
36
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
37
|
}
|
|
38
38
|
serialize(input, context) {
|
|
39
|
-
return (0, Aws_json1_0_1.
|
|
39
|
+
return (0, Aws_json1_0_1.se_ListSensorStatisticsCommand)(input, context);
|
|
40
40
|
}
|
|
41
41
|
deserialize(output, context) {
|
|
42
|
-
return (0, Aws_json1_0_1.
|
|
42
|
+
return (0, Aws_json1_0_1.de_ListSensorStatisticsCommand)(output, context);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
exports.ListSensorStatisticsCommand = ListSensorStatisticsCommand;
|
|
@@ -36,10 +36,10 @@ class ListTagsForResourceCommand extends smithy_client_1.Command {
|
|
|
36
36
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
37
|
}
|
|
38
38
|
serialize(input, context) {
|
|
39
|
-
return (0, Aws_json1_0_1.
|
|
39
|
+
return (0, Aws_json1_0_1.se_ListTagsForResourceCommand)(input, context);
|
|
40
40
|
}
|
|
41
41
|
deserialize(output, context) {
|
|
42
|
-
return (0, Aws_json1_0_1.
|
|
42
|
+
return (0, Aws_json1_0_1.de_ListTagsForResourceCommand)(output, context);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
@@ -36,10 +36,10 @@ class StartDataIngestionJobCommand extends smithy_client_1.Command {
|
|
|
36
36
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
37
|
}
|
|
38
38
|
serialize(input, context) {
|
|
39
|
-
return (0, Aws_json1_0_1.
|
|
39
|
+
return (0, Aws_json1_0_1.se_StartDataIngestionJobCommand)(input, context);
|
|
40
40
|
}
|
|
41
41
|
deserialize(output, context) {
|
|
42
|
-
return (0, Aws_json1_0_1.
|
|
42
|
+
return (0, Aws_json1_0_1.de_StartDataIngestionJobCommand)(output, context);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
exports.StartDataIngestionJobCommand = StartDataIngestionJobCommand;
|
|
@@ -36,10 +36,10 @@ class StartInferenceSchedulerCommand extends smithy_client_1.Command {
|
|
|
36
36
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
37
|
}
|
|
38
38
|
serialize(input, context) {
|
|
39
|
-
return (0, Aws_json1_0_1.
|
|
39
|
+
return (0, Aws_json1_0_1.se_StartInferenceSchedulerCommand)(input, context);
|
|
40
40
|
}
|
|
41
41
|
deserialize(output, context) {
|
|
42
|
-
return (0, Aws_json1_0_1.
|
|
42
|
+
return (0, Aws_json1_0_1.de_StartInferenceSchedulerCommand)(output, context);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
exports.StartInferenceSchedulerCommand = StartInferenceSchedulerCommand;
|
|
@@ -36,10 +36,10 @@ class StopInferenceSchedulerCommand extends smithy_client_1.Command {
|
|
|
36
36
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
37
|
}
|
|
38
38
|
serialize(input, context) {
|
|
39
|
-
return (0, Aws_json1_0_1.
|
|
39
|
+
return (0, Aws_json1_0_1.se_StopInferenceSchedulerCommand)(input, context);
|
|
40
40
|
}
|
|
41
41
|
deserialize(output, context) {
|
|
42
|
-
return (0, Aws_json1_0_1.
|
|
42
|
+
return (0, Aws_json1_0_1.de_StopInferenceSchedulerCommand)(output, context);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
exports.StopInferenceSchedulerCommand = StopInferenceSchedulerCommand;
|
|
@@ -36,10 +36,10 @@ class TagResourceCommand extends smithy_client_1.Command {
|
|
|
36
36
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
37
|
}
|
|
38
38
|
serialize(input, context) {
|
|
39
|
-
return (0, Aws_json1_0_1.
|
|
39
|
+
return (0, Aws_json1_0_1.se_TagResourceCommand)(input, context);
|
|
40
40
|
}
|
|
41
41
|
deserialize(output, context) {
|
|
42
|
-
return (0, Aws_json1_0_1.
|
|
42
|
+
return (0, Aws_json1_0_1.de_TagResourceCommand)(output, context);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
exports.TagResourceCommand = TagResourceCommand;
|
|
@@ -36,10 +36,10 @@ class UntagResourceCommand extends smithy_client_1.Command {
|
|
|
36
36
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
37
|
}
|
|
38
38
|
serialize(input, context) {
|
|
39
|
-
return (0, Aws_json1_0_1.
|
|
39
|
+
return (0, Aws_json1_0_1.se_UntagResourceCommand)(input, context);
|
|
40
40
|
}
|
|
41
41
|
deserialize(output, context) {
|
|
42
|
-
return (0, Aws_json1_0_1.
|
|
42
|
+
return (0, Aws_json1_0_1.de_UntagResourceCommand)(output, context);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
@@ -36,10 +36,10 @@ class UpdateInferenceSchedulerCommand extends smithy_client_1.Command {
|
|
|
36
36
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
37
|
}
|
|
38
38
|
serialize(input, context) {
|
|
39
|
-
return (0, Aws_json1_0_1.
|
|
39
|
+
return (0, Aws_json1_0_1.se_UpdateInferenceSchedulerCommand)(input, context);
|
|
40
40
|
}
|
|
41
41
|
deserialize(output, context) {
|
|
42
|
-
return (0, Aws_json1_0_1.
|
|
42
|
+
return (0, Aws_json1_0_1.de_UpdateInferenceSchedulerCommand)(output, context);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
exports.UpdateInferenceSchedulerCommand = UpdateInferenceSchedulerCommand;
|
|
@@ -36,10 +36,10 @@ class UpdateLabelGroupCommand extends smithy_client_1.Command {
|
|
|
36
36
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
37
|
}
|
|
38
38
|
serialize(input, context) {
|
|
39
|
-
return (0, Aws_json1_0_1.
|
|
39
|
+
return (0, Aws_json1_0_1.se_UpdateLabelGroupCommand)(input, context);
|
|
40
40
|
}
|
|
41
41
|
deserialize(output, context) {
|
|
42
|
-
return (0, Aws_json1_0_1.
|
|
42
|
+
return (0, Aws_json1_0_1.de_UpdateLabelGroupCommand)(output, context);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
exports.UpdateLabelGroupCommand = UpdateLabelGroupCommand;
|