@aws-sdk/client-snowball 3.183.0 → 3.185.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.
Files changed (44) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist-cjs/protocols/Aws_json1_1.js +2 -2
  3. package/dist-es/Snowball.js +109 -102
  4. package/dist-es/SnowballClient.js +28 -22
  5. package/dist-es/commands/CancelClusterCommand.js +28 -21
  6. package/dist-es/commands/CancelJobCommand.js +28 -21
  7. package/dist-es/commands/CreateAddressCommand.js +28 -21
  8. package/dist-es/commands/CreateClusterCommand.js +28 -21
  9. package/dist-es/commands/CreateJobCommand.js +28 -21
  10. package/dist-es/commands/CreateLongTermPricingCommand.js +28 -21
  11. package/dist-es/commands/CreateReturnShippingLabelCommand.js +28 -21
  12. package/dist-es/commands/DescribeAddressCommand.js +28 -21
  13. package/dist-es/commands/DescribeAddressesCommand.js +28 -21
  14. package/dist-es/commands/DescribeClusterCommand.js +28 -21
  15. package/dist-es/commands/DescribeJobCommand.js +28 -21
  16. package/dist-es/commands/DescribeReturnShippingLabelCommand.js +28 -21
  17. package/dist-es/commands/GetJobManifestCommand.js +28 -21
  18. package/dist-es/commands/GetJobUnlockCodeCommand.js +28 -21
  19. package/dist-es/commands/GetSnowballUsageCommand.js +28 -21
  20. package/dist-es/commands/GetSoftwareUpdatesCommand.js +28 -21
  21. package/dist-es/commands/ListClusterJobsCommand.js +28 -21
  22. package/dist-es/commands/ListClustersCommand.js +28 -21
  23. package/dist-es/commands/ListCompatibleImagesCommand.js +28 -21
  24. package/dist-es/commands/ListJobsCommand.js +28 -21
  25. package/dist-es/commands/ListLongTermPricingCommand.js +28 -21
  26. package/dist-es/commands/UpdateClusterCommand.js +28 -21
  27. package/dist-es/commands/UpdateJobCommand.js +28 -21
  28. package/dist-es/commands/UpdateJobShipmentStateCommand.js +28 -21
  29. package/dist-es/commands/UpdateLongTermPricingCommand.js +28 -21
  30. package/dist-es/endpoints.js +8 -8
  31. package/dist-es/models/SnowballServiceException.js +10 -5
  32. package/dist-es/models/models_0.js +212 -365
  33. package/dist-es/pagination/DescribeAddressesPaginator.js +68 -25
  34. package/dist-es/pagination/ListClusterJobsPaginator.js +68 -25
  35. package/dist-es/pagination/ListClustersPaginator.js +68 -25
  36. package/dist-es/pagination/ListCompatibleImagesPaginator.js +68 -25
  37. package/dist-es/pagination/ListJobsPaginator.js +68 -25
  38. package/dist-es/pagination/ListLongTermPricingPaginator.js +68 -25
  39. package/dist-es/protocols/Aws_json1_1.js +2088 -1699
  40. package/dist-es/runtimeConfig.browser.js +12 -26
  41. package/dist-es/runtimeConfig.js +12 -30
  42. package/dist-es/runtimeConfig.native.js +5 -8
  43. package/dist-es/runtimeConfig.shared.js +11 -8
  44. package/package.json +5 -5
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { DescribeReturnShippingLabelRequestFilterSensitiveLog, DescribeReturnShippingLabelResultFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1DescribeReturnShippingLabelCommand, serializeAws_json1_1DescribeReturnShippingLabelCommand, } from "../protocols/Aws_json1_1";
5
- export class DescribeReturnShippingLabelCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DescribeReturnShippingLabelCommand = (function (_super) {
7
+ __extends(DescribeReturnShippingLabelCommand, _super);
8
+ function DescribeReturnShippingLabelCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DescribeReturnShippingLabelCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "SnowballClient";
15
- const commandName = "DescribeReturnShippingLabelCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "SnowballClient";
18
+ var commandName = "DescribeReturnShippingLabelCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DescribeReturnShippingLabelRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: DescribeReturnShippingLabelResultFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ DescribeReturnShippingLabelCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1DescribeReturnShippingLabelCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DescribeReturnShippingLabelCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1DescribeReturnShippingLabelCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DescribeReturnShippingLabelCommand;
38
+ }($Command));
39
+ export { DescribeReturnShippingLabelCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { GetJobManifestRequestFilterSensitiveLog, GetJobManifestResultFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1GetJobManifestCommand, serializeAws_json1_1GetJobManifestCommand, } from "../protocols/Aws_json1_1";
5
- export class GetJobManifestCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var GetJobManifestCommand = (function (_super) {
7
+ __extends(GetJobManifestCommand, _super);
8
+ function GetJobManifestCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ GetJobManifestCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "SnowballClient";
15
- const commandName = "GetJobManifestCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "SnowballClient";
18
+ var commandName = "GetJobManifestCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: GetJobManifestRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: GetJobManifestResultFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ GetJobManifestCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1GetJobManifestCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ GetJobManifestCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1GetJobManifestCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return GetJobManifestCommand;
38
+ }($Command));
39
+ export { GetJobManifestCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { GetJobUnlockCodeRequestFilterSensitiveLog, GetJobUnlockCodeResultFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1GetJobUnlockCodeCommand, serializeAws_json1_1GetJobUnlockCodeCommand, } from "../protocols/Aws_json1_1";
5
- export class GetJobUnlockCodeCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var GetJobUnlockCodeCommand = (function (_super) {
7
+ __extends(GetJobUnlockCodeCommand, _super);
8
+ function GetJobUnlockCodeCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ GetJobUnlockCodeCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "SnowballClient";
15
- const commandName = "GetJobUnlockCodeCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "SnowballClient";
18
+ var commandName = "GetJobUnlockCodeCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: GetJobUnlockCodeRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: GetJobUnlockCodeResultFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ GetJobUnlockCodeCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1GetJobUnlockCodeCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ GetJobUnlockCodeCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1GetJobUnlockCodeCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return GetJobUnlockCodeCommand;
38
+ }($Command));
39
+ export { GetJobUnlockCodeCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { GetSnowballUsageRequestFilterSensitiveLog, GetSnowballUsageResultFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1GetSnowballUsageCommand, serializeAws_json1_1GetSnowballUsageCommand, } from "../protocols/Aws_json1_1";
5
- export class GetSnowballUsageCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var GetSnowballUsageCommand = (function (_super) {
7
+ __extends(GetSnowballUsageCommand, _super);
8
+ function GetSnowballUsageCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ GetSnowballUsageCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "SnowballClient";
15
- const commandName = "GetSnowballUsageCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "SnowballClient";
18
+ var commandName = "GetSnowballUsageCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: GetSnowballUsageRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: GetSnowballUsageResultFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ GetSnowballUsageCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1GetSnowballUsageCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ GetSnowballUsageCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1GetSnowballUsageCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return GetSnowballUsageCommand;
38
+ }($Command));
39
+ export { GetSnowballUsageCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { GetSoftwareUpdatesRequestFilterSensitiveLog, GetSoftwareUpdatesResultFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1GetSoftwareUpdatesCommand, serializeAws_json1_1GetSoftwareUpdatesCommand, } from "../protocols/Aws_json1_1";
5
- export class GetSoftwareUpdatesCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var GetSoftwareUpdatesCommand = (function (_super) {
7
+ __extends(GetSoftwareUpdatesCommand, _super);
8
+ function GetSoftwareUpdatesCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ GetSoftwareUpdatesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "SnowballClient";
15
- const commandName = "GetSoftwareUpdatesCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "SnowballClient";
18
+ var commandName = "GetSoftwareUpdatesCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: GetSoftwareUpdatesRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: GetSoftwareUpdatesResultFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ GetSoftwareUpdatesCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1GetSoftwareUpdatesCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ GetSoftwareUpdatesCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1GetSoftwareUpdatesCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return GetSoftwareUpdatesCommand;
38
+ }($Command));
39
+ export { GetSoftwareUpdatesCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { ListClusterJobsRequestFilterSensitiveLog, ListClusterJobsResultFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1ListClusterJobsCommand, serializeAws_json1_1ListClusterJobsCommand, } from "../protocols/Aws_json1_1";
5
- export class ListClusterJobsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListClusterJobsCommand = (function (_super) {
7
+ __extends(ListClusterJobsCommand, _super);
8
+ function ListClusterJobsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListClusterJobsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "SnowballClient";
15
- const commandName = "ListClusterJobsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "SnowballClient";
18
+ var commandName = "ListClusterJobsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListClusterJobsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListClusterJobsResultFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListClusterJobsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1ListClusterJobsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListClusterJobsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1ListClusterJobsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListClusterJobsCommand;
38
+ }($Command));
39
+ export { ListClusterJobsCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { ListClustersRequestFilterSensitiveLog, ListClustersResultFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1ListClustersCommand, serializeAws_json1_1ListClustersCommand, } from "../protocols/Aws_json1_1";
5
- export class ListClustersCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListClustersCommand = (function (_super) {
7
+ __extends(ListClustersCommand, _super);
8
+ function ListClustersCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListClustersCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "SnowballClient";
15
- const commandName = "ListClustersCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "SnowballClient";
18
+ var commandName = "ListClustersCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListClustersRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListClustersResultFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListClustersCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1ListClustersCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListClustersCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1ListClustersCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListClustersCommand;
38
+ }($Command));
39
+ export { ListClustersCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { ListCompatibleImagesRequestFilterSensitiveLog, ListCompatibleImagesResultFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1ListCompatibleImagesCommand, serializeAws_json1_1ListCompatibleImagesCommand, } from "../protocols/Aws_json1_1";
5
- export class ListCompatibleImagesCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListCompatibleImagesCommand = (function (_super) {
7
+ __extends(ListCompatibleImagesCommand, _super);
8
+ function ListCompatibleImagesCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListCompatibleImagesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "SnowballClient";
15
- const commandName = "ListCompatibleImagesCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "SnowballClient";
18
+ var commandName = "ListCompatibleImagesCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListCompatibleImagesRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListCompatibleImagesResultFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListCompatibleImagesCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1ListCompatibleImagesCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListCompatibleImagesCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1ListCompatibleImagesCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListCompatibleImagesCommand;
38
+ }($Command));
39
+ export { ListCompatibleImagesCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { ListJobsRequestFilterSensitiveLog, ListJobsResultFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1ListJobsCommand, serializeAws_json1_1ListJobsCommand } from "../protocols/Aws_json1_1";
5
- export class ListJobsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListJobsCommand = (function (_super) {
7
+ __extends(ListJobsCommand, _super);
8
+ function ListJobsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListJobsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "SnowballClient";
15
- const commandName = "ListJobsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "SnowballClient";
18
+ var commandName = "ListJobsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListJobsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListJobsResultFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListJobsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1ListJobsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListJobsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1ListJobsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListJobsCommand;
38
+ }($Command));
39
+ export { ListJobsCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { ListLongTermPricingRequestFilterSensitiveLog, ListLongTermPricingResultFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1ListLongTermPricingCommand, serializeAws_json1_1ListLongTermPricingCommand, } from "../protocols/Aws_json1_1";
5
- export class ListLongTermPricingCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListLongTermPricingCommand = (function (_super) {
7
+ __extends(ListLongTermPricingCommand, _super);
8
+ function ListLongTermPricingCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListLongTermPricingCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "SnowballClient";
15
- const commandName = "ListLongTermPricingCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "SnowballClient";
18
+ var commandName = "ListLongTermPricingCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListLongTermPricingRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListLongTermPricingResultFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListLongTermPricingCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1ListLongTermPricingCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListLongTermPricingCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1ListLongTermPricingCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListLongTermPricingCommand;
38
+ }($Command));
39
+ export { ListLongTermPricingCommand };