@aws-sdk/client-snowball 3.169.0 → 3.171.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 +16 -0
  2. package/dist-types/ts3.4/Snowball.d.ts +429 -130
  3. package/dist-types/ts3.4/SnowballClient.d.ts +254 -98
  4. package/dist-types/ts3.4/commands/CancelClusterCommand.d.ts +32 -17
  5. package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +32 -17
  6. package/dist-types/ts3.4/commands/CreateAddressCommand.d.ts +32 -17
  7. package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +32 -17
  8. package/dist-types/ts3.4/commands/CreateJobCommand.d.ts +32 -17
  9. package/dist-types/ts3.4/commands/CreateLongTermPricingCommand.d.ts +39 -17
  10. package/dist-types/ts3.4/commands/CreateReturnShippingLabelCommand.d.ts +39 -17
  11. package/dist-types/ts3.4/commands/DescribeAddressCommand.d.ts +35 -17
  12. package/dist-types/ts3.4/commands/DescribeAddressesCommand.d.ts +36 -17
  13. package/dist-types/ts3.4/commands/DescribeClusterCommand.d.ts +35 -17
  14. package/dist-types/ts3.4/commands/DescribeJobCommand.d.ts +32 -17
  15. package/dist-types/ts3.4/commands/DescribeReturnShippingLabelCommand.d.ts +39 -17
  16. package/dist-types/ts3.4/commands/GetJobManifestCommand.d.ts +35 -17
  17. package/dist-types/ts3.4/commands/GetJobUnlockCodeCommand.d.ts +35 -17
  18. package/dist-types/ts3.4/commands/GetSnowballUsageCommand.d.ts +35 -17
  19. package/dist-types/ts3.4/commands/GetSoftwareUpdatesCommand.d.ts +36 -17
  20. package/dist-types/ts3.4/commands/ListClusterJobsCommand.d.ts +35 -17
  21. package/dist-types/ts3.4/commands/ListClustersCommand.d.ts +32 -17
  22. package/dist-types/ts3.4/commands/ListCompatibleImagesCommand.d.ts +39 -17
  23. package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +32 -17
  24. package/dist-types/ts3.4/commands/ListLongTermPricingCommand.d.ts +36 -17
  25. package/dist-types/ts3.4/commands/UpdateClusterCommand.d.ts +32 -17
  26. package/dist-types/ts3.4/commands/UpdateJobCommand.d.ts +32 -17
  27. package/dist-types/ts3.4/commands/UpdateJobShipmentStateCommand.d.ts +39 -17
  28. package/dist-types/ts3.4/commands/UpdateLongTermPricingCommand.d.ts +39 -17
  29. package/dist-types/ts3.4/commands/index.d.ts +25 -25
  30. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  31. package/dist-types/ts3.4/index.d.ts +6 -6
  32. package/dist-types/ts3.4/models/SnowballServiceException.d.ts +7 -6
  33. package/dist-types/ts3.4/models/index.d.ts +1 -1
  34. package/dist-types/ts3.4/models/models_0.d.ts +760 -963
  35. package/dist-types/ts3.4/pagination/DescribeAddressesPaginator.d.ts +11 -4
  36. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  37. package/dist-types/ts3.4/pagination/ListJobsPaginator.d.ts +11 -4
  38. package/dist-types/ts3.4/pagination/index.d.ts +3 -3
  39. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +305 -77
  40. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
  41. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  42. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  43. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  44. package/package.json +34 -34
