@aws-sdk/client-lookoutequipment 3.131.0 → 3.142.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/CHANGELOG.md +33 -0
- package/README.md +1 -1
- package/dist-cjs/commands/CreateDatasetCommand.js +2 -2
- package/dist-cjs/commands/CreateInferenceSchedulerCommand.js +2 -2
- package/dist-cjs/commands/CreateModelCommand.js +2 -2
- package/dist-cjs/commands/DeleteDatasetCommand.js +1 -1
- package/dist-cjs/commands/DeleteInferenceSchedulerCommand.js +1 -1
- package/dist-cjs/commands/DeleteModelCommand.js +1 -1
- 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/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/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 +1 -1
- package/dist-cjs/models/models_0.js +314 -470
- package/dist-cjs/protocols/Aws_json1_0.js +120 -198
- package/dist-es/commands/CreateDatasetCommand.js +3 -3
- package/dist-es/commands/CreateInferenceSchedulerCommand.js +3 -3
- package/dist-es/commands/CreateModelCommand.js +3 -3
- package/dist-es/commands/DeleteDatasetCommand.js +2 -2
- package/dist-es/commands/DeleteInferenceSchedulerCommand.js +2 -2
- package/dist-es/commands/DeleteModelCommand.js +2 -2
- 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/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/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 +2 -2
- package/dist-es/models/models_0.js +78 -312
- package/dist-es/protocols/Aws_json1_0.js +193 -199
- package/dist-types/models/models_0.d.ts +312 -468
- package/dist-types/ts3.4/models/models_0.d.ts +0 -120
- package/package.json +6 -6
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { CreateDatasetRequestFilterSensitiveLog, CreateDatasetResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0CreateDatasetCommand, serializeAws_json1_0CreateDatasetCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var CreateDatasetCommand = (function (_super) {
|
|
7
7
|
__extends(CreateDatasetCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CreateDatasetCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CreateDatasetRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreateDatasetResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { CreateInferenceSchedulerRequestFilterSensitiveLog, CreateInferenceSchedulerResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0CreateInferenceSchedulerCommand, serializeAws_json1_0CreateInferenceSchedulerCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var CreateInferenceSchedulerCommand = (function (_super) {
|
|
7
7
|
__extends(CreateInferenceSchedulerCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CreateInferenceSchedulerCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CreateInferenceSchedulerRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreateInferenceSchedulerResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { CreateModelRequestFilterSensitiveLog, CreateModelResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0CreateModelCommand, serializeAws_json1_0CreateModelCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var CreateModelCommand = (function (_super) {
|
|
7
7
|
__extends(CreateModelCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CreateModelCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CreateModelRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreateModelResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DeleteDatasetRequestFilterSensitiveLog } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0DeleteDatasetCommand, serializeAws_json1_0DeleteDatasetCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var DeleteDatasetCommand = (function (_super) {
|
|
7
7
|
__extends(DeleteDatasetCommand, _super);
|
|
@@ -20,7 +20,7 @@ var DeleteDatasetCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DeleteDatasetRequestFilterSensitiveLog,
|
|
24
24
|
outputFilterSensitiveLog: function (output) { return output; },
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DeleteInferenceSchedulerRequestFilterSensitiveLog } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0DeleteInferenceSchedulerCommand, serializeAws_json1_0DeleteInferenceSchedulerCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var DeleteInferenceSchedulerCommand = (function (_super) {
|
|
7
7
|
__extends(DeleteInferenceSchedulerCommand, _super);
|
|
@@ -20,7 +20,7 @@ var DeleteInferenceSchedulerCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DeleteInferenceSchedulerRequestFilterSensitiveLog,
|
|
24
24
|
outputFilterSensitiveLog: function (output) { return output; },
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DeleteModelRequestFilterSensitiveLog } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0DeleteModelCommand, serializeAws_json1_0DeleteModelCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var DeleteModelCommand = (function (_super) {
|
|
7
7
|
__extends(DeleteModelCommand, _super);
|
|
@@ -20,7 +20,7 @@ var DeleteModelCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DeleteModelRequestFilterSensitiveLog,
|
|
24
24
|
outputFilterSensitiveLog: function (output) { return output; },
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DescribeDataIngestionJobRequestFilterSensitiveLog, DescribeDataIngestionJobResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0DescribeDataIngestionJobCommand, serializeAws_json1_0DescribeDataIngestionJobCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var DescribeDataIngestionJobCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeDataIngestionJobCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeDataIngestionJobCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeDataIngestionJobRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeDataIngestionJobResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DescribeDatasetRequestFilterSensitiveLog, DescribeDatasetResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0DescribeDatasetCommand, serializeAws_json1_0DescribeDatasetCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var DescribeDatasetCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeDatasetCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeDatasetCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeDatasetRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeDatasetResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DescribeInferenceSchedulerRequestFilterSensitiveLog, DescribeInferenceSchedulerResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0DescribeInferenceSchedulerCommand, serializeAws_json1_0DescribeInferenceSchedulerCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var DescribeInferenceSchedulerCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeInferenceSchedulerCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeInferenceSchedulerCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeInferenceSchedulerRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeInferenceSchedulerResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DescribeModelRequestFilterSensitiveLog, DescribeModelResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0DescribeModelCommand, serializeAws_json1_0DescribeModelCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var DescribeModelCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeModelCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeModelCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeModelRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeModelResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListDataIngestionJobsRequestFilterSensitiveLog, ListDataIngestionJobsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0ListDataIngestionJobsCommand, serializeAws_json1_0ListDataIngestionJobsCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var ListDataIngestionJobsCommand = (function (_super) {
|
|
7
7
|
__extends(ListDataIngestionJobsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListDataIngestionJobsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListDataIngestionJobsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListDataIngestionJobsResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListDatasetsRequestFilterSensitiveLog, ListDatasetsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0ListDatasetsCommand, serializeAws_json1_0ListDatasetsCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var ListDatasetsCommand = (function (_super) {
|
|
7
7
|
__extends(ListDatasetsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListDatasetsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListDatasetsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListDatasetsResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListInferenceEventsRequestFilterSensitiveLog, ListInferenceEventsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0ListInferenceEventsCommand, serializeAws_json1_0ListInferenceEventsCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var ListInferenceEventsCommand = (function (_super) {
|
|
7
7
|
__extends(ListInferenceEventsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListInferenceEventsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListInferenceEventsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListInferenceEventsResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListInferenceExecutionsRequestFilterSensitiveLog, ListInferenceExecutionsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0ListInferenceExecutionsCommand, serializeAws_json1_0ListInferenceExecutionsCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var ListInferenceExecutionsCommand = (function (_super) {
|
|
7
7
|
__extends(ListInferenceExecutionsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListInferenceExecutionsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListInferenceExecutionsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListInferenceExecutionsResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListInferenceSchedulersRequestFilterSensitiveLog, ListInferenceSchedulersResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0ListInferenceSchedulersCommand, serializeAws_json1_0ListInferenceSchedulersCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var ListInferenceSchedulersCommand = (function (_super) {
|
|
7
7
|
__extends(ListInferenceSchedulersCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListInferenceSchedulersCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListInferenceSchedulersRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListInferenceSchedulersResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListModelsRequestFilterSensitiveLog, ListModelsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0ListModelsCommand, serializeAws_json1_0ListModelsCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var ListModelsCommand = (function (_super) {
|
|
7
7
|
__extends(ListModelsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListModelsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListModelsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListModelsResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListSensorStatisticsRequestFilterSensitiveLog, ListSensorStatisticsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0ListSensorStatisticsCommand, serializeAws_json1_0ListSensorStatisticsCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var ListSensorStatisticsCommand = (function (_super) {
|
|
7
7
|
__extends(ListSensorStatisticsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListSensorStatisticsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListSensorStatisticsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListSensorStatisticsResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListTagsForResourceRequestFilterSensitiveLog, ListTagsForResourceResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0ListTagsForResourceCommand, serializeAws_json1_0ListTagsForResourceCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var ListTagsForResourceCommand = (function (_super) {
|
|
7
7
|
__extends(ListTagsForResourceCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListTagsForResourceCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListTagsForResourceRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListTagsForResourceResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { StartDataIngestionJobRequestFilterSensitiveLog, StartDataIngestionJobResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0StartDataIngestionJobCommand, serializeAws_json1_0StartDataIngestionJobCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var StartDataIngestionJobCommand = (function (_super) {
|
|
7
7
|
__extends(StartDataIngestionJobCommand, _super);
|
|
@@ -20,8 +20,8 @@ var StartDataIngestionJobCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: StartDataIngestionJobRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: StartDataIngestionJobResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { StartInferenceSchedulerRequestFilterSensitiveLog, StartInferenceSchedulerResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0StartInferenceSchedulerCommand, serializeAws_json1_0StartInferenceSchedulerCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var StartInferenceSchedulerCommand = (function (_super) {
|
|
7
7
|
__extends(StartInferenceSchedulerCommand, _super);
|
|
@@ -20,8 +20,8 @@ var StartInferenceSchedulerCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: StartInferenceSchedulerRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: StartInferenceSchedulerResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { StopInferenceSchedulerRequestFilterSensitiveLog, StopInferenceSchedulerResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0StopInferenceSchedulerCommand, serializeAws_json1_0StopInferenceSchedulerCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var StopInferenceSchedulerCommand = (function (_super) {
|
|
7
7
|
__extends(StopInferenceSchedulerCommand, _super);
|
|
@@ -20,8 +20,8 @@ var StopInferenceSchedulerCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: StopInferenceSchedulerRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: StopInferenceSchedulerResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { TagResourceRequestFilterSensitiveLog, TagResourceResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0TagResourceCommand, serializeAws_json1_0TagResourceCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var TagResourceCommand = (function (_super) {
|
|
7
7
|
__extends(TagResourceCommand, _super);
|
|
@@ -20,8 +20,8 @@ var TagResourceCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: TagResourceRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: TagResourceResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { UntagResourceRequestFilterSensitiveLog, UntagResourceResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0UntagResourceCommand, serializeAws_json1_0UntagResourceCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var UntagResourceCommand = (function (_super) {
|
|
7
7
|
__extends(UntagResourceCommand, _super);
|
|
@@ -20,8 +20,8 @@ var UntagResourceCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UntagResourceRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UntagResourceResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { UpdateInferenceSchedulerRequestFilterSensitiveLog } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0UpdateInferenceSchedulerCommand, serializeAws_json1_0UpdateInferenceSchedulerCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var UpdateInferenceSchedulerCommand = (function (_super) {
|
|
7
7
|
__extends(UpdateInferenceSchedulerCommand, _super);
|
|
@@ -20,7 +20,7 @@ var UpdateInferenceSchedulerCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UpdateInferenceSchedulerRequestFilterSensitiveLog,
|
|
24
24
|
outputFilterSensitiveLog: function (output) { return output; },
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|