@aws-sdk/client-snowball 3.489.0 → 3.495.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 (48) hide show
  1. package/dist-cjs/Snowball.js +1 -65
  2. package/dist-cjs/SnowballClient.js +1 -43
  3. package/dist-cjs/commands/CancelClusterCommand.js +1 -28
  4. package/dist-cjs/commands/CancelJobCommand.js +1 -28
  5. package/dist-cjs/commands/CreateAddressCommand.js +1 -28
  6. package/dist-cjs/commands/CreateClusterCommand.js +1 -28
  7. package/dist-cjs/commands/CreateJobCommand.js +1 -29
  8. package/dist-cjs/commands/CreateLongTermPricingCommand.js +1 -28
  9. package/dist-cjs/commands/CreateReturnShippingLabelCommand.js +1 -28
  10. package/dist-cjs/commands/DescribeAddressCommand.js +1 -28
  11. package/dist-cjs/commands/DescribeAddressesCommand.js +1 -28
  12. package/dist-cjs/commands/DescribeClusterCommand.js +1 -28
  13. package/dist-cjs/commands/DescribeJobCommand.js +1 -29
  14. package/dist-cjs/commands/DescribeReturnShippingLabelCommand.js +1 -28
  15. package/dist-cjs/commands/GetJobManifestCommand.js +1 -28
  16. package/dist-cjs/commands/GetJobUnlockCodeCommand.js +1 -28
  17. package/dist-cjs/commands/GetSnowballUsageCommand.js +1 -28
  18. package/dist-cjs/commands/GetSoftwareUpdatesCommand.js +1 -28
  19. package/dist-cjs/commands/ListClusterJobsCommand.js +1 -28
  20. package/dist-cjs/commands/ListClustersCommand.js +1 -28
  21. package/dist-cjs/commands/ListCompatibleImagesCommand.js +1 -28
  22. package/dist-cjs/commands/ListJobsCommand.js +1 -28
  23. package/dist-cjs/commands/ListLongTermPricingCommand.js +1 -28
  24. package/dist-cjs/commands/ListPickupLocationsCommand.js +1 -28
  25. package/dist-cjs/commands/ListServiceVersionsCommand.js +1 -28
  26. package/dist-cjs/commands/UpdateClusterCommand.js +1 -28
  27. package/dist-cjs/commands/UpdateJobCommand.js +1 -29
  28. package/dist-cjs/commands/UpdateJobShipmentStateCommand.js +1 -28
  29. package/dist-cjs/commands/UpdateLongTermPricingCommand.js +1 -28
  30. package/dist-cjs/commands/index.js +1 -30
  31. package/dist-cjs/endpoint/EndpointParameters.js +1 -18
  32. package/dist-cjs/extensionConfiguration.js +1 -2
  33. package/dist-cjs/index.js +2714 -11
  34. package/dist-cjs/models/SnowballServiceException.js +1 -12
  35. package/dist-cjs/models/index.js +1 -4
  36. package/dist-cjs/models/models_0.js +1 -293
  37. package/dist-cjs/pagination/DescribeAddressesPaginator.js +1 -7
  38. package/dist-cjs/pagination/Interfaces.js +1 -2
  39. package/dist-cjs/pagination/ListClusterJobsPaginator.js +1 -7
  40. package/dist-cjs/pagination/ListClustersPaginator.js +1 -7
  41. package/dist-cjs/pagination/ListCompatibleImagesPaginator.js +1 -7
  42. package/dist-cjs/pagination/ListJobsPaginator.js +1 -7
  43. package/dist-cjs/pagination/ListLongTermPricingPaginator.js +1 -7
  44. package/dist-cjs/pagination/ListPickupLocationsPaginator.js +1 -7
  45. package/dist-cjs/pagination/index.js +1 -11
  46. package/dist-cjs/protocols/Aws_json1_1.js +1 -1648
  47. package/dist-cjs/runtimeExtensions.js +1 -22
  48. package/package.json +40 -40
