@aws-sdk/client-snowball 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/CancelClusterCommand.js +2 -2
- package/dist-cjs/commands/CancelJobCommand.js +2 -2
- package/dist-cjs/commands/CreateAddressCommand.js +2 -2
- package/dist-cjs/commands/CreateClusterCommand.js +2 -2
- package/dist-cjs/commands/CreateJobCommand.js +2 -2
- package/dist-cjs/commands/CreateLongTermPricingCommand.js +2 -2
- package/dist-cjs/commands/CreateReturnShippingLabelCommand.js +2 -2
- package/dist-cjs/commands/DescribeAddressCommand.js +2 -2
- package/dist-cjs/commands/DescribeAddressesCommand.js +2 -2
- package/dist-cjs/commands/DescribeClusterCommand.js +2 -2
- package/dist-cjs/commands/DescribeJobCommand.js +2 -2
- package/dist-cjs/commands/DescribeReturnShippingLabelCommand.js +2 -2
- package/dist-cjs/commands/GetJobManifestCommand.js +2 -2
- package/dist-cjs/commands/GetJobUnlockCodeCommand.js +2 -2
- package/dist-cjs/commands/GetSnowballUsageCommand.js +2 -2
- package/dist-cjs/commands/GetSoftwareUpdatesCommand.js +2 -2
- package/dist-cjs/commands/ListClusterJobsCommand.js +2 -2
- package/dist-cjs/commands/ListClustersCommand.js +2 -2
- package/dist-cjs/commands/ListCompatibleImagesCommand.js +2 -2
- package/dist-cjs/commands/ListJobsCommand.js +2 -2
- package/dist-cjs/commands/ListLongTermPricingCommand.js +2 -2
- package/dist-cjs/commands/UpdateClusterCommand.js +2 -2
- package/dist-cjs/commands/UpdateJobCommand.js +2 -2
- package/dist-cjs/commands/UpdateJobShipmentStateCommand.js +2 -2
- package/dist-cjs/commands/UpdateLongTermPricingCommand.js +2 -2
- package/dist-cjs/models/models_0.js +311 -465
- package/dist-cjs/protocols/Aws_json1_1.js +127 -223
- package/dist-es/commands/CancelClusterCommand.js +3 -3
- package/dist-es/commands/CancelJobCommand.js +3 -3
- package/dist-es/commands/CreateAddressCommand.js +3 -3
- package/dist-es/commands/CreateClusterCommand.js +3 -3
- package/dist-es/commands/CreateJobCommand.js +3 -3
- package/dist-es/commands/CreateLongTermPricingCommand.js +3 -3
- package/dist-es/commands/CreateReturnShippingLabelCommand.js +3 -3
- package/dist-es/commands/DescribeAddressCommand.js +3 -3
- package/dist-es/commands/DescribeAddressesCommand.js +3 -3
- package/dist-es/commands/DescribeClusterCommand.js +3 -3
- package/dist-es/commands/DescribeJobCommand.js +3 -3
- package/dist-es/commands/DescribeReturnShippingLabelCommand.js +3 -3
- package/dist-es/commands/GetJobManifestCommand.js +3 -3
- package/dist-es/commands/GetJobUnlockCodeCommand.js +3 -3
- package/dist-es/commands/GetSnowballUsageCommand.js +3 -3
- package/dist-es/commands/GetSoftwareUpdatesCommand.js +3 -3
- package/dist-es/commands/ListClusterJobsCommand.js +3 -3
- package/dist-es/commands/ListClustersCommand.js +3 -3
- package/dist-es/commands/ListCompatibleImagesCommand.js +3 -3
- package/dist-es/commands/ListJobsCommand.js +3 -3
- package/dist-es/commands/ListLongTermPricingCommand.js +3 -3
- package/dist-es/commands/UpdateClusterCommand.js +3 -3
- package/dist-es/commands/UpdateJobCommand.js +3 -3
- package/dist-es/commands/UpdateJobShipmentStateCommand.js +3 -3
- package/dist-es/commands/UpdateLongTermPricingCommand.js +3 -3
- package/dist-es/models/models_0.js +77 -308
- package/dist-es/protocols/Aws_json1_1.js +201 -224
- package/dist-types/models/models_0.d.ts +308 -462
- package/dist-types/ts3.4/models/models_0.d.ts +154 -308
- 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 { CancelClusterRequestFilterSensitiveLog, CancelClusterResultFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1CancelClusterCommand, serializeAws_json1_1CancelClusterCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var CancelClusterCommand = (function (_super) {
|
|
7
7
|
__extends(CancelClusterCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CancelClusterCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CancelClusterRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CancelClusterResultFilterSensitiveLog,
|
|
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 { CancelJobRequestFilterSensitiveLog, CancelJobResultFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1CancelJobCommand, serializeAws_json1_1CancelJobCommand } from "../protocols/Aws_json1_1";
|
|
6
6
|
var CancelJobCommand = (function (_super) {
|
|
7
7
|
__extends(CancelJobCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CancelJobCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CancelJobRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CancelJobResultFilterSensitiveLog,
|
|
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 { CreateAddressRequestFilterSensitiveLog, CreateAddressResultFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1CreateAddressCommand, serializeAws_json1_1CreateAddressCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var CreateAddressCommand = (function (_super) {
|
|
7
7
|
__extends(CreateAddressCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CreateAddressCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CreateAddressRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreateAddressResultFilterSensitiveLog,
|
|
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 { CreateClusterRequestFilterSensitiveLog, CreateClusterResultFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1CreateClusterCommand, serializeAws_json1_1CreateClusterCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var CreateClusterCommand = (function (_super) {
|
|
7
7
|
__extends(CreateClusterCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CreateClusterCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CreateClusterRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreateClusterResultFilterSensitiveLog,
|
|
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, CreateJobResultFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1CreateJobCommand, serializeAws_json1_1CreateJobCommand } from "../protocols/Aws_json1_1";
|
|
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: CreateJobResultFilterSensitiveLog,
|
|
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 { CreateLongTermPricingRequestFilterSensitiveLog, CreateLongTermPricingResultFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1CreateLongTermPricingCommand, serializeAws_json1_1CreateLongTermPricingCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var CreateLongTermPricingCommand = (function (_super) {
|
|
7
7
|
__extends(CreateLongTermPricingCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CreateLongTermPricingCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CreateLongTermPricingRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreateLongTermPricingResultFilterSensitiveLog,
|
|
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 { CreateReturnShippingLabelRequestFilterSensitiveLog, CreateReturnShippingLabelResultFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1CreateReturnShippingLabelCommand, serializeAws_json1_1CreateReturnShippingLabelCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var CreateReturnShippingLabelCommand = (function (_super) {
|
|
7
7
|
__extends(CreateReturnShippingLabelCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CreateReturnShippingLabelCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CreateReturnShippingLabelRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreateReturnShippingLabelResultFilterSensitiveLog,
|
|
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 { DescribeAddressRequestFilterSensitiveLog, DescribeAddressResultFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DescribeAddressCommand, serializeAws_json1_1DescribeAddressCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DescribeAddressCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeAddressCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeAddressCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeAddressRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeAddressResultFilterSensitiveLog,
|
|
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 { DescribeAddressesRequestFilterSensitiveLog, DescribeAddressesResultFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DescribeAddressesCommand, serializeAws_json1_1DescribeAddressesCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DescribeAddressesCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeAddressesCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeAddressesCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeAddressesRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeAddressesResultFilterSensitiveLog,
|
|
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 { DescribeClusterRequestFilterSensitiveLog, DescribeClusterResultFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DescribeClusterCommand, serializeAws_json1_1DescribeClusterCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DescribeClusterCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeClusterCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeClusterCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeClusterRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeClusterResultFilterSensitiveLog,
|
|
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 { DescribeJobRequestFilterSensitiveLog, DescribeJobResultFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DescribeJobCommand, serializeAws_json1_1DescribeJobCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DescribeJobCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeJobCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeJobCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeJobRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeJobResultFilterSensitiveLog,
|
|
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 { DescribeReturnShippingLabelRequestFilterSensitiveLog, DescribeReturnShippingLabelResultFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1DescribeReturnShippingLabelCommand, serializeAws_json1_1DescribeReturnShippingLabelCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DescribeReturnShippingLabelCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeReturnShippingLabelCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeReturnShippingLabelCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeReturnShippingLabelRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeReturnShippingLabelResultFilterSensitiveLog,
|
|
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 { GetJobManifestRequestFilterSensitiveLog, GetJobManifestResultFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1GetJobManifestCommand, serializeAws_json1_1GetJobManifestCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var GetJobManifestCommand = (function (_super) {
|
|
7
7
|
__extends(GetJobManifestCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetJobManifestCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetJobManifestRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetJobManifestResultFilterSensitiveLog,
|
|
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 { GetJobUnlockCodeRequestFilterSensitiveLog, GetJobUnlockCodeResultFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1GetJobUnlockCodeCommand, serializeAws_json1_1GetJobUnlockCodeCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var GetJobUnlockCodeCommand = (function (_super) {
|
|
7
7
|
__extends(GetJobUnlockCodeCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetJobUnlockCodeCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetJobUnlockCodeRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetJobUnlockCodeResultFilterSensitiveLog,
|
|
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 { GetSnowballUsageRequestFilterSensitiveLog, GetSnowballUsageResultFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1GetSnowballUsageCommand, serializeAws_json1_1GetSnowballUsageCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var GetSnowballUsageCommand = (function (_super) {
|
|
7
7
|
__extends(GetSnowballUsageCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetSnowballUsageCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetSnowballUsageRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetSnowballUsageResultFilterSensitiveLog,
|
|
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 { GetSoftwareUpdatesRequestFilterSensitiveLog, GetSoftwareUpdatesResultFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1GetSoftwareUpdatesCommand, serializeAws_json1_1GetSoftwareUpdatesCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var GetSoftwareUpdatesCommand = (function (_super) {
|
|
7
7
|
__extends(GetSoftwareUpdatesCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetSoftwareUpdatesCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetSoftwareUpdatesRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetSoftwareUpdatesResultFilterSensitiveLog,
|
|
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 { ListClusterJobsRequestFilterSensitiveLog, ListClusterJobsResultFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1ListClusterJobsCommand, serializeAws_json1_1ListClusterJobsCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var ListClusterJobsCommand = (function (_super) {
|
|
7
7
|
__extends(ListClusterJobsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListClusterJobsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListClusterJobsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListClusterJobsResultFilterSensitiveLog,
|
|
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 { ListClustersRequestFilterSensitiveLog, ListClustersResultFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1ListClustersCommand, serializeAws_json1_1ListClustersCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var ListClustersCommand = (function (_super) {
|
|
7
7
|
__extends(ListClustersCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListClustersCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListClustersRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListClustersResultFilterSensitiveLog,
|
|
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 { ListCompatibleImagesRequestFilterSensitiveLog, ListCompatibleImagesResultFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1ListCompatibleImagesCommand, serializeAws_json1_1ListCompatibleImagesCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var ListCompatibleImagesCommand = (function (_super) {
|
|
7
7
|
__extends(ListCompatibleImagesCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListCompatibleImagesCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListCompatibleImagesRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListCompatibleImagesResultFilterSensitiveLog,
|
|
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, ListJobsResultFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1ListJobsCommand, serializeAws_json1_1ListJobsCommand } from "../protocols/Aws_json1_1";
|
|
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: ListJobsResultFilterSensitiveLog,
|
|
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 { ListLongTermPricingRequestFilterSensitiveLog, ListLongTermPricingResultFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1ListLongTermPricingCommand, serializeAws_json1_1ListLongTermPricingCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var ListLongTermPricingCommand = (function (_super) {
|
|
7
7
|
__extends(ListLongTermPricingCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListLongTermPricingCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListLongTermPricingRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListLongTermPricingResultFilterSensitiveLog,
|
|
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 { UpdateClusterRequestFilterSensitiveLog, UpdateClusterResultFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1UpdateClusterCommand, serializeAws_json1_1UpdateClusterCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var UpdateClusterCommand = (function (_super) {
|
|
7
7
|
__extends(UpdateClusterCommand, _super);
|
|
@@ -20,8 +20,8 @@ var UpdateClusterCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UpdateClusterRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UpdateClusterResultFilterSensitiveLog,
|
|
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 { UpdateJobRequestFilterSensitiveLog, UpdateJobResultFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1UpdateJobCommand, serializeAws_json1_1UpdateJobCommand } from "../protocols/Aws_json1_1";
|
|
6
6
|
var UpdateJobCommand = (function (_super) {
|
|
7
7
|
__extends(UpdateJobCommand, _super);
|
|
@@ -20,8 +20,8 @@ var UpdateJobCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UpdateJobRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UpdateJobResultFilterSensitiveLog,
|
|
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 { UpdateJobShipmentStateRequestFilterSensitiveLog, UpdateJobShipmentStateResultFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1UpdateJobShipmentStateCommand, serializeAws_json1_1UpdateJobShipmentStateCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var UpdateJobShipmentStateCommand = (function (_super) {
|
|
7
7
|
__extends(UpdateJobShipmentStateCommand, _super);
|
|
@@ -20,8 +20,8 @@ var UpdateJobShipmentStateCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UpdateJobShipmentStateRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UpdateJobShipmentStateResultFilterSensitiveLog,
|
|
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 { UpdateLongTermPricingRequestFilterSensitiveLog, UpdateLongTermPricingResultFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_1UpdateLongTermPricingCommand, serializeAws_json1_1UpdateLongTermPricingCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var UpdateLongTermPricingCommand = (function (_super) {
|
|
7
7
|
__extends(UpdateLongTermPricingCommand, _super);
|
|
@@ -20,8 +20,8 @@ var UpdateLongTermPricingCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UpdateLongTermPricingRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UpdateLongTermPricingResultFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|