@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.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/Snowball.d.ts +429 -130
- package/dist-types/ts3.4/SnowballClient.d.ts +254 -98
- package/dist-types/ts3.4/commands/CancelClusterCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CreateAddressCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CreateJobCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CreateLongTermPricingCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateReturnShippingLabelCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeAddressCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DescribeAddressesCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DescribeClusterCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DescribeJobCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DescribeReturnShippingLabelCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetJobManifestCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetJobUnlockCodeCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetSnowballUsageCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetSoftwareUpdatesCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListClusterJobsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListClustersCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListCompatibleImagesCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListLongTermPricingCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/UpdateClusterCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateJobCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateJobShipmentStateCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/UpdateLongTermPricingCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/index.d.ts +25 -25
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/SnowballServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +760 -963
- package/dist-types/ts3.4/pagination/DescribeAddressesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListJobsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +3 -3
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +305 -77
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +34 -34
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
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";
|