@@ -1,65 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.Snowball = void 0;
4
- const smithy_client_1 = require("@smithy/smithy-client");
5
- const CancelClusterCommand_1 = require("./commands/CancelClusterCommand");
6
- const CancelJobCommand_1 = require("./commands/CancelJobCommand");
7
- const CreateAddressCommand_1 = require("./commands/CreateAddressCommand");
8
- const CreateClusterCommand_1 = require("./commands/CreateClusterCommand");
9
- const CreateJobCommand_1 = require("./commands/CreateJobCommand");
10
- const CreateLongTermPricingCommand_1 = require("./commands/CreateLongTermPricingCommand");
11
- const CreateReturnShippingLabelCommand_1 = require("./commands/CreateReturnShippingLabelCommand");
12
- const DescribeAddressCommand_1 = require("./commands/DescribeAddressCommand");
13
- const DescribeAddressesCommand_1 = require("./commands/DescribeAddressesCommand");
14
- const DescribeClusterCommand_1 = require("./commands/DescribeClusterCommand");
15
- const DescribeJobCommand_1 = require("./commands/DescribeJobCommand");
16
- const DescribeReturnShippingLabelCommand_1 = require("./commands/DescribeReturnShippingLabelCommand");
17
- const GetJobManifestCommand_1 = require("./commands/GetJobManifestCommand");
18
- const GetJobUnlockCodeCommand_1 = require("./commands/GetJobUnlockCodeCommand");
19
- const GetSnowballUsageCommand_1 = require("./commands/GetSnowballUsageCommand");
20
- const GetSoftwareUpdatesCommand_1 = require("./commands/GetSoftwareUpdatesCommand");
21
- const ListClusterJobsCommand_1 = require("./commands/ListClusterJobsCommand");
22
- const ListClustersCommand_1 = require("./commands/ListClustersCommand");
23
- const ListCompatibleImagesCommand_1 = require("./commands/ListCompatibleImagesCommand");
24
- const ListJobsCommand_1 = require("./commands/ListJobsCommand");
25
- const ListLongTermPricingCommand_1 = require("./commands/ListLongTermPricingCommand");
26
- const ListPickupLocationsCommand_1 = require("./commands/ListPickupLocationsCommand");
27
- const ListServiceVersionsCommand_1 = require("./commands/ListServiceVersionsCommand");
28
- const UpdateClusterCommand_1 = require("./commands/UpdateClusterCommand");
29
- const UpdateJobCommand_1 = require("./commands/UpdateJobCommand");
30
- const UpdateJobShipmentStateCommand_1 = require("./commands/UpdateJobShipmentStateCommand");
31
- const UpdateLongTermPricingCommand_1 = require("./commands/UpdateLongTermPricingCommand");
32
- const SnowballClient_1 = require("./SnowballClient");
33
- const commands = {
34
- CancelClusterCommand: CancelClusterCommand_1.CancelClusterCommand,
35
- CancelJobCommand: CancelJobCommand_1.CancelJobCommand,
36
- CreateAddressCommand: CreateAddressCommand_1.CreateAddressCommand,
37
- CreateClusterCommand: CreateClusterCommand_1.CreateClusterCommand,
38
- CreateJobCommand: CreateJobCommand_1.CreateJobCommand,
39
- CreateLongTermPricingCommand: CreateLongTermPricingCommand_1.CreateLongTermPricingCommand,
40
- CreateReturnShippingLabelCommand: CreateReturnShippingLabelCommand_1.CreateReturnShippingLabelCommand,
41
- DescribeAddressCommand: DescribeAddressCommand_1.DescribeAddressCommand,
42
- DescribeAddressesCommand: DescribeAddressesCommand_1.DescribeAddressesCommand,
43
- DescribeClusterCommand: DescribeClusterCommand_1.DescribeClusterCommand,
44
- DescribeJobCommand: DescribeJobCommand_1.DescribeJobCommand,
45
- DescribeReturnShippingLabelCommand: DescribeReturnShippingLabelCommand_1.DescribeReturnShippingLabelCommand,
46
- GetJobManifestCommand: GetJobManifestCommand_1.GetJobManifestCommand,
47
- GetJobUnlockCodeCommand: GetJobUnlockCodeCommand_1.GetJobUnlockCodeCommand,
48
- GetSnowballUsageCommand: GetSnowballUsageCommand_1.GetSnowballUsageCommand,
49
- GetSoftwareUpdatesCommand: GetSoftwareUpdatesCommand_1.GetSoftwareUpdatesCommand,
50
- ListClusterJobsCommand: ListClusterJobsCommand_1.ListClusterJobsCommand,
51
- ListClustersCommand: ListClustersCommand_1.ListClustersCommand,
52
- ListCompatibleImagesCommand: ListCompatibleImagesCommand_1.ListCompatibleImagesCommand,
53
- ListJobsCommand: ListJobsCommand_1.ListJobsCommand,
54
- ListLongTermPricingCommand: ListLongTermPricingCommand_1.ListLongTermPricingCommand,
55
- ListPickupLocationsCommand: ListPickupLocationsCommand_1.ListPickupLocationsCommand,
56
- ListServiceVersionsCommand: ListServiceVersionsCommand_1.ListServiceVersionsCommand,
57
- UpdateClusterCommand: UpdateClusterCommand_1.UpdateClusterCommand,
58
- UpdateJobCommand: UpdateJobCommand_1.UpdateJobCommand,
59
- UpdateJobShipmentStateCommand: UpdateJobShipmentStateCommand_1.UpdateJobShipmentStateCommand,
60
- UpdateLongTermPricingCommand: UpdateLongTermPricingCommand_1.UpdateLongTermPricingCommand,
61
- };
62
- class Snowball extends SnowballClient_1.SnowballClient {
63
- }
64
- exports.Snowball = Snowball;
65
- (0, smithy_client_1.createAggregatedClient)(commands, Snowball);
1
+ module.exports = require("./index.js");
@@ -1,43 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.SnowballClient = exports.__Client = void 0;
4
- const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
5
- const middleware_logger_1 = require("@aws-sdk/middleware-logger");
6
- const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
7
- const middleware_signing_1 = require("@aws-sdk/middleware-signing");
8
- const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
9
- const config_resolver_1 = require("@smithy/config-resolver");
10
- const middleware_content_length_1 = require("@smithy/middleware-content-length");
11
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
12
- const middleware_retry_1 = require("@smithy/middleware-retry");
13
- const smithy_client_1 = require("@smithy/smithy-client");
14
- Object.defineProperty(exports, "__Client", { enumerable: true, get: function () { return smithy_client_1.Client; } });
15
- const EndpointParameters_1 = require("./endpoint/EndpointParameters");
16
- const runtimeConfig_1 = require("./runtimeConfig");
17
- const runtimeExtensions_1 = require("./runtimeExtensions");
18
- class SnowballClient extends smithy_client_1.Client {
19
- constructor(...[configuration]) {
20
- const _config_0 = (0, runtimeConfig_1.getRuntimeConfig)(configuration || {});
21
- const _config_1 = (0, EndpointParameters_1.resolveClientEndpointParameters)(_config_0);
22
- const _config_2 = (0, config_resolver_1.resolveRegionConfig)(_config_1);
23
- const _config_3 = (0, middleware_endpoint_1.resolveEndpointConfig)(_config_2);
24
- const _config_4 = (0, middleware_retry_1.resolveRetryConfig)(_config_3);
25
- const _config_5 = (0, middleware_host_header_1.resolveHostHeaderConfig)(_config_4);
26
- const _config_6 = (0, middleware_signing_1.resolveAwsAuthConfig)(_config_5);
27
- const _config_7 = (0, middleware_user_agent_1.resolveUserAgentConfig)(_config_6);
28
- const _config_8 = (0, runtimeExtensions_1.resolveRuntimeExtensions)(_config_7, configuration?.extensions || []);
29
- super(_config_8);
30
- this.config = _config_8;
31
- this.middlewareStack.use((0, middleware_retry_1.getRetryPlugin)(this.config));
32
- this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
33
- this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
34
- this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
35
- this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
36
- this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
37
- this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
38
- }
39
- destroy() {
40
- super.destroy();
41
- }
42
- }
43
- exports.SnowballClient = SnowballClient;
1
+ module.exports = require("./index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CancelClusterCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class CancelClusterCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AWSIESnowballJobManagementService", "CancelCluster", {})
22
- .n("SnowballClient", "CancelClusterCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_CancelClusterCommand)
25
- .de(Aws_json1_1_1.de_CancelClusterCommand)
26
- .build() {
27
- }
28
- exports.CancelClusterCommand = CancelClusterCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CancelJobCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class CancelJobCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AWSIESnowballJobManagementService", "CancelJob", {})
22
- .n("SnowballClient", "CancelJobCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_CancelJobCommand)
25
- .de(Aws_json1_1_1.de_CancelJobCommand)
26
- .build() {
27
- }
28
- exports.CancelJobCommand = CancelJobCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CreateAddressCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class CreateAddressCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AWSIESnowballJobManagementService", "CreateAddress", {})
22
- .n("SnowballClient", "CreateAddressCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_CreateAddressCommand)
25
- .de(Aws_json1_1_1.de_CreateAddressCommand)
26
- .build() {
27
- }
28
- exports.CreateAddressCommand = CreateAddressCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CreateClusterCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class CreateClusterCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AWSIESnowballJobManagementService", "CreateCluster", {})
22
- .n("SnowballClient", "CreateClusterCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_CreateClusterCommand)
25
- .de(Aws_json1_1_1.de_CreateClusterCommand)
26
- .build() {
27
- }
28
- exports.CreateClusterCommand = CreateClusterCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CreateJobCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const models_0_1 = require("../models/models_0");
10
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
11
- class CreateJobCommand extends smithy_client_1.Command
12
- .classBuilder()
13
- .ep({
14
- ...EndpointParameters_1.commonParams,
15
- })
16
- .m(function (Command, cs, config, o) {
17
- return [
18
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
19
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
20
- ];
21
- })
22
- .s("AWSIESnowballJobManagementService", "CreateJob", {})
23
- .n("SnowballClient", "CreateJobCommand")
24
- .f(models_0_1.CreateJobRequestFilterSensitiveLog, void 0)
25
- .ser(Aws_json1_1_1.se_CreateJobCommand)
26
- .de(Aws_json1_1_1.de_CreateJobCommand)
27
- .build() {
28
- }
29
- exports.CreateJobCommand = CreateJobCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CreateLongTermPricingCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class CreateLongTermPricingCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AWSIESnowballJobManagementService", "CreateLongTermPricing", {})
22
- .n("SnowballClient", "CreateLongTermPricingCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_CreateLongTermPricingCommand)
25
- .de(Aws_json1_1_1.de_CreateLongTermPricingCommand)
26
- .build() {
27
- }
28
- exports.CreateLongTermPricingCommand = CreateLongTermPricingCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CreateReturnShippingLabelCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class CreateReturnShippingLabelCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AWSIESnowballJobManagementService", "CreateReturnShippingLabel", {})
22
- .n("SnowballClient", "CreateReturnShippingLabelCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_CreateReturnShippingLabelCommand)
25
- .de(Aws_json1_1_1.de_CreateReturnShippingLabelCommand)
26
- .build() {
27
- }
28
- exports.CreateReturnShippingLabelCommand = CreateReturnShippingLabelCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DescribeAddressCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class DescribeAddressCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AWSIESnowballJobManagementService", "DescribeAddress", {})
22
- .n("SnowballClient", "DescribeAddressCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_DescribeAddressCommand)
25
- .de(Aws_json1_1_1.de_DescribeAddressCommand)
26
- .build() {
27
- }
28
- exports.DescribeAddressCommand = DescribeAddressCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DescribeAddressesCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class DescribeAddressesCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AWSIESnowballJobManagementService", "DescribeAddresses", {})
22
- .n("SnowballClient", "DescribeAddressesCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_DescribeAddressesCommand)
25
- .de(Aws_json1_1_1.de_DescribeAddressesCommand)
26
- .build() {
27
- }
28
- exports.DescribeAddressesCommand = DescribeAddressesCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DescribeClusterCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class DescribeClusterCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AWSIESnowballJobManagementService", "DescribeCluster", {})
22
- .n("SnowballClient", "DescribeClusterCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_DescribeClusterCommand)
25
- .de(Aws_json1_1_1.de_DescribeClusterCommand)
26
- .build() {
27
- }
28
- exports.DescribeClusterCommand = DescribeClusterCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DescribeJobCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const models_0_1 = require("../models/models_0");
10
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
11
- class DescribeJobCommand extends smithy_client_1.Command
12
- .classBuilder()
13
- .ep({
14
- ...EndpointParameters_1.commonParams,
15
- })
16
- .m(function (Command, cs, config, o) {
17
- return [
18
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
19
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
20
- ];
21
- })
22
- .s("AWSIESnowballJobManagementService", "DescribeJob", {})
23
- .n("SnowballClient", "DescribeJobCommand")
24
- .f(void 0, models_0_1.DescribeJobResultFilterSensitiveLog)
25
- .ser(Aws_json1_1_1.se_DescribeJobCommand)
26
- .de(Aws_json1_1_1.de_DescribeJobCommand)
27
- .build() {
28
- }
29
- exports.DescribeJobCommand = DescribeJobCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DescribeReturnShippingLabelCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class DescribeReturnShippingLabelCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AWSIESnowballJobManagementService", "DescribeReturnShippingLabel", {})
22
- .n("SnowballClient", "DescribeReturnShippingLabelCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_DescribeReturnShippingLabelCommand)
25
- .de(Aws_json1_1_1.de_DescribeReturnShippingLabelCommand)
26
- .build() {
27
- }
28
- exports.DescribeReturnShippingLabelCommand = DescribeReturnShippingLabelCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetJobManifestCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class GetJobManifestCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AWSIESnowballJobManagementService", "GetJobManifest", {})
22
- .n("SnowballClient", "GetJobManifestCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_GetJobManifestCommand)
25
- .de(Aws_json1_1_1.de_GetJobManifestCommand)
26
- .build() {
27
- }
28
- exports.GetJobManifestCommand = GetJobManifestCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetJobUnlockCodeCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class GetJobUnlockCodeCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AWSIESnowballJobManagementService", "GetJobUnlockCode", {})
22
- .n("SnowballClient", "GetJobUnlockCodeCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_GetJobUnlockCodeCommand)
25
- .de(Aws_json1_1_1.de_GetJobUnlockCodeCommand)
26
- .build() {
27
- }
28
- exports.GetJobUnlockCodeCommand = GetJobUnlockCodeCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetSnowballUsageCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class GetSnowballUsageCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AWSIESnowballJobManagementService", "GetSnowballUsage", {})
22
- .n("SnowballClient", "GetSnowballUsageCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_GetSnowballUsageCommand)
25
- .de(Aws_json1_1_1.de_GetSnowballUsageCommand)
26
- .build() {
27
- }
28
- exports.GetSnowballUsageCommand = GetSnowballUsageCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetSoftwareUpdatesCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class GetSoftwareUpdatesCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AWSIESnowballJobManagementService", "GetSoftwareUpdates", {})
22
- .n("SnowballClient", "GetSoftwareUpdatesCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_GetSoftwareUpdatesCommand)
25
- .de(Aws_json1_1_1.de_GetSoftwareUpdatesCommand)
26
- .build() {
27
- }
28
- exports.GetSoftwareUpdatesCommand = GetSoftwareUpdatesCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListClusterJobsCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
- class ListClusterJobsCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AWSIESnowballJobManagementService", "ListClusterJobs", {})
22
- .n("SnowballClient", "ListClusterJobsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_1_1.se_ListClusterJobsCommand)
25
- .de(Aws_json1_1_1.de_ListClusterJobsCommand)
26
- .build() {
27
- }
28
- exports.ListClusterJobsCommand = ListClusterJobsCommand;
1
+ module.exports = require("../index.js");