@aws-sdk/client-snowball 3.168.0 → 3.170.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 +454 -130
- package/dist-types/ts3.4/SnowballClient.d.ts +279 -98
- package/dist-types/ts3.4/commands/CancelClusterCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateAddressCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateJobCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateLongTermPricingCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateReturnShippingLabelCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeAddressCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeAddressesCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeClusterCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeJobCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DescribeReturnShippingLabelCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetJobManifestCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetJobUnlockCodeCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetSnowballUsageCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetSoftwareUpdatesCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListClusterJobsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListClustersCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListCompatibleImagesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListLongTermPricingCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/UpdateClusterCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateJobCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateJobShipmentStateCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateLongTermPricingCommand.d.ts +41 -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 +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1044 -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 +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,17 +1,41 @@
|
|
|
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
|
+
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
|
+
|
|
23
|
+
export declare class CreateLongTermPricingCommand extends $Command<
|
|
24
|
+
CreateLongTermPricingCommandInput,
|
|
25
|
+
CreateLongTermPricingCommandOutput,
|
|
26
|
+
SnowballClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateLongTermPricingCommandInput;
|
|
29
|
+
constructor(input: CreateLongTermPricingCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: SnowballClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CreateLongTermPricingCommandInput,
|
|
37
|
+
CreateLongTermPricingCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
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
|
+
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
|
+
|
|
23
|
+
export declare class CreateReturnShippingLabelCommand extends $Command<
|
|
24
|
+
CreateReturnShippingLabelCommandInput,
|
|
25
|
+
CreateReturnShippingLabelCommandOutput,
|
|
26
|
+
SnowballClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateReturnShippingLabelCommandInput;
|
|
29
|
+
constructor(input: CreateReturnShippingLabelCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: SnowballClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CreateReturnShippingLabelCommandInput,
|
|
37
|
+
CreateReturnShippingLabelCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
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
|
+
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
|
+
|
|
22
|
+
export declare class DescribeAddressCommand extends $Command<
|
|
23
|
+
DescribeAddressCommandInput,
|
|
24
|
+
DescribeAddressCommandOutput,
|
|
25
|
+
SnowballClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeAddressCommandInput;
|
|
28
|
+
constructor(input: DescribeAddressCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: SnowballClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<DescribeAddressCommandInput, DescribeAddressCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
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
|
+
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
|
+
|
|
23
|
+
export declare class DescribeAddressesCommand extends $Command<
|
|
24
|
+
DescribeAddressesCommandInput,
|
|
25
|
+
DescribeAddressesCommandOutput,
|
|
26
|
+
SnowballClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeAddressesCommandInput;
|
|
29
|
+
constructor(input: DescribeAddressesCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: SnowballClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<DescribeAddressesCommandInput, DescribeAddressesCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
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
|
+
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
|
+
|
|
22
|
+
export declare class DescribeClusterCommand extends $Command<
|
|
23
|
+
DescribeClusterCommandInput,
|
|
24
|
+
DescribeClusterCommandOutput,
|
|
25
|
+
SnowballClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeClusterCommandInput;
|
|
28
|
+
constructor(input: DescribeClusterCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: SnowballClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<DescribeClusterCommandInput, DescribeClusterCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
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 { 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
|
+
|
|
19
|
+
export declare class DescribeJobCommand extends $Command<
|
|
20
|
+
DescribeJobCommandInput,
|
|
21
|
+
DescribeJobCommandOutput,
|
|
22
|
+
SnowballClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DescribeJobCommandInput;
|
|
25
|
+
constructor(input: DescribeJobCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: SnowballClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<DescribeJobCommandInput, DescribeJobCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
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
|
+
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
|
+
|
|
23
|
+
export declare class DescribeReturnShippingLabelCommand extends $Command<
|
|
24
|
+
DescribeReturnShippingLabelCommandInput,
|
|
25
|
+
DescribeReturnShippingLabelCommandOutput,
|
|
26
|
+
SnowballClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeReturnShippingLabelCommandInput;
|
|
29
|
+
constructor(input: DescribeReturnShippingLabelCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: SnowballClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeReturnShippingLabelCommandInput,
|
|
37
|
+
DescribeReturnShippingLabelCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
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
|
+
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
|
+
|
|
22
|
+
export declare class GetJobManifestCommand extends $Command<
|
|
23
|
+
GetJobManifestCommandInput,
|
|
24
|
+
GetJobManifestCommandOutput,
|
|
25
|
+
SnowballClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetJobManifestCommandInput;
|
|
28
|
+
constructor(input: GetJobManifestCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: SnowballClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<GetJobManifestCommandInput, GetJobManifestCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
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
|
+
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
|
+
|
|
22
|
+
export declare class GetJobUnlockCodeCommand extends $Command<
|
|
23
|
+
GetJobUnlockCodeCommandInput,
|
|
24
|
+
GetJobUnlockCodeCommandOutput,
|
|
25
|
+
SnowballClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetJobUnlockCodeCommandInput;
|
|
28
|
+
constructor(input: GetJobUnlockCodeCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: SnowballClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<GetJobUnlockCodeCommandInput, GetJobUnlockCodeCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
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
|
+
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
|
+
|
|
22
|
+
export declare class GetSnowballUsageCommand extends $Command<
|
|
23
|
+
GetSnowballUsageCommandInput,
|
|
24
|
+
GetSnowballUsageCommandOutput,
|
|
25
|
+
SnowballClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetSnowballUsageCommandInput;
|
|
28
|
+
constructor(input: GetSnowballUsageCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: SnowballClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<GetSnowballUsageCommandInput, GetSnowballUsageCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
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
|
+
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
|
+
|
|
23
|
+
export declare class GetSoftwareUpdatesCommand extends $Command<
|
|
24
|
+
GetSoftwareUpdatesCommandInput,
|
|
25
|
+
GetSoftwareUpdatesCommandOutput,
|
|
26
|
+
SnowballClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetSoftwareUpdatesCommandInput;
|
|
29
|
+
constructor(input: GetSoftwareUpdatesCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: SnowballClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<GetSoftwareUpdatesCommandInput, GetSoftwareUpdatesCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|