@aws-sdk/client-dataexchange 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/CancelJobCommand.js +1 -1
- package/dist-cjs/commands/CreateDataSetCommand.js +2 -2
- package/dist-cjs/commands/CreateEventActionCommand.js +2 -2
- package/dist-cjs/commands/CreateJobCommand.js +2 -2
- package/dist-cjs/commands/CreateRevisionCommand.js +2 -2
- package/dist-cjs/commands/DeleteAssetCommand.js +1 -1
- package/dist-cjs/commands/DeleteDataSetCommand.js +1 -1
- package/dist-cjs/commands/DeleteEventActionCommand.js +1 -1
- package/dist-cjs/commands/DeleteRevisionCommand.js +1 -1
- package/dist-cjs/commands/GetAssetCommand.js +2 -2
- package/dist-cjs/commands/GetDataSetCommand.js +2 -2
- package/dist-cjs/commands/GetEventActionCommand.js +2 -2
- package/dist-cjs/commands/GetJobCommand.js +2 -2
- package/dist-cjs/commands/GetRevisionCommand.js +2 -2
- package/dist-cjs/commands/ListDataSetRevisionsCommand.js +2 -2
- package/dist-cjs/commands/ListDataSetsCommand.js +2 -2
- package/dist-cjs/commands/ListEventActionsCommand.js +2 -2
- package/dist-cjs/commands/ListJobsCommand.js +2 -2
- package/dist-cjs/commands/ListRevisionAssetsCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/RevokeRevisionCommand.js +2 -2
- package/dist-cjs/commands/SendApiAssetCommand.js +2 -2
- package/dist-cjs/commands/StartJobCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +1 -1
- package/dist-cjs/commands/UntagResourceCommand.js +1 -1
- package/dist-cjs/commands/UpdateAssetCommand.js +2 -2
- package/dist-cjs/commands/UpdateDataSetCommand.js +2 -2
- package/dist-cjs/commands/UpdateEventActionCommand.js +2 -2
- package/dist-cjs/commands/UpdateRevisionCommand.js +2 -2
- package/dist-cjs/models/models_0.js +363 -543
- package/dist-cjs/protocols/Aws_restJson1.js +481 -1029
- package/dist-es/commands/CancelJobCommand.js +2 -2
- package/dist-es/commands/CreateDataSetCommand.js +3 -3
- package/dist-es/commands/CreateEventActionCommand.js +3 -3
- package/dist-es/commands/CreateJobCommand.js +3 -3
- package/dist-es/commands/CreateRevisionCommand.js +3 -3
- package/dist-es/commands/DeleteAssetCommand.js +2 -2
- package/dist-es/commands/DeleteDataSetCommand.js +2 -2
- package/dist-es/commands/DeleteEventActionCommand.js +2 -2
- package/dist-es/commands/DeleteRevisionCommand.js +2 -2
- package/dist-es/commands/GetAssetCommand.js +3 -3
- package/dist-es/commands/GetDataSetCommand.js +3 -3
- package/dist-es/commands/GetEventActionCommand.js +3 -3
- package/dist-es/commands/GetJobCommand.js +3 -3
- package/dist-es/commands/GetRevisionCommand.js +3 -3
- package/dist-es/commands/ListDataSetRevisionsCommand.js +3 -3
- package/dist-es/commands/ListDataSetsCommand.js +3 -3
- package/dist-es/commands/ListEventActionsCommand.js +3 -3
- package/dist-es/commands/ListJobsCommand.js +3 -3
- package/dist-es/commands/ListRevisionAssetsCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/RevokeRevisionCommand.js +3 -3
- package/dist-es/commands/SendApiAssetCommand.js +3 -3
- package/dist-es/commands/StartJobCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateAssetCommand.js +3 -3
- package/dist-es/commands/UpdateDataSetCommand.js +3 -3
- package/dist-es/commands/UpdateEventActionCommand.js +3 -3
- package/dist-es/commands/UpdateRevisionCommand.js +3 -3
- package/dist-es/models/models_0.js +90 -360
- package/dist-es/protocols/Aws_restJson1.js +578 -1024
- package/dist-types/models/models_0.d.ts +360 -540
- package/dist-types/ts3.4/models/models_0.d.ts +180 -360
- 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 { CancelJobRequestFilterSensitiveLog } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1CancelJobCommand, serializeAws_restJson1CancelJobCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var CancelJobCommand = (function (_super) {
|
|
7
7
|
__extends(CancelJobCommand, _super);
|
|
@@ -20,7 +20,7 @@ var CancelJobCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CancelJobRequestFilterSensitiveLog,
|
|
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 { CreateDataSetRequestFilterSensitiveLog, CreateDataSetResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1CreateDataSetCommand, serializeAws_restJson1CreateDataSetCommand, } from "../protocols/Aws_restJson1";
|
|
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 { CreateEventActionRequestFilterSensitiveLog, CreateEventActionResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1CreateEventActionCommand, serializeAws_restJson1CreateEventActionCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var CreateEventActionCommand = (function (_super) {
|
|
7
7
|
__extends(CreateEventActionCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CreateEventActionCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CreateEventActionRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreateEventActionResponseFilterSensitiveLog,
|
|
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 { CreateJobRequestFilterSensitiveLog, CreateJobResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1CreateJobCommand, serializeAws_restJson1CreateJobCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var CreateJobCommand = (function (_super) {
|
|
7
7
|
__extends(CreateJobCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CreateJobCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CreateJobRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreateJobResponseFilterSensitiveLog,
|
|
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 { CreateRevisionRequestFilterSensitiveLog, CreateRevisionResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1CreateRevisionCommand, serializeAws_restJson1CreateRevisionCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var CreateRevisionCommand = (function (_super) {
|
|
7
7
|
__extends(CreateRevisionCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CreateRevisionCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CreateRevisionRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreateRevisionResponseFilterSensitiveLog,
|
|
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 { DeleteAssetRequestFilterSensitiveLog } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DeleteAssetCommand, serializeAws_restJson1DeleteAssetCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DeleteAssetCommand = (function (_super) {
|
|
7
7
|
__extends(DeleteAssetCommand, _super);
|
|
@@ -20,7 +20,7 @@ var DeleteAssetCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DeleteAssetRequestFilterSensitiveLog,
|
|
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 { DeleteDataSetRequestFilterSensitiveLog } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DeleteDataSetCommand, serializeAws_restJson1DeleteDataSetCommand, } from "../protocols/Aws_restJson1";
|
|
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 { DeleteEventActionRequestFilterSensitiveLog } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DeleteEventActionCommand, serializeAws_restJson1DeleteEventActionCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DeleteEventActionCommand = (function (_super) {
|
|
7
7
|
__extends(DeleteEventActionCommand, _super);
|
|
@@ -20,7 +20,7 @@ var DeleteEventActionCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DeleteEventActionRequestFilterSensitiveLog,
|
|
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 { DeleteRevisionRequestFilterSensitiveLog } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DeleteRevisionCommand, serializeAws_restJson1DeleteRevisionCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DeleteRevisionCommand = (function (_super) {
|
|
7
7
|
__extends(DeleteRevisionCommand, _super);
|
|
@@ -20,7 +20,7 @@ var DeleteRevisionCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DeleteRevisionRequestFilterSensitiveLog,
|
|
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 { GetAssetRequestFilterSensitiveLog, GetAssetResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1GetAssetCommand, serializeAws_restJson1GetAssetCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var GetAssetCommand = (function (_super) {
|
|
7
7
|
__extends(GetAssetCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetAssetCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetAssetRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetAssetResponseFilterSensitiveLog,
|
|
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 { GetDataSetRequestFilterSensitiveLog, GetDataSetResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1GetDataSetCommand, serializeAws_restJson1GetDataSetCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var GetDataSetCommand = (function (_super) {
|
|
7
7
|
__extends(GetDataSetCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetDataSetCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetDataSetRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetDataSetResponseFilterSensitiveLog,
|
|
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 { GetEventActionRequestFilterSensitiveLog, GetEventActionResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1GetEventActionCommand, serializeAws_restJson1GetEventActionCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var GetEventActionCommand = (function (_super) {
|
|
7
7
|
__extends(GetEventActionCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetEventActionCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetEventActionRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetEventActionResponseFilterSensitiveLog,
|
|
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 { GetJobRequestFilterSensitiveLog, GetJobResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1GetJobCommand, serializeAws_restJson1GetJobCommand } from "../protocols/Aws_restJson1";
|
|
6
6
|
var GetJobCommand = (function (_super) {
|
|
7
7
|
__extends(GetJobCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetJobCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetJobRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetJobResponseFilterSensitiveLog,
|
|
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 { GetRevisionRequestFilterSensitiveLog, GetRevisionResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1GetRevisionCommand, serializeAws_restJson1GetRevisionCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var GetRevisionCommand = (function (_super) {
|
|
7
7
|
__extends(GetRevisionCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetRevisionCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetRevisionRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetRevisionResponseFilterSensitiveLog,
|
|
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 { ListDataSetRevisionsRequestFilterSensitiveLog, ListDataSetRevisionsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListDataSetRevisionsCommand, serializeAws_restJson1ListDataSetRevisionsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListDataSetRevisionsCommand = (function (_super) {
|
|
7
7
|
__extends(ListDataSetRevisionsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListDataSetRevisionsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListDataSetRevisionsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListDataSetRevisionsResponseFilterSensitiveLog,
|
|
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_restJson1ListDataSetsCommand, serializeAws_restJson1ListDataSetsCommand, } from "../protocols/Aws_restJson1";
|
|
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 { ListEventActionsRequestFilterSensitiveLog, ListEventActionsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListEventActionsCommand, serializeAws_restJson1ListEventActionsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListEventActionsCommand = (function (_super) {
|
|
7
7
|
__extends(ListEventActionsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListEventActionsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListEventActionsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListEventActionsResponseFilterSensitiveLog,
|
|
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 { ListJobsRequestFilterSensitiveLog, ListJobsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListJobsCommand, serializeAws_restJson1ListJobsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListJobsCommand = (function (_super) {
|
|
7
7
|
__extends(ListJobsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListJobsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListJobsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListJobsResponseFilterSensitiveLog,
|
|
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 { ListRevisionAssetsRequestFilterSensitiveLog, ListRevisionAssetsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListRevisionAssetsCommand, serializeAws_restJson1ListRevisionAssetsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListRevisionAssetsCommand = (function (_super) {
|
|
7
7
|
__extends(ListRevisionAssetsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListRevisionAssetsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListRevisionAssetsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListRevisionAssetsResponseFilterSensitiveLog,
|
|
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_restJson1ListTagsForResourceCommand, serializeAws_restJson1ListTagsForResourceCommand, } from "../protocols/Aws_restJson1";
|
|
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 { RevokeRevisionRequestFilterSensitiveLog, RevokeRevisionResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1RevokeRevisionCommand, serializeAws_restJson1RevokeRevisionCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var RevokeRevisionCommand = (function (_super) {
|
|
7
7
|
__extends(RevokeRevisionCommand, _super);
|
|
@@ -20,8 +20,8 @@ var RevokeRevisionCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: RevokeRevisionRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: RevokeRevisionResponseFilterSensitiveLog,
|
|
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 { SendApiAssetRequestFilterSensitiveLog, SendApiAssetResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1SendApiAssetCommand, serializeAws_restJson1SendApiAssetCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var SendApiAssetCommand = (function (_super) {
|
|
7
7
|
__extends(SendApiAssetCommand, _super);
|
|
@@ -20,8 +20,8 @@ var SendApiAssetCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: SendApiAssetRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: SendApiAssetResponseFilterSensitiveLog,
|
|
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 { StartJobRequestFilterSensitiveLog, StartJobResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1StartJobCommand, serializeAws_restJson1StartJobCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var StartJobCommand = (function (_super) {
|
|
7
7
|
__extends(StartJobCommand, _super);
|
|
@@ -20,8 +20,8 @@ var StartJobCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: StartJobRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: StartJobResponseFilterSensitiveLog,
|
|
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 } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1TagResourceCommand, serializeAws_restJson1TagResourceCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var TagResourceCommand = (function (_super) {
|
|
7
7
|
__extends(TagResourceCommand, _super);
|
|
@@ -20,7 +20,7 @@ var TagResourceCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: TagResourceRequestFilterSensitiveLog,
|
|
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 { UntagResourceRequestFilterSensitiveLog } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1UntagResourceCommand, serializeAws_restJson1UntagResourceCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var UntagResourceCommand = (function (_super) {
|
|
7
7
|
__extends(UntagResourceCommand, _super);
|
|
@@ -20,7 +20,7 @@ var UntagResourceCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UntagResourceRequestFilterSensitiveLog,
|
|
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 { UpdateAssetRequestFilterSensitiveLog, UpdateAssetResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1UpdateAssetCommand, serializeAws_restJson1UpdateAssetCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var UpdateAssetCommand = (function (_super) {
|
|
7
7
|
__extends(UpdateAssetCommand, _super);
|
|
@@ -20,8 +20,8 @@ var UpdateAssetCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UpdateAssetRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UpdateAssetResponseFilterSensitiveLog,
|
|
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 { UpdateDataSetRequestFilterSensitiveLog, UpdateDataSetResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1UpdateDataSetCommand, serializeAws_restJson1UpdateDataSetCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var UpdateDataSetCommand = (function (_super) {
|
|
7
7
|
__extends(UpdateDataSetCommand, _super);
|
|
@@ -20,8 +20,8 @@ var UpdateDataSetCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UpdateDataSetRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UpdateDataSetResponseFilterSensitiveLog,
|
|
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 { UpdateEventActionRequestFilterSensitiveLog, UpdateEventActionResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1UpdateEventActionCommand, serializeAws_restJson1UpdateEventActionCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var UpdateEventActionCommand = (function (_super) {
|
|
7
7
|
__extends(UpdateEventActionCommand, _super);
|
|
@@ -20,8 +20,8 @@ var UpdateEventActionCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UpdateEventActionRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UpdateEventActionResponseFilterSensitiveLog,
|
|
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 { UpdateRevisionRequestFilterSensitiveLog, UpdateRevisionResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1UpdateRevisionCommand, serializeAws_restJson1UpdateRevisionCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var UpdateRevisionCommand = (function (_super) {
|
|
7
7
|
__extends(UpdateRevisionCommand, _super);
|
|
@@ -20,8 +20,8 @@ var UpdateRevisionCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UpdateRevisionRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UpdateRevisionResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|