@@ -1,17 +1,39 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CreateLongTermPricingRequest, CreateLongTermPricingResult } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient";
5
- export interface CreateLongTermPricingCommandInput extends CreateLongTermPricingRequest {
6
- }
7
- export interface CreateLongTermPricingCommandOutput extends CreateLongTermPricingResult, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateLongTermPricingCommand extends $Command<CreateLongTermPricingCommandInput, CreateLongTermPricingCommandOutput, SnowballClientResolvedConfig> {
11
- readonly input: CreateLongTermPricingCommandInput;
12
- constructor(input: CreateLongTermPricingCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SnowballClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateLongTermPricingCommandInput, CreateLongTermPricingCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CreateLongTermPricingRequest,
10
+ CreateLongTermPricingResult,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SnowballClientResolvedConfig,
16
+ } from "../SnowballClient";
17
+ export interface CreateLongTermPricingCommandInput
18
+ extends CreateLongTermPricingRequest {}
19
+ export interface CreateLongTermPricingCommandOutput
20
+ extends CreateLongTermPricingResult,
21
+ __MetadataBearer {}
22
+ export declare class CreateLongTermPricingCommand extends $Command<
23
+ CreateLongTermPricingCommandInput,
24
+ CreateLongTermPricingCommandOutput,
25
+ SnowballClientResolvedConfig
26
+ > {
27
+ readonly input: CreateLongTermPricingCommandInput;
28
+ constructor(input: CreateLongTermPricingCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: SnowballClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ CreateLongTermPricingCommandInput,
35
+ CreateLongTermPricingCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,39 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CreateReturnShippingLabelRequest, CreateReturnShippingLabelResult } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient";
5
- export interface CreateReturnShippingLabelCommandInput extends CreateReturnShippingLabelRequest {
6
- }
7
- export interface CreateReturnShippingLabelCommandOutput extends CreateReturnShippingLabelResult, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateReturnShippingLabelCommand extends $Command<CreateReturnShippingLabelCommandInput, CreateReturnShippingLabelCommandOutput, SnowballClientResolvedConfig> {
11
- readonly input: CreateReturnShippingLabelCommandInput;
12
- constructor(input: CreateReturnShippingLabelCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SnowballClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateReturnShippingLabelCommandInput, CreateReturnShippingLabelCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CreateReturnShippingLabelRequest,
10
+ CreateReturnShippingLabelResult,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SnowballClientResolvedConfig,
16
+ } from "../SnowballClient";
17
+ export interface CreateReturnShippingLabelCommandInput
18
+ extends CreateReturnShippingLabelRequest {}
19
+ export interface CreateReturnShippingLabelCommandOutput
20
+ extends CreateReturnShippingLabelResult,
21
+ __MetadataBearer {}
22
+ export declare class CreateReturnShippingLabelCommand extends $Command<
23
+ CreateReturnShippingLabelCommandInput,
24
+ CreateReturnShippingLabelCommandOutput,
25
+ SnowballClientResolvedConfig
26
+ > {
27
+ readonly input: CreateReturnShippingLabelCommandInput;
28
+ constructor(input: CreateReturnShippingLabelCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: SnowballClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ CreateReturnShippingLabelCommandInput,
35
+ CreateReturnShippingLabelCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,35 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DescribeAddressRequest, DescribeAddressResult } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient";
5
- export interface DescribeAddressCommandInput extends DescribeAddressRequest {
6
- }
7
- export interface DescribeAddressCommandOutput extends DescribeAddressResult, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeAddressCommand extends $Command<DescribeAddressCommandInput, DescribeAddressCommandOutput, SnowballClientResolvedConfig> {
11
- readonly input: DescribeAddressCommandInput;
12
- constructor(input: DescribeAddressCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SnowballClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeAddressCommandInput, DescribeAddressCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DescribeAddressRequest,
10
+ DescribeAddressResult,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SnowballClientResolvedConfig,
16
+ } from "../SnowballClient";
17
+ export interface DescribeAddressCommandInput extends DescribeAddressRequest {}
18
+ export interface DescribeAddressCommandOutput
19
+ extends DescribeAddressResult,
20
+ __MetadataBearer {}
21
+ export declare class DescribeAddressCommand extends $Command<
22
+ DescribeAddressCommandInput,
23
+ DescribeAddressCommandOutput,
24
+ SnowballClientResolvedConfig
25
+ > {
26
+ readonly input: DescribeAddressCommandInput;
27
+ constructor(input: DescribeAddressCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: SnowballClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<DescribeAddressCommandInput, DescribeAddressCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,36 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DescribeAddressesRequest, DescribeAddressesResult } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient";
5
- export interface DescribeAddressesCommandInput extends DescribeAddressesRequest {
6
- }
7
- export interface DescribeAddressesCommandOutput extends DescribeAddressesResult, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeAddressesCommand extends $Command<DescribeAddressesCommandInput, DescribeAddressesCommandOutput, SnowballClientResolvedConfig> {
11
- readonly input: DescribeAddressesCommandInput;
12
- constructor(input: DescribeAddressesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SnowballClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeAddressesCommandInput, DescribeAddressesCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DescribeAddressesRequest,
10
+ DescribeAddressesResult,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SnowballClientResolvedConfig,
16
+ } from "../SnowballClient";
17
+ export interface DescribeAddressesCommandInput
18
+ extends DescribeAddressesRequest {}
19
+ export interface DescribeAddressesCommandOutput
20
+ extends DescribeAddressesResult,
21
+ __MetadataBearer {}
22
+ export declare class DescribeAddressesCommand extends $Command<
23
+ DescribeAddressesCommandInput,
24
+ DescribeAddressesCommandOutput,
25
+ SnowballClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeAddressesCommandInput;
28
+ constructor(input: DescribeAddressesCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: SnowballClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<DescribeAddressesCommandInput, DescribeAddressesCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,35 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DescribeClusterRequest, DescribeClusterResult } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient";
5
- export interface DescribeClusterCommandInput extends DescribeClusterRequest {
6
- }
7
- export interface DescribeClusterCommandOutput extends DescribeClusterResult, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeClusterCommand extends $Command<DescribeClusterCommandInput, DescribeClusterCommandOutput, SnowballClientResolvedConfig> {
11
- readonly input: DescribeClusterCommandInput;
12
- constructor(input: DescribeClusterCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SnowballClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeClusterCommandInput, DescribeClusterCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DescribeClusterRequest,
10
+ DescribeClusterResult,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SnowballClientResolvedConfig,
16
+ } from "../SnowballClient";
17
+ export interface DescribeClusterCommandInput extends DescribeClusterRequest {}
18
+ export interface DescribeClusterCommandOutput
19
+ extends DescribeClusterResult,
20
+ __MetadataBearer {}
21
+ export declare class DescribeClusterCommand extends $Command<
22
+ DescribeClusterCommandInput,
23
+ DescribeClusterCommandOutput,
24
+ SnowballClientResolvedConfig
25
+ > {
26
+ readonly input: DescribeClusterCommandInput;
27
+ constructor(input: DescribeClusterCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: SnowballClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<DescribeClusterCommandInput, DescribeClusterCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DescribeJobRequest, DescribeJobResult } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient";
5
- export interface DescribeJobCommandInput extends DescribeJobRequest {
6
- }
7
- export interface DescribeJobCommandOutput extends DescribeJobResult, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeJobCommand extends $Command<DescribeJobCommandInput, DescribeJobCommandOutput, SnowballClientResolvedConfig> {
11
- readonly input: DescribeJobCommandInput;
12
- constructor(input: DescribeJobCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SnowballClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeJobCommandInput, DescribeJobCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { DescribeJobRequest, DescribeJobResult } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SnowballClientResolvedConfig,
13
+ } from "../SnowballClient";
14
+ export interface DescribeJobCommandInput extends DescribeJobRequest {}
15
+ export interface DescribeJobCommandOutput
16
+ extends DescribeJobResult,
17
+ __MetadataBearer {}
18
+ export declare class DescribeJobCommand extends $Command<
19
+ DescribeJobCommandInput,
20
+ DescribeJobCommandOutput,
21
+ SnowballClientResolvedConfig
22
+ > {
23
+ readonly input: DescribeJobCommandInput;
24
+ constructor(input: DescribeJobCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: SnowballClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<DescribeJobCommandInput, DescribeJobCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,39 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DescribeReturnShippingLabelRequest, DescribeReturnShippingLabelResult } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient";
5
- export interface DescribeReturnShippingLabelCommandInput extends DescribeReturnShippingLabelRequest {
6
- }
7
- export interface DescribeReturnShippingLabelCommandOutput extends DescribeReturnShippingLabelResult, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeReturnShippingLabelCommand extends $Command<DescribeReturnShippingLabelCommandInput, DescribeReturnShippingLabelCommandOutput, SnowballClientResolvedConfig> {
11
- readonly input: DescribeReturnShippingLabelCommandInput;
12
- constructor(input: DescribeReturnShippingLabelCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SnowballClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeReturnShippingLabelCommandInput, DescribeReturnShippingLabelCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DescribeReturnShippingLabelRequest,
10
+ DescribeReturnShippingLabelResult,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SnowballClientResolvedConfig,
16
+ } from "../SnowballClient";
17
+ export interface DescribeReturnShippingLabelCommandInput
18
+ extends DescribeReturnShippingLabelRequest {}
19
+ export interface DescribeReturnShippingLabelCommandOutput
20
+ extends DescribeReturnShippingLabelResult,
21
+ __MetadataBearer {}
22
+ export declare class DescribeReturnShippingLabelCommand extends $Command<
23
+ DescribeReturnShippingLabelCommandInput,
24
+ DescribeReturnShippingLabelCommandOutput,
25
+ SnowballClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeReturnShippingLabelCommandInput;
28
+ constructor(input: DescribeReturnShippingLabelCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: SnowballClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ DescribeReturnShippingLabelCommandInput,
35
+ DescribeReturnShippingLabelCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,35 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GetJobManifestRequest, GetJobManifestResult } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient";
5
- export interface GetJobManifestCommandInput extends GetJobManifestRequest {
6
- }
7
- export interface GetJobManifestCommandOutput extends GetJobManifestResult, __MetadataBearer {
8
- }
9
-
10
- export declare class GetJobManifestCommand extends $Command<GetJobManifestCommandInput, GetJobManifestCommandOutput, SnowballClientResolvedConfig> {
11
- readonly input: GetJobManifestCommandInput;
12
- constructor(input: GetJobManifestCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SnowballClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetJobManifestCommandInput, GetJobManifestCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GetJobManifestRequest,
10
+ GetJobManifestResult,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SnowballClientResolvedConfig,
16
+ } from "../SnowballClient";
17
+ export interface GetJobManifestCommandInput extends GetJobManifestRequest {}
18
+ export interface GetJobManifestCommandOutput
19
+ extends GetJobManifestResult,
20
+ __MetadataBearer {}
21
+ export declare class GetJobManifestCommand extends $Command<
22
+ GetJobManifestCommandInput,
23
+ GetJobManifestCommandOutput,
24
+ SnowballClientResolvedConfig
25
+ > {
26
+ readonly input: GetJobManifestCommandInput;
27
+ constructor(input: GetJobManifestCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: SnowballClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<GetJobManifestCommandInput, GetJobManifestCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,35 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GetJobUnlockCodeRequest, GetJobUnlockCodeResult } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient";
5
- export interface GetJobUnlockCodeCommandInput extends GetJobUnlockCodeRequest {
6
- }
7
- export interface GetJobUnlockCodeCommandOutput extends GetJobUnlockCodeResult, __MetadataBearer {
8
- }
9
-
10
- export declare class GetJobUnlockCodeCommand extends $Command<GetJobUnlockCodeCommandInput, GetJobUnlockCodeCommandOutput, SnowballClientResolvedConfig> {
11
- readonly input: GetJobUnlockCodeCommandInput;
12
- constructor(input: GetJobUnlockCodeCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SnowballClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetJobUnlockCodeCommandInput, GetJobUnlockCodeCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GetJobUnlockCodeRequest,
10
+ GetJobUnlockCodeResult,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SnowballClientResolvedConfig,
16
+ } from "../SnowballClient";
17
+ export interface GetJobUnlockCodeCommandInput extends GetJobUnlockCodeRequest {}
18
+ export interface GetJobUnlockCodeCommandOutput
19
+ extends GetJobUnlockCodeResult,
20
+ __MetadataBearer {}
21
+ export declare class GetJobUnlockCodeCommand extends $Command<
22
+ GetJobUnlockCodeCommandInput,
23
+ GetJobUnlockCodeCommandOutput,
24
+ SnowballClientResolvedConfig
25
+ > {
26
+ readonly input: GetJobUnlockCodeCommandInput;
27
+ constructor(input: GetJobUnlockCodeCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: SnowballClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<GetJobUnlockCodeCommandInput, GetJobUnlockCodeCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,35 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GetSnowballUsageRequest, GetSnowballUsageResult } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient";
5
- export interface GetSnowballUsageCommandInput extends GetSnowballUsageRequest {
6
- }
7
- export interface GetSnowballUsageCommandOutput extends GetSnowballUsageResult, __MetadataBearer {
8
- }
9
-
10
- export declare class GetSnowballUsageCommand extends $Command<GetSnowballUsageCommandInput, GetSnowballUsageCommandOutput, SnowballClientResolvedConfig> {
11
- readonly input: GetSnowballUsageCommandInput;
12
- constructor(input: GetSnowballUsageCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SnowballClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSnowballUsageCommandInput, GetSnowballUsageCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GetSnowballUsageRequest,
10
+ GetSnowballUsageResult,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SnowballClientResolvedConfig,
16
+ } from "../SnowballClient";
17
+ export interface GetSnowballUsageCommandInput extends GetSnowballUsageRequest {}
18
+ export interface GetSnowballUsageCommandOutput
19
+ extends GetSnowballUsageResult,
20
+ __MetadataBearer {}
21
+ export declare class GetSnowballUsageCommand extends $Command<
22
+ GetSnowballUsageCommandInput,
23
+ GetSnowballUsageCommandOutput,
24
+ SnowballClientResolvedConfig
25
+ > {
26
+ readonly input: GetSnowballUsageCommandInput;
27
+ constructor(input: GetSnowballUsageCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: SnowballClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<GetSnowballUsageCommandInput, GetSnowballUsageCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,36 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GetSoftwareUpdatesRequest, GetSoftwareUpdatesResult } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient";
5
- export interface GetSoftwareUpdatesCommandInput extends GetSoftwareUpdatesRequest {
6
- }
7
- export interface GetSoftwareUpdatesCommandOutput extends GetSoftwareUpdatesResult, __MetadataBearer {
8
- }
9
-
10
- export declare class GetSoftwareUpdatesCommand extends $Command<GetSoftwareUpdatesCommandInput, GetSoftwareUpdatesCommandOutput, SnowballClientResolvedConfig> {
11
- readonly input: GetSoftwareUpdatesCommandInput;
12
- constructor(input: GetSoftwareUpdatesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SnowballClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSoftwareUpdatesCommandInput, GetSoftwareUpdatesCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GetSoftwareUpdatesRequest,
10
+ GetSoftwareUpdatesResult,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SnowballClientResolvedConfig,
16
+ } from "../SnowballClient";
17
+ export interface GetSoftwareUpdatesCommandInput
18
+ extends GetSoftwareUpdatesRequest {}
19
+ export interface GetSoftwareUpdatesCommandOutput
20
+ extends GetSoftwareUpdatesResult,
21
+ __MetadataBearer {}
22
+ export declare class GetSoftwareUpdatesCommand extends $Command<
23
+ GetSoftwareUpdatesCommandInput,
24
+ GetSoftwareUpdatesCommandOutput,
25
+ SnowballClientResolvedConfig
26
+ > {
27
+ readonly input: GetSoftwareUpdatesCommandInput;
28
+ constructor(input: GetSoftwareUpdatesCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: SnowballClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<GetSoftwareUpdatesCommandInput, GetSoftwareUpdatesCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }