@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,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 { ListClusterJobsRequest, ListClusterJobsResult } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient";
5
- export interface ListClusterJobsCommandInput extends ListClusterJobsRequest {
6
- }
7
- export interface ListClusterJobsCommandOutput extends ListClusterJobsResult, __MetadataBearer {
8
- }
9
-
10
- export declare class ListClusterJobsCommand extends $Command<ListClusterJobsCommandInput, ListClusterJobsCommandOutput, SnowballClientResolvedConfig> {
11
- readonly input: ListClusterJobsCommandInput;
12
- constructor(input: ListClusterJobsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SnowballClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListClusterJobsCommandInput, ListClusterJobsCommandOutput>;
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
+ ListClusterJobsRequest,
10
+ ListClusterJobsResult,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SnowballClientResolvedConfig,
16
+ } from "../SnowballClient";
17
+ export interface ListClusterJobsCommandInput extends ListClusterJobsRequest {}
18
+ export interface ListClusterJobsCommandOutput
19
+ extends ListClusterJobsResult,
20
+ __MetadataBearer {}
21
+ export declare class ListClusterJobsCommand extends $Command<
22
+ ListClusterJobsCommandInput,
23
+ ListClusterJobsCommandOutput,
24
+ SnowballClientResolvedConfig
25
+ > {
26
+ readonly input: ListClusterJobsCommandInput;
27
+ constructor(input: ListClusterJobsCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: SnowballClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<ListClusterJobsCommandInput, ListClusterJobsCommandOutput>;
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 { ListClustersRequest, ListClustersResult } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient";
5
- export interface ListClustersCommandInput extends ListClustersRequest {
6
- }
7
- export interface ListClustersCommandOutput extends ListClustersResult, __MetadataBearer {
8
- }
9
-
10
- export declare class ListClustersCommand extends $Command<ListClustersCommandInput, ListClustersCommandOutput, SnowballClientResolvedConfig> {
11
- readonly input: ListClustersCommandInput;
12
- constructor(input: ListClustersCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SnowballClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListClustersCommandInput, ListClustersCommandOutput>;
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 { ListClustersRequest, ListClustersResult } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SnowballClientResolvedConfig,
13
+ } from "../SnowballClient";
14
+ export interface ListClustersCommandInput extends ListClustersRequest {}
15
+ export interface ListClustersCommandOutput
16
+ extends ListClustersResult,
17
+ __MetadataBearer {}
18
+ export declare class ListClustersCommand extends $Command<
19
+ ListClustersCommandInput,
20
+ ListClustersCommandOutput,
21
+ SnowballClientResolvedConfig
22
+ > {
23
+ readonly input: ListClustersCommandInput;
24
+ constructor(input: ListClustersCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: SnowballClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<ListClustersCommandInput, ListClustersCommandOutput>;
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 { ListCompatibleImagesRequest, ListCompatibleImagesResult } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient";
5
- export interface ListCompatibleImagesCommandInput extends ListCompatibleImagesRequest {
6
- }
7
- export interface ListCompatibleImagesCommandOutput extends ListCompatibleImagesResult, __MetadataBearer {
8
- }
9
-
10
- export declare class ListCompatibleImagesCommand extends $Command<ListCompatibleImagesCommandInput, ListCompatibleImagesCommandOutput, SnowballClientResolvedConfig> {
11
- readonly input: ListCompatibleImagesCommandInput;
12
- constructor(input: ListCompatibleImagesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SnowballClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListCompatibleImagesCommandInput, ListCompatibleImagesCommandOutput>;
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
+ ListCompatibleImagesRequest,
10
+ ListCompatibleImagesResult,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SnowballClientResolvedConfig,
16
+ } from "../SnowballClient";
17
+ export interface ListCompatibleImagesCommandInput
18
+ extends ListCompatibleImagesRequest {}
19
+ export interface ListCompatibleImagesCommandOutput
20
+ extends ListCompatibleImagesResult,
21
+ __MetadataBearer {}
22
+ export declare class ListCompatibleImagesCommand extends $Command<
23
+ ListCompatibleImagesCommandInput,
24
+ ListCompatibleImagesCommandOutput,
25
+ SnowballClientResolvedConfig
26
+ > {
27
+ readonly input: ListCompatibleImagesCommandInput;
28
+ constructor(input: ListCompatibleImagesCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: SnowballClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ ListCompatibleImagesCommandInput,
35
+ ListCompatibleImagesCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -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 { ListJobsRequest, ListJobsResult } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient";
5
- export interface ListJobsCommandInput extends ListJobsRequest {
6
- }
7
- export interface ListJobsCommandOutput extends ListJobsResult, __MetadataBearer {
8
- }
9
-
10
- export declare class ListJobsCommand extends $Command<ListJobsCommandInput, ListJobsCommandOutput, SnowballClientResolvedConfig> {
11
- readonly input: ListJobsCommandInput;
12
- constructor(input: ListJobsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SnowballClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListJobsCommandInput, ListJobsCommandOutput>;
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 { ListJobsRequest, ListJobsResult } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SnowballClientResolvedConfig,
13
+ } from "../SnowballClient";
14
+ export interface ListJobsCommandInput extends ListJobsRequest {}
15
+ export interface ListJobsCommandOutput
16
+ extends ListJobsResult,
17
+ __MetadataBearer {}
18
+ export declare class ListJobsCommand extends $Command<
19
+ ListJobsCommandInput,
20
+ ListJobsCommandOutput,
21
+ SnowballClientResolvedConfig
22
+ > {
23
+ readonly input: ListJobsCommandInput;
24
+ constructor(input: ListJobsCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: SnowballClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<ListJobsCommandInput, ListJobsCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -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 { ListLongTermPricingRequest, ListLongTermPricingResult } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient";
5
- export interface ListLongTermPricingCommandInput extends ListLongTermPricingRequest {
6
- }
7
- export interface ListLongTermPricingCommandOutput extends ListLongTermPricingResult, __MetadataBearer {
8
- }
9
-
10
- export declare class ListLongTermPricingCommand extends $Command<ListLongTermPricingCommandInput, ListLongTermPricingCommandOutput, SnowballClientResolvedConfig> {
11
- readonly input: ListLongTermPricingCommandInput;
12
- constructor(input: ListLongTermPricingCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SnowballClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListLongTermPricingCommandInput, ListLongTermPricingCommandOutput>;
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
+ ListLongTermPricingRequest,
10
+ ListLongTermPricingResult,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SnowballClientResolvedConfig,
16
+ } from "../SnowballClient";
17
+ export interface ListLongTermPricingCommandInput
18
+ extends ListLongTermPricingRequest {}
19
+ export interface ListLongTermPricingCommandOutput
20
+ extends ListLongTermPricingResult,
21
+ __MetadataBearer {}
22
+ export declare class ListLongTermPricingCommand extends $Command<
23
+ ListLongTermPricingCommandInput,
24
+ ListLongTermPricingCommandOutput,
25
+ SnowballClientResolvedConfig
26
+ > {
27
+ readonly input: ListLongTermPricingCommandInput;
28
+ constructor(input: ListLongTermPricingCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: SnowballClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<ListLongTermPricingCommandInput, ListLongTermPricingCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -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 { UpdateClusterRequest, UpdateClusterResult } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient";
5
- export interface UpdateClusterCommandInput extends UpdateClusterRequest {
6
- }
7
- export interface UpdateClusterCommandOutput extends UpdateClusterResult, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateClusterCommand extends $Command<UpdateClusterCommandInput, UpdateClusterCommandOutput, SnowballClientResolvedConfig> {
11
- readonly input: UpdateClusterCommandInput;
12
- constructor(input: UpdateClusterCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SnowballClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateClusterCommandInput, UpdateClusterCommandOutput>;
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 { UpdateClusterRequest, UpdateClusterResult } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SnowballClientResolvedConfig,
13
+ } from "../SnowballClient";
14
+ export interface UpdateClusterCommandInput extends UpdateClusterRequest {}
15
+ export interface UpdateClusterCommandOutput
16
+ extends UpdateClusterResult,
17
+ __MetadataBearer {}
18
+ export declare class UpdateClusterCommand extends $Command<
19
+ UpdateClusterCommandInput,
20
+ UpdateClusterCommandOutput,
21
+ SnowballClientResolvedConfig
22
+ > {
23
+ readonly input: UpdateClusterCommandInput;
24
+ constructor(input: UpdateClusterCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: SnowballClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<UpdateClusterCommandInput, UpdateClusterCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -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 { UpdateJobRequest, UpdateJobResult } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient";
5
- export interface UpdateJobCommandInput extends UpdateJobRequest {
6
- }
7
- export interface UpdateJobCommandOutput extends UpdateJobResult, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateJobCommand extends $Command<UpdateJobCommandInput, UpdateJobCommandOutput, SnowballClientResolvedConfig> {
11
- readonly input: UpdateJobCommandInput;
12
- constructor(input: UpdateJobCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SnowballClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateJobCommandInput, UpdateJobCommandOutput>;
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 { UpdateJobRequest, UpdateJobResult } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ SnowballClientResolvedConfig,
13
+ } from "../SnowballClient";
14
+ export interface UpdateJobCommandInput extends UpdateJobRequest {}
15
+ export interface UpdateJobCommandOutput
16
+ extends UpdateJobResult,
17
+ __MetadataBearer {}
18
+ export declare class UpdateJobCommand extends $Command<
19
+ UpdateJobCommandInput,
20
+ UpdateJobCommandOutput,
21
+ SnowballClientResolvedConfig
22
+ > {
23
+ readonly input: UpdateJobCommandInput;
24
+ constructor(input: UpdateJobCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: SnowballClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<UpdateJobCommandInput, UpdateJobCommandOutput>;
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 { UpdateJobShipmentStateRequest, UpdateJobShipmentStateResult } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient";
5
- export interface UpdateJobShipmentStateCommandInput extends UpdateJobShipmentStateRequest {
6
- }
7
- export interface UpdateJobShipmentStateCommandOutput extends UpdateJobShipmentStateResult, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateJobShipmentStateCommand extends $Command<UpdateJobShipmentStateCommandInput, UpdateJobShipmentStateCommandOutput, SnowballClientResolvedConfig> {
11
- readonly input: UpdateJobShipmentStateCommandInput;
12
- constructor(input: UpdateJobShipmentStateCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SnowballClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateJobShipmentStateCommandInput, UpdateJobShipmentStateCommandOutput>;
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
+ UpdateJobShipmentStateRequest,
10
+ UpdateJobShipmentStateResult,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SnowballClientResolvedConfig,
16
+ } from "../SnowballClient";
17
+ export interface UpdateJobShipmentStateCommandInput
18
+ extends UpdateJobShipmentStateRequest {}
19
+ export interface UpdateJobShipmentStateCommandOutput
20
+ extends UpdateJobShipmentStateResult,
21
+ __MetadataBearer {}
22
+ export declare class UpdateJobShipmentStateCommand extends $Command<
23
+ UpdateJobShipmentStateCommandInput,
24
+ UpdateJobShipmentStateCommandOutput,
25
+ SnowballClientResolvedConfig
26
+ > {
27
+ readonly input: UpdateJobShipmentStateCommandInput;
28
+ constructor(input: UpdateJobShipmentStateCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: SnowballClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ UpdateJobShipmentStateCommandInput,
35
+ UpdateJobShipmentStateCommandOutput
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 { UpdateLongTermPricingRequest, UpdateLongTermPricingResult } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient";
5
- export interface UpdateLongTermPricingCommandInput extends UpdateLongTermPricingRequest {
6
- }
7
- export interface UpdateLongTermPricingCommandOutput extends UpdateLongTermPricingResult, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateLongTermPricingCommand extends $Command<UpdateLongTermPricingCommandInput, UpdateLongTermPricingCommandOutput, SnowballClientResolvedConfig> {
11
- readonly input: UpdateLongTermPricingCommandInput;
12
- constructor(input: UpdateLongTermPricingCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SnowballClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateLongTermPricingCommandInput, UpdateLongTermPricingCommandOutput>;
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
+ UpdateLongTermPricingRequest,
10
+ UpdateLongTermPricingResult,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SnowballClientResolvedConfig,
16
+ } from "../SnowballClient";
17
+ export interface UpdateLongTermPricingCommandInput
18
+ extends UpdateLongTermPricingRequest {}
19
+ export interface UpdateLongTermPricingCommandOutput
20
+ extends UpdateLongTermPricingResult,
21
+ __MetadataBearer {}
22
+ export declare class UpdateLongTermPricingCommand extends $Command<
23
+ UpdateLongTermPricingCommandInput,
24
+ UpdateLongTermPricingCommandOutput,
25
+ SnowballClientResolvedConfig
26
+ > {
27
+ readonly input: UpdateLongTermPricingCommandInput;
28
+ constructor(input: UpdateLongTermPricingCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: SnowballClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ UpdateLongTermPricingCommandInput,
35
+ UpdateLongTermPricingCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,25 +1,25 @@
1
- export * from "./CancelClusterCommand";
2
- export * from "./CancelJobCommand";
3
- export * from "./CreateAddressCommand";
4
- export * from "./CreateClusterCommand";
5
- export * from "./CreateJobCommand";
6
- export * from "./CreateLongTermPricingCommand";
7
- export * from "./CreateReturnShippingLabelCommand";
8
- export * from "./DescribeAddressCommand";
9
- export * from "./DescribeAddressesCommand";
10
- export * from "./DescribeClusterCommand";
11
- export * from "./DescribeJobCommand";
12
- export * from "./DescribeReturnShippingLabelCommand";
13
- export * from "./GetJobManifestCommand";
14
- export * from "./GetJobUnlockCodeCommand";
15
- export * from "./GetSnowballUsageCommand";
16
- export * from "./GetSoftwareUpdatesCommand";
17
- export * from "./ListClusterJobsCommand";
18
- export * from "./ListClustersCommand";
19
- export * from "./ListCompatibleImagesCommand";
20
- export * from "./ListJobsCommand";
21
- export * from "./ListLongTermPricingCommand";
22
- export * from "./UpdateClusterCommand";
23
- export * from "./UpdateJobCommand";
24
- export * from "./UpdateJobShipmentStateCommand";
25
- export * from "./UpdateLongTermPricingCommand";
1
+ export * from "./CancelClusterCommand";
2
+ export * from "./CancelJobCommand";
3
+ export * from "./CreateAddressCommand";
4
+ export * from "./CreateClusterCommand";
5
+ export * from "./CreateJobCommand";
6
+ export * from "./CreateLongTermPricingCommand";
7
+ export * from "./CreateReturnShippingLabelCommand";
8
+ export * from "./DescribeAddressCommand";
9
+ export * from "./DescribeAddressesCommand";
10
+ export * from "./DescribeClusterCommand";
11
+ export * from "./DescribeJobCommand";
12
+ export * from "./DescribeReturnShippingLabelCommand";
13
+ export * from "./GetJobManifestCommand";
14
+ export * from "./GetJobUnlockCodeCommand";
15
+ export * from "./GetSnowballUsageCommand";
16
+ export * from "./GetSoftwareUpdatesCommand";
17
+ export * from "./ListClusterJobsCommand";
18
+ export * from "./ListClustersCommand";
19
+ export * from "./ListCompatibleImagesCommand";
20
+ export * from "./ListJobsCommand";
21
+ export * from "./ListLongTermPricingCommand";
22
+ export * from "./UpdateClusterCommand";
23
+ export * from "./UpdateJobCommand";
24
+ export * from "./UpdateJobShipmentStateCommand";
25
+ export * from "./UpdateLongTermPricingCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,6 +1,6 @@
1
- export * from "./Snowball";
2
- export * from "./SnowballClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export * from "./pagination";
6
- export { SnowballServiceException } from "./models/SnowballServiceException";
1
+ export * from "./Snowball";
2
+ export * from "./SnowballClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { SnowballServiceException } from "./models/SnowballServiceException";
@@ -1,6 +1,7 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class SnowballServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+ export declare class SnowballServiceException extends __ServiceException {
6
+ constructor(options: __ServiceExceptionOptions);
7
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";