@aws-sdk/client-fis 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/CreateExperimentTemplateCommand.js +2 -2
- package/dist-cjs/commands/DeleteExperimentTemplateCommand.js +2 -2
- package/dist-cjs/commands/GetActionCommand.js +2 -2
- package/dist-cjs/commands/GetExperimentCommand.js +2 -2
- package/dist-cjs/commands/GetExperimentTemplateCommand.js +2 -2
- package/dist-cjs/commands/GetTargetResourceTypeCommand.js +2 -2
- package/dist-cjs/commands/ListActionsCommand.js +2 -2
- package/dist-cjs/commands/ListExperimentTemplatesCommand.js +2 -2
- package/dist-cjs/commands/ListExperimentsCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/ListTargetResourceTypesCommand.js +2 -2
- package/dist-cjs/commands/StartExperimentCommand.js +2 -2
- package/dist-cjs/commands/StopExperimentCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/commands/UpdateExperimentTemplateCommand.js +2 -2
- package/dist-cjs/models/models_0.js +282 -422
- package/dist-cjs/protocols/Aws_restJson1.js +190 -372
- package/dist-es/commands/CreateExperimentTemplateCommand.js +3 -3
- package/dist-es/commands/DeleteExperimentTemplateCommand.js +3 -3
- package/dist-es/commands/GetActionCommand.js +3 -3
- package/dist-es/commands/GetExperimentCommand.js +3 -3
- package/dist-es/commands/GetExperimentTemplateCommand.js +3 -3
- package/dist-es/commands/GetTargetResourceTypeCommand.js +3 -3
- package/dist-es/commands/ListActionsCommand.js +3 -3
- package/dist-es/commands/ListExperimentTemplatesCommand.js +3 -3
- package/dist-es/commands/ListExperimentsCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/ListTargetResourceTypesCommand.js +3 -3
- package/dist-es/commands/StartExperimentCommand.js +3 -3
- package/dist-es/commands/StopExperimentCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/commands/UpdateExperimentTemplateCommand.js +3 -3
- package/dist-es/models/models_0.js +70 -280
- package/dist-es/protocols/Aws_restJson1.js +243 -369
- package/dist-types/models/models_0.d.ts +280 -420
- package/dist-types/ts3.4/models/models_0.d.ts +140 -280
- 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 { CreateExperimentTemplateRequestFilterSensitiveLog, CreateExperimentTemplateResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1CreateExperimentTemplateCommand, serializeAws_restJson1CreateExperimentTemplateCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var CreateExperimentTemplateCommand = (function (_super) {
|
|
7
7
|
__extends(CreateExperimentTemplateCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CreateExperimentTemplateCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CreateExperimentTemplateRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreateExperimentTemplateResponseFilterSensitiveLog,
|
|
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 { DeleteExperimentTemplateRequestFilterSensitiveLog, DeleteExperimentTemplateResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DeleteExperimentTemplateCommand, serializeAws_restJson1DeleteExperimentTemplateCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DeleteExperimentTemplateCommand = (function (_super) {
|
|
7
7
|
__extends(DeleteExperimentTemplateCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DeleteExperimentTemplateCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DeleteExperimentTemplateRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DeleteExperimentTemplateResponseFilterSensitiveLog,
|
|
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 { GetActionRequestFilterSensitiveLog, GetActionResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1GetActionCommand, serializeAws_restJson1GetActionCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var GetActionCommand = (function (_super) {
|
|
7
7
|
__extends(GetActionCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetActionCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetActionRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetActionResponseFilterSensitiveLog,
|
|
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 { GetExperimentRequestFilterSensitiveLog, GetExperimentResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1GetExperimentCommand, serializeAws_restJson1GetExperimentCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var GetExperimentCommand = (function (_super) {
|
|
7
7
|
__extends(GetExperimentCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetExperimentCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetExperimentRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetExperimentResponseFilterSensitiveLog,
|
|
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 { GetExperimentTemplateRequestFilterSensitiveLog, GetExperimentTemplateResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1GetExperimentTemplateCommand, serializeAws_restJson1GetExperimentTemplateCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var GetExperimentTemplateCommand = (function (_super) {
|
|
7
7
|
__extends(GetExperimentTemplateCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetExperimentTemplateCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetExperimentTemplateRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetExperimentTemplateResponseFilterSensitiveLog,
|
|
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 { GetTargetResourceTypeRequestFilterSensitiveLog, GetTargetResourceTypeResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1GetTargetResourceTypeCommand, serializeAws_restJson1GetTargetResourceTypeCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var GetTargetResourceTypeCommand = (function (_super) {
|
|
7
7
|
__extends(GetTargetResourceTypeCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetTargetResourceTypeCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetTargetResourceTypeRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetTargetResourceTypeResponseFilterSensitiveLog,
|
|
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 { ListActionsRequestFilterSensitiveLog, ListActionsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListActionsCommand, serializeAws_restJson1ListActionsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListActionsCommand = (function (_super) {
|
|
7
7
|
__extends(ListActionsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListActionsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListActionsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListActionsResponseFilterSensitiveLog,
|
|
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 { ListExperimentTemplatesRequestFilterSensitiveLog, ListExperimentTemplatesResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListExperimentTemplatesCommand, serializeAws_restJson1ListExperimentTemplatesCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListExperimentTemplatesCommand = (function (_super) {
|
|
7
7
|
__extends(ListExperimentTemplatesCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListExperimentTemplatesCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListExperimentTemplatesRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListExperimentTemplatesResponseFilterSensitiveLog,
|
|
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 { ListExperimentsRequestFilterSensitiveLog, ListExperimentsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListExperimentsCommand, serializeAws_restJson1ListExperimentsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListExperimentsCommand = (function (_super) {
|
|
7
7
|
__extends(ListExperimentsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListExperimentsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListExperimentsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListExperimentsResponseFilterSensitiveLog,
|
|
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 { ListTargetResourceTypesRequestFilterSensitiveLog, ListTargetResourceTypesResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListTargetResourceTypesCommand, serializeAws_restJson1ListTargetResourceTypesCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListTargetResourceTypesCommand = (function (_super) {
|
|
7
7
|
__extends(ListTargetResourceTypesCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListTargetResourceTypesCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListTargetResourceTypesRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListTargetResourceTypesResponseFilterSensitiveLog,
|
|
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 { StartExperimentRequestFilterSensitiveLog, StartExperimentResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1StartExperimentCommand, serializeAws_restJson1StartExperimentCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var StartExperimentCommand = (function (_super) {
|
|
7
7
|
__extends(StartExperimentCommand, _super);
|
|
@@ -20,8 +20,8 @@ var StartExperimentCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: StartExperimentRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: StartExperimentResponseFilterSensitiveLog,
|
|
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 { StopExperimentRequestFilterSensitiveLog, StopExperimentResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1StopExperimentCommand, serializeAws_restJson1StopExperimentCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var StopExperimentCommand = (function (_super) {
|
|
7
7
|
__extends(StopExperimentCommand, _super);
|
|
@@ -20,8 +20,8 @@ var StopExperimentCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: StopExperimentRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: StopExperimentResponseFilterSensitiveLog,
|
|
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_restJson1TagResourceCommand, serializeAws_restJson1TagResourceCommand, } from "../protocols/Aws_restJson1";
|
|
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_restJson1UntagResourceCommand, serializeAws_restJson1UntagResourceCommand, } from "../protocols/Aws_restJson1";
|
|
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 { UpdateExperimentTemplateRequestFilterSensitiveLog, UpdateExperimentTemplateResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1UpdateExperimentTemplateCommand, serializeAws_restJson1UpdateExperimentTemplateCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var UpdateExperimentTemplateCommand = (function (_super) {
|
|
7
7
|
__extends(UpdateExperimentTemplateCommand, _super);
|
|
@@ -20,8 +20,8 @@ var UpdateExperimentTemplateCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UpdateExperimentTemplateRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UpdateExperimentTemplateResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|