@aws-sdk/client-amplifybackend 3.128.0 → 3.137.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 +30 -0
- package/dist-cjs/commands/CloneBackendCommand.js +2 -2
- package/dist-cjs/commands/CreateBackendAPICommand.js +2 -2
- package/dist-cjs/commands/CreateBackendAuthCommand.js +2 -2
- package/dist-cjs/commands/CreateBackendCommand.js +2 -2
- package/dist-cjs/commands/CreateBackendConfigCommand.js +2 -2
- package/dist-cjs/commands/CreateBackendStorageCommand.js +2 -2
- package/dist-cjs/commands/CreateTokenCommand.js +2 -2
- package/dist-cjs/commands/DeleteBackendAPICommand.js +2 -2
- package/dist-cjs/commands/DeleteBackendAuthCommand.js +2 -2
- package/dist-cjs/commands/DeleteBackendCommand.js +2 -2
- package/dist-cjs/commands/DeleteBackendStorageCommand.js +2 -2
- package/dist-cjs/commands/DeleteTokenCommand.js +2 -2
- package/dist-cjs/commands/GenerateBackendAPIModelsCommand.js +2 -2
- package/dist-cjs/commands/GetBackendAPICommand.js +2 -2
- package/dist-cjs/commands/GetBackendAPIModelsCommand.js +2 -2
- package/dist-cjs/commands/GetBackendAuthCommand.js +2 -2
- package/dist-cjs/commands/GetBackendCommand.js +2 -2
- package/dist-cjs/commands/GetBackendJobCommand.js +2 -2
- package/dist-cjs/commands/GetBackendStorageCommand.js +2 -2
- package/dist-cjs/commands/GetTokenCommand.js +2 -2
- package/dist-cjs/commands/ImportBackendAuthCommand.js +2 -2
- package/dist-cjs/commands/ImportBackendStorageCommand.js +2 -2
- package/dist-cjs/commands/ListBackendJobsCommand.js +2 -2
- package/dist-cjs/commands/ListS3BucketsCommand.js +2 -2
- package/dist-cjs/commands/RemoveAllBackendsCommand.js +2 -2
- package/dist-cjs/commands/RemoveBackendConfigCommand.js +2 -2
- package/dist-cjs/commands/UpdateBackendAPICommand.js +2 -2
- package/dist-cjs/commands/UpdateBackendAuthCommand.js +2 -2
- package/dist-cjs/commands/UpdateBackendConfigCommand.js +2 -2
- package/dist-cjs/commands/UpdateBackendJobCommand.js +2 -2
- package/dist-cjs/commands/UpdateBackendStorageCommand.js +2 -2
- package/dist-cjs/models/models_0.js +387 -579
- package/dist-cjs/protocols/Aws_restJson1.js +3 -0
- package/dist-es/commands/CloneBackendCommand.js +3 -3
- package/dist-es/commands/CreateBackendAPICommand.js +3 -3
- package/dist-es/commands/CreateBackendAuthCommand.js +3 -3
- package/dist-es/commands/CreateBackendCommand.js +3 -3
- package/dist-es/commands/CreateBackendConfigCommand.js +3 -3
- package/dist-es/commands/CreateBackendStorageCommand.js +3 -3
- package/dist-es/commands/CreateTokenCommand.js +3 -3
- package/dist-es/commands/DeleteBackendAPICommand.js +3 -3
- package/dist-es/commands/DeleteBackendAuthCommand.js +3 -3
- package/dist-es/commands/DeleteBackendCommand.js +3 -3
- package/dist-es/commands/DeleteBackendStorageCommand.js +3 -3
- package/dist-es/commands/DeleteTokenCommand.js +3 -3
- package/dist-es/commands/GenerateBackendAPIModelsCommand.js +3 -3
- package/dist-es/commands/GetBackendAPICommand.js +3 -3
- package/dist-es/commands/GetBackendAPIModelsCommand.js +3 -3
- package/dist-es/commands/GetBackendAuthCommand.js +3 -3
- package/dist-es/commands/GetBackendCommand.js +3 -3
- package/dist-es/commands/GetBackendJobCommand.js +3 -3
- package/dist-es/commands/GetBackendStorageCommand.js +3 -3
- package/dist-es/commands/GetTokenCommand.js +3 -3
- package/dist-es/commands/ImportBackendAuthCommand.js +3 -3
- package/dist-es/commands/ImportBackendStorageCommand.js +3 -3
- package/dist-es/commands/ListBackendJobsCommand.js +3 -3
- package/dist-es/commands/ListS3BucketsCommand.js +3 -3
- package/dist-es/commands/RemoveAllBackendsCommand.js +3 -3
- package/dist-es/commands/RemoveBackendConfigCommand.js +3 -3
- package/dist-es/commands/UpdateBackendAPICommand.js +3 -3
- package/dist-es/commands/UpdateBackendAuthCommand.js +3 -3
- package/dist-es/commands/UpdateBackendConfigCommand.js +3 -3
- package/dist-es/commands/UpdateBackendJobCommand.js +3 -3
- package/dist-es/commands/UpdateBackendStorageCommand.js +3 -3
- package/dist-es/models/models_0.js +96 -384
- package/dist-es/protocols/Aws_restJson1.js +3 -0
- package/dist-types/models/models_0.d.ts +384 -576
- package/dist-types/ts3.4/models/models_0.d.ts +192 -384
- package/package.json +9 -9
|
@@ -3915,6 +3915,9 @@ const loadRestJsonErrorCode = (output, data) => {
|
|
|
3915
3915
|
const findKey = (object, key) => Object.keys(object).find((k) => k.toLowerCase() === key.toLowerCase());
|
|
3916
3916
|
const sanitizeErrorCode = (rawValue) => {
|
|
3917
3917
|
let cleanValue = rawValue;
|
|
3918
|
+
if (typeof cleanValue === "number") {
|
|
3919
|
+
cleanValue = cleanValue.toString();
|
|
3920
|
+
}
|
|
3918
3921
|
if (cleanValue.indexOf(":") >= 0) {
|
|
3919
3922
|
cleanValue = cleanValue.split(":")[0];
|
|
3920
3923
|
}
|
|
@@ -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 { CloneBackendRequestFilterSensitiveLog, CloneBackendResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1CloneBackendCommand, serializeAws_restJson1CloneBackendCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var CloneBackendCommand = (function (_super) {
|
|
7
7
|
__extends(CloneBackendCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CloneBackendCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CloneBackendRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CloneBackendResponseFilterSensitiveLog,
|
|
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 { CreateBackendAPIRequestFilterSensitiveLog, CreateBackendAPIResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1CreateBackendAPICommand, serializeAws_restJson1CreateBackendAPICommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var CreateBackendAPICommand = (function (_super) {
|
|
7
7
|
__extends(CreateBackendAPICommand, _super);
|
|
@@ -20,8 +20,8 @@ var CreateBackendAPICommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CreateBackendAPIRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreateBackendAPIResponseFilterSensitiveLog,
|
|
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 { CreateBackendAuthRequestFilterSensitiveLog, CreateBackendAuthResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1CreateBackendAuthCommand, serializeAws_restJson1CreateBackendAuthCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var CreateBackendAuthCommand = (function (_super) {
|
|
7
7
|
__extends(CreateBackendAuthCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CreateBackendAuthCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CreateBackendAuthRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreateBackendAuthResponseFilterSensitiveLog,
|
|
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 { CreateBackendRequestFilterSensitiveLog, CreateBackendResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1CreateBackendCommand, serializeAws_restJson1CreateBackendCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var CreateBackendCommand = (function (_super) {
|
|
7
7
|
__extends(CreateBackendCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CreateBackendCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CreateBackendRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreateBackendResponseFilterSensitiveLog,
|
|
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 { CreateBackendConfigRequestFilterSensitiveLog, CreateBackendConfigResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1CreateBackendConfigCommand, serializeAws_restJson1CreateBackendConfigCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var CreateBackendConfigCommand = (function (_super) {
|
|
7
7
|
__extends(CreateBackendConfigCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CreateBackendConfigCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CreateBackendConfigRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreateBackendConfigResponseFilterSensitiveLog,
|
|
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 { CreateBackendStorageRequestFilterSensitiveLog, CreateBackendStorageResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1CreateBackendStorageCommand, serializeAws_restJson1CreateBackendStorageCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var CreateBackendStorageCommand = (function (_super) {
|
|
7
7
|
__extends(CreateBackendStorageCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CreateBackendStorageCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CreateBackendStorageRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreateBackendStorageResponseFilterSensitiveLog,
|
|
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 { CreateTokenRequestFilterSensitiveLog, CreateTokenResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1CreateTokenCommand, serializeAws_restJson1CreateTokenCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var CreateTokenCommand = (function (_super) {
|
|
7
7
|
__extends(CreateTokenCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CreateTokenCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CreateTokenRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreateTokenResponseFilterSensitiveLog,
|
|
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 { DeleteBackendAPIRequestFilterSensitiveLog, DeleteBackendAPIResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DeleteBackendAPICommand, serializeAws_restJson1DeleteBackendAPICommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DeleteBackendAPICommand = (function (_super) {
|
|
7
7
|
__extends(DeleteBackendAPICommand, _super);
|
|
@@ -20,8 +20,8 @@ var DeleteBackendAPICommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DeleteBackendAPIRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DeleteBackendAPIResponseFilterSensitiveLog,
|
|
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 { DeleteBackendAuthRequestFilterSensitiveLog, DeleteBackendAuthResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DeleteBackendAuthCommand, serializeAws_restJson1DeleteBackendAuthCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DeleteBackendAuthCommand = (function (_super) {
|
|
7
7
|
__extends(DeleteBackendAuthCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DeleteBackendAuthCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DeleteBackendAuthRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DeleteBackendAuthResponseFilterSensitiveLog,
|
|
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 { DeleteBackendRequestFilterSensitiveLog, DeleteBackendResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DeleteBackendCommand, serializeAws_restJson1DeleteBackendCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DeleteBackendCommand = (function (_super) {
|
|
7
7
|
__extends(DeleteBackendCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DeleteBackendCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DeleteBackendRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DeleteBackendResponseFilterSensitiveLog,
|
|
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 { DeleteBackendStorageRequestFilterSensitiveLog, DeleteBackendStorageResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DeleteBackendStorageCommand, serializeAws_restJson1DeleteBackendStorageCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DeleteBackendStorageCommand = (function (_super) {
|
|
7
7
|
__extends(DeleteBackendStorageCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DeleteBackendStorageCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DeleteBackendStorageRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DeleteBackendStorageResponseFilterSensitiveLog,
|
|
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 { DeleteTokenRequestFilterSensitiveLog, DeleteTokenResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DeleteTokenCommand, serializeAws_restJson1DeleteTokenCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DeleteTokenCommand = (function (_super) {
|
|
7
7
|
__extends(DeleteTokenCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DeleteTokenCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DeleteTokenRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DeleteTokenResponseFilterSensitiveLog,
|
|
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 { GenerateBackendAPIModelsRequestFilterSensitiveLog, GenerateBackendAPIModelsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1GenerateBackendAPIModelsCommand, serializeAws_restJson1GenerateBackendAPIModelsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var GenerateBackendAPIModelsCommand = (function (_super) {
|
|
7
7
|
__extends(GenerateBackendAPIModelsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GenerateBackendAPIModelsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GenerateBackendAPIModelsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GenerateBackendAPIModelsResponseFilterSensitiveLog,
|
|
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 { GetBackendAPIRequestFilterSensitiveLog, GetBackendAPIResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1GetBackendAPICommand, serializeAws_restJson1GetBackendAPICommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var GetBackendAPICommand = (function (_super) {
|
|
7
7
|
__extends(GetBackendAPICommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetBackendAPICommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetBackendAPIRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetBackendAPIResponseFilterSensitiveLog,
|
|
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 { GetBackendAPIModelsRequestFilterSensitiveLog, GetBackendAPIModelsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1GetBackendAPIModelsCommand, serializeAws_restJson1GetBackendAPIModelsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var GetBackendAPIModelsCommand = (function (_super) {
|
|
7
7
|
__extends(GetBackendAPIModelsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetBackendAPIModelsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetBackendAPIModelsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetBackendAPIModelsResponseFilterSensitiveLog,
|
|
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 { GetBackendAuthRequestFilterSensitiveLog, GetBackendAuthResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1GetBackendAuthCommand, serializeAws_restJson1GetBackendAuthCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var GetBackendAuthCommand = (function (_super) {
|
|
7
7
|
__extends(GetBackendAuthCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetBackendAuthCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetBackendAuthRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetBackendAuthResponseFilterSensitiveLog,
|
|
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 { GetBackendRequestFilterSensitiveLog, GetBackendResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1GetBackendCommand, serializeAws_restJson1GetBackendCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var GetBackendCommand = (function (_super) {
|
|
7
7
|
__extends(GetBackendCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetBackendCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetBackendRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetBackendResponseFilterSensitiveLog,
|
|
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 { GetBackendJobRequestFilterSensitiveLog, GetBackendJobResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1GetBackendJobCommand, serializeAws_restJson1GetBackendJobCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var GetBackendJobCommand = (function (_super) {
|
|
7
7
|
__extends(GetBackendJobCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetBackendJobCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetBackendJobRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetBackendJobResponseFilterSensitiveLog,
|
|
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 { GetBackendStorageRequestFilterSensitiveLog, GetBackendStorageResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1GetBackendStorageCommand, serializeAws_restJson1GetBackendStorageCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var GetBackendStorageCommand = (function (_super) {
|
|
7
7
|
__extends(GetBackendStorageCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetBackendStorageCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetBackendStorageRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetBackendStorageResponseFilterSensitiveLog,
|
|
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 { GetTokenRequestFilterSensitiveLog, GetTokenResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1GetTokenCommand, serializeAws_restJson1GetTokenCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var GetTokenCommand = (function (_super) {
|
|
7
7
|
__extends(GetTokenCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetTokenCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetTokenRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetTokenResponseFilterSensitiveLog,
|
|
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 { ImportBackendAuthRequestFilterSensitiveLog, ImportBackendAuthResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ImportBackendAuthCommand, serializeAws_restJson1ImportBackendAuthCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ImportBackendAuthCommand = (function (_super) {
|
|
7
7
|
__extends(ImportBackendAuthCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ImportBackendAuthCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ImportBackendAuthRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ImportBackendAuthResponseFilterSensitiveLog,
|
|
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 { ImportBackendStorageRequestFilterSensitiveLog, ImportBackendStorageResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ImportBackendStorageCommand, serializeAws_restJson1ImportBackendStorageCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ImportBackendStorageCommand = (function (_super) {
|
|
7
7
|
__extends(ImportBackendStorageCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ImportBackendStorageCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ImportBackendStorageRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ImportBackendStorageResponseFilterSensitiveLog,
|
|
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 { ListBackendJobsRequestFilterSensitiveLog, ListBackendJobsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListBackendJobsCommand, serializeAws_restJson1ListBackendJobsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListBackendJobsCommand = (function (_super) {
|
|
7
7
|
__extends(ListBackendJobsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListBackendJobsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListBackendJobsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListBackendJobsResponseFilterSensitiveLog,
|
|
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 { ListS3BucketsRequestFilterSensitiveLog, ListS3BucketsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListS3BucketsCommand, serializeAws_restJson1ListS3BucketsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListS3BucketsCommand = (function (_super) {
|
|
7
7
|
__extends(ListS3BucketsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListS3BucketsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListS3BucketsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListS3BucketsResponseFilterSensitiveLog,
|
|
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 { RemoveAllBackendsRequestFilterSensitiveLog, RemoveAllBackendsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1RemoveAllBackendsCommand, serializeAws_restJson1RemoveAllBackendsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var RemoveAllBackendsCommand = (function (_super) {
|
|
7
7
|
__extends(RemoveAllBackendsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var RemoveAllBackendsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: RemoveAllBackendsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: RemoveAllBackendsResponseFilterSensitiveLog,
|
|
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 { RemoveBackendConfigRequestFilterSensitiveLog, RemoveBackendConfigResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1RemoveBackendConfigCommand, serializeAws_restJson1RemoveBackendConfigCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var RemoveBackendConfigCommand = (function (_super) {
|
|
7
7
|
__extends(RemoveBackendConfigCommand, _super);
|
|
@@ -20,8 +20,8 @@ var RemoveBackendConfigCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: RemoveBackendConfigRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: RemoveBackendConfigResponseFilterSensitiveLog,
|
|
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 { UpdateBackendAPIRequestFilterSensitiveLog, UpdateBackendAPIResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1UpdateBackendAPICommand, serializeAws_restJson1UpdateBackendAPICommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var UpdateBackendAPICommand = (function (_super) {
|
|
7
7
|
__extends(UpdateBackendAPICommand, _super);
|
|
@@ -20,8 +20,8 @@ var UpdateBackendAPICommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UpdateBackendAPIRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UpdateBackendAPIResponseFilterSensitiveLog,
|
|
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 { UpdateBackendAuthRequestFilterSensitiveLog, UpdateBackendAuthResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1UpdateBackendAuthCommand, serializeAws_restJson1UpdateBackendAuthCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var UpdateBackendAuthCommand = (function (_super) {
|
|
7
7
|
__extends(UpdateBackendAuthCommand, _super);
|
|
@@ -20,8 +20,8 @@ var UpdateBackendAuthCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UpdateBackendAuthRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UpdateBackendAuthResponseFilterSensitiveLog,
|
|
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 { UpdateBackendConfigRequestFilterSensitiveLog, UpdateBackendConfigResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1UpdateBackendConfigCommand, serializeAws_restJson1UpdateBackendConfigCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var UpdateBackendConfigCommand = (function (_super) {
|
|
7
7
|
__extends(UpdateBackendConfigCommand, _super);
|
|
@@ -20,8 +20,8 @@ var UpdateBackendConfigCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UpdateBackendConfigRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UpdateBackendConfigResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|