@aws-sdk/client-snowball 3.296.0 → 3.297.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/dist-types/Snowball.d.ts +27 -0
- package/dist-types/SnowballClient.d.ts +24 -4
- package/dist-types/commands/CancelClusterCommand.d.ts +16 -0
- package/dist-types/commands/CancelJobCommand.d.ts +16 -0
- package/dist-types/commands/CreateAddressCommand.d.ts +16 -0
- package/dist-types/commands/CreateClusterCommand.d.ts +16 -0
- package/dist-types/commands/CreateJobCommand.d.ts +16 -0
- package/dist-types/commands/CreateLongTermPricingCommand.d.ts +16 -0
- package/dist-types/commands/CreateReturnShippingLabelCommand.d.ts +16 -0
- package/dist-types/commands/DescribeAddressCommand.d.ts +16 -0
- package/dist-types/commands/DescribeAddressesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeClusterCommand.d.ts +16 -0
- package/dist-types/commands/DescribeJobCommand.d.ts +16 -0
- package/dist-types/commands/DescribeReturnShippingLabelCommand.d.ts +16 -0
- package/dist-types/commands/GetJobManifestCommand.d.ts +16 -0
- package/dist-types/commands/GetJobUnlockCodeCommand.d.ts +16 -0
- package/dist-types/commands/GetSnowballUsageCommand.d.ts +16 -0
- package/dist-types/commands/GetSoftwareUpdatesCommand.d.ts +16 -0
- package/dist-types/commands/ListClusterJobsCommand.d.ts +16 -0
- package/dist-types/commands/ListClustersCommand.d.ts +16 -0
- package/dist-types/commands/ListCompatibleImagesCommand.d.ts +16 -0
- package/dist-types/commands/ListJobsCommand.d.ts +16 -0
- package/dist-types/commands/ListLongTermPricingCommand.d.ts +16 -0
- package/dist-types/commands/ListServiceVersionsCommand.d.ts +16 -0
- package/dist-types/commands/UpdateClusterCommand.d.ts +16 -0
- package/dist-types/commands/UpdateJobCommand.d.ts +16 -0
- package/dist-types/commands/UpdateJobShipmentStateCommand.d.ts +16 -0
- package/dist-types/commands/UpdateLongTermPricingCommand.d.ts +16 -0
- package/dist-types/models/SnowballServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +239 -0
- package/dist-types/pagination/DescribeAddressesPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListClusterJobsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListClustersPaginator.d.ts +3 -0
- package/dist-types/pagination/ListCompatibleImagesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListJobsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListLongTermPricingPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DescribeAddressRequest, DescribeAddressResult } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeAddressCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeAddressCommandInput extends DescribeAddressRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeAddressCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeAddressCommandOutput extends DescribeAddressResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Takes an <code>AddressId</code> and returns specific details about that address in the
|
|
18
23
|
* form of an <code>Address</code> object.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DescribeAddressCommandOutput extends DescribeAddressResult, __M
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DescribeAddressCommandInput - {@link DescribeAddressCommandInput}
|
|
35
|
+
* @returns {@link DescribeAddressCommandOutput}
|
|
29
36
|
* @see {@link DescribeAddressCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DescribeAddressCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link SnowballClientResolvedConfig | config} for SnowballClient's `config` shape.
|
|
@@ -65,11 +72,20 @@ export interface DescribeAddressCommandOutput extends DescribeAddressResult, __M
|
|
|
65
72
|
export declare class DescribeAddressCommand extends $Command<DescribeAddressCommandInput, DescribeAddressCommandOutput, SnowballClientResolvedConfig> {
|
|
66
73
|
readonly input: DescribeAddressCommandInput;
|
|
67
74
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
75
|
+
/**
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
68
78
|
constructor(input: DescribeAddressCommandInput);
|
|
69
79
|
/**
|
|
70
80
|
* @internal
|
|
71
81
|
*/
|
|
72
82
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SnowballClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeAddressCommandInput, DescribeAddressCommandOutput>;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
73
86
|
private serialize;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
74
90
|
private deserialize;
|
|
75
91
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DescribeAddressesRequest, DescribeAddressesResult } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeAddressesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeAddressesCommandInput extends DescribeAddressesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeAddressesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeAddressesCommandOutput extends DescribeAddressesResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns a specified number of <code>ADDRESS</code> objects. Calling this API in one of
|
|
18
23
|
* the US regions will return addresses from the list of all addresses associated with this
|
|
19
24
|
* account in all US regions.</p>
|
|
@@ -27,6 +32,8 @@ export interface DescribeAddressesCommandOutput extends DescribeAddressesResult,
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param DescribeAddressesCommandInput - {@link DescribeAddressesCommandInput}
|
|
36
|
+
* @returns {@link DescribeAddressesCommandOutput}
|
|
30
37
|
* @see {@link DescribeAddressesCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link DescribeAddressesCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link SnowballClientResolvedConfig | config} for SnowballClient's `config` shape.
|
|
@@ -71,11 +78,20 @@ export interface DescribeAddressesCommandOutput extends DescribeAddressesResult,
|
|
|
71
78
|
export declare class DescribeAddressesCommand extends $Command<DescribeAddressesCommandInput, DescribeAddressesCommandOutput, SnowballClientResolvedConfig> {
|
|
72
79
|
readonly input: DescribeAddressesCommandInput;
|
|
73
80
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
81
|
+
/**
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
74
84
|
constructor(input: DescribeAddressesCommandInput);
|
|
75
85
|
/**
|
|
76
86
|
* @internal
|
|
77
87
|
*/
|
|
78
88
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SnowballClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeAddressesCommandInput, DescribeAddressesCommandOutput>;
|
|
89
|
+
/**
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
79
92
|
private serialize;
|
|
93
|
+
/**
|
|
94
|
+
* @internal
|
|
95
|
+
*/
|
|
80
96
|
private deserialize;
|
|
81
97
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DescribeClusterRequest, DescribeClusterResult } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeClusterCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeClusterCommandInput extends DescribeClusterRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeClusterCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeClusterCommandOutput extends DescribeClusterResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns information about a specific cluster including shipping information, cluster
|
|
18
23
|
* status, and other important metadata.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DescribeClusterCommandOutput extends DescribeClusterResult, __M
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DescribeClusterCommandInput - {@link DescribeClusterCommandInput}
|
|
35
|
+
* @returns {@link DescribeClusterCommandOutput}
|
|
29
36
|
* @see {@link DescribeClusterCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DescribeClusterCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link SnowballClientResolvedConfig | config} for SnowballClient's `config` shape.
|
|
@@ -77,11 +84,20 @@ export interface DescribeClusterCommandOutput extends DescribeClusterResult, __M
|
|
|
77
84
|
export declare class DescribeClusterCommand extends $Command<DescribeClusterCommandInput, DescribeClusterCommandOutput, SnowballClientResolvedConfig> {
|
|
78
85
|
readonly input: DescribeClusterCommandInput;
|
|
79
86
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
87
|
+
/**
|
|
88
|
+
* @public
|
|
89
|
+
*/
|
|
80
90
|
constructor(input: DescribeClusterCommandInput);
|
|
81
91
|
/**
|
|
82
92
|
* @internal
|
|
83
93
|
*/
|
|
84
94
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SnowballClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeClusterCommandInput, DescribeClusterCommandOutput>;
|
|
95
|
+
/**
|
|
96
|
+
* @internal
|
|
97
|
+
*/
|
|
85
98
|
private serialize;
|
|
99
|
+
/**
|
|
100
|
+
* @internal
|
|
101
|
+
*/
|
|
86
102
|
private deserialize;
|
|
87
103
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DescribeJobRequest, DescribeJobResult } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeJobCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeJobCommandInput extends DescribeJobRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeJobCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeJobCommandOutput extends DescribeJobResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns information about a specific job including shipping information, job status,
|
|
18
23
|
* and other important metadata. </p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DescribeJobCommandOutput extends DescribeJobResult, __MetadataB
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DescribeJobCommandInput - {@link DescribeJobCommandInput}
|
|
35
|
+
* @returns {@link DescribeJobCommandOutput}
|
|
29
36
|
* @see {@link DescribeJobCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DescribeJobCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link SnowballClientResolvedConfig | config} for SnowballClient's `config` shape.
|
|
@@ -81,11 +88,20 @@ export interface DescribeJobCommandOutput extends DescribeJobResult, __MetadataB
|
|
|
81
88
|
export declare class DescribeJobCommand extends $Command<DescribeJobCommandInput, DescribeJobCommandOutput, SnowballClientResolvedConfig> {
|
|
82
89
|
readonly input: DescribeJobCommandInput;
|
|
83
90
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
91
|
+
/**
|
|
92
|
+
* @public
|
|
93
|
+
*/
|
|
84
94
|
constructor(input: DescribeJobCommandInput);
|
|
85
95
|
/**
|
|
86
96
|
* @internal
|
|
87
97
|
*/
|
|
88
98
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SnowballClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeJobCommandInput, DescribeJobCommandOutput>;
|
|
99
|
+
/**
|
|
100
|
+
* @internal
|
|
101
|
+
*/
|
|
89
102
|
private serialize;
|
|
103
|
+
/**
|
|
104
|
+
* @internal
|
|
105
|
+
*/
|
|
90
106
|
private deserialize;
|
|
91
107
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DescribeReturnShippingLabelRequest, DescribeReturnShippingLabelResult } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeReturnShippingLabelCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeReturnShippingLabelCommandInput extends DescribeReturnShippingLabelRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeReturnShippingLabelCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeReturnShippingLabelCommandOutput extends DescribeReturnShippingLabelResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Information on the shipping label of a Snow device that is being returned to Amazon Web Services.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeReturnShippingLabelCommandOutput extends DescribeReturn
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeReturnShippingLabelCommandInput - {@link DescribeReturnShippingLabelCommandInput}
|
|
34
|
+
* @returns {@link DescribeReturnShippingLabelCommandOutput}
|
|
28
35
|
* @see {@link DescribeReturnShippingLabelCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeReturnShippingLabelCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SnowballClientResolvedConfig | config} for SnowballClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface DescribeReturnShippingLabelCommandOutput extends DescribeReturn
|
|
|
46
53
|
export declare class DescribeReturnShippingLabelCommand extends $Command<DescribeReturnShippingLabelCommandInput, DescribeReturnShippingLabelCommandOutput, SnowballClientResolvedConfig> {
|
|
47
54
|
readonly input: DescribeReturnShippingLabelCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: DescribeReturnShippingLabelCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SnowballClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeReturnShippingLabelCommandInput, DescribeReturnShippingLabelCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetJobManifestRequest, GetJobManifestResult } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetJobManifestCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetJobManifestCommandInput extends GetJobManifestRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetJobManifestCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetJobManifestCommandOutput extends GetJobManifestResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns a link to an Amazon S3 presigned URL for the manifest file associated with the
|
|
18
23
|
* specified <code>JobId</code> value. You can access the manifest file for up to 60 minutes
|
|
19
24
|
* after this request has been made. To access the manifest file after 60 minutes have passed,
|
|
@@ -40,6 +45,8 @@ export interface GetJobManifestCommandOutput extends GetJobManifestResult, __Met
|
|
|
40
45
|
* const response = await client.send(command);
|
|
41
46
|
* ```
|
|
42
47
|
*
|
|
48
|
+
* @param GetJobManifestCommandInput - {@link GetJobManifestCommandInput}
|
|
49
|
+
* @returns {@link GetJobManifestCommandOutput}
|
|
43
50
|
* @see {@link GetJobManifestCommandInput} for command's `input` shape.
|
|
44
51
|
* @see {@link GetJobManifestCommandOutput} for command's `response` shape.
|
|
45
52
|
* @see {@link SnowballClientResolvedConfig | config} for SnowballClient's `config` shape.
|
|
@@ -79,11 +86,20 @@ export interface GetJobManifestCommandOutput extends GetJobManifestResult, __Met
|
|
|
79
86
|
export declare class GetJobManifestCommand extends $Command<GetJobManifestCommandInput, GetJobManifestCommandOutput, SnowballClientResolvedConfig> {
|
|
80
87
|
readonly input: GetJobManifestCommandInput;
|
|
81
88
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
89
|
+
/**
|
|
90
|
+
* @public
|
|
91
|
+
*/
|
|
82
92
|
constructor(input: GetJobManifestCommandInput);
|
|
83
93
|
/**
|
|
84
94
|
* @internal
|
|
85
95
|
*/
|
|
86
96
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SnowballClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetJobManifestCommandInput, GetJobManifestCommandOutput>;
|
|
97
|
+
/**
|
|
98
|
+
* @internal
|
|
99
|
+
*/
|
|
87
100
|
private serialize;
|
|
101
|
+
/**
|
|
102
|
+
* @internal
|
|
103
|
+
*/
|
|
88
104
|
private deserialize;
|
|
89
105
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetJobUnlockCodeRequest, GetJobUnlockCodeResult } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetJobUnlockCodeCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetJobUnlockCodeCommandInput extends GetJobUnlockCodeRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetJobUnlockCodeCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetJobUnlockCodeCommandOutput extends GetJobUnlockCodeResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the <code>UnlockCode</code> code value for the specified job. A particular
|
|
18
23
|
* <code>UnlockCode</code> value can be accessed for up to 360 days after the associated job
|
|
19
24
|
* has been created.</p>
|
|
@@ -37,6 +42,8 @@ export interface GetJobUnlockCodeCommandOutput extends GetJobUnlockCodeResult, _
|
|
|
37
42
|
* const response = await client.send(command);
|
|
38
43
|
* ```
|
|
39
44
|
*
|
|
45
|
+
* @param GetJobUnlockCodeCommandInput - {@link GetJobUnlockCodeCommandInput}
|
|
46
|
+
* @returns {@link GetJobUnlockCodeCommandOutput}
|
|
40
47
|
* @see {@link GetJobUnlockCodeCommandInput} for command's `input` shape.
|
|
41
48
|
* @see {@link GetJobUnlockCodeCommandOutput} for command's `response` shape.
|
|
42
49
|
* @see {@link SnowballClientResolvedConfig | config} for SnowballClient's `config` shape.
|
|
@@ -74,11 +81,20 @@ export interface GetJobUnlockCodeCommandOutput extends GetJobUnlockCodeResult, _
|
|
|
74
81
|
export declare class GetJobUnlockCodeCommand extends $Command<GetJobUnlockCodeCommandInput, GetJobUnlockCodeCommandOutput, SnowballClientResolvedConfig> {
|
|
75
82
|
readonly input: GetJobUnlockCodeCommandInput;
|
|
76
83
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
84
|
+
/**
|
|
85
|
+
* @public
|
|
86
|
+
*/
|
|
77
87
|
constructor(input: GetJobUnlockCodeCommandInput);
|
|
78
88
|
/**
|
|
79
89
|
* @internal
|
|
80
90
|
*/
|
|
81
91
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SnowballClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetJobUnlockCodeCommandInput, GetJobUnlockCodeCommandOutput>;
|
|
92
|
+
/**
|
|
93
|
+
* @internal
|
|
94
|
+
*/
|
|
82
95
|
private serialize;
|
|
96
|
+
/**
|
|
97
|
+
* @internal
|
|
98
|
+
*/
|
|
83
99
|
private deserialize;
|
|
84
100
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetSnowballUsageRequest, GetSnowballUsageResult } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetSnowballUsageCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetSnowballUsageCommandInput extends GetSnowballUsageRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetSnowballUsageCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetSnowballUsageCommandOutput extends GetSnowballUsageResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns information about the Snow Family service limit for your account, and also the
|
|
18
23
|
* number of Snow devices your account has in use.</p>
|
|
19
24
|
* <p>The default service limit for the number of Snow devices that you can have at one time
|
|
@@ -28,6 +33,8 @@ export interface GetSnowballUsageCommandOutput extends GetSnowballUsageResult, _
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param GetSnowballUsageCommandInput - {@link GetSnowballUsageCommandInput}
|
|
37
|
+
* @returns {@link GetSnowballUsageCommandOutput}
|
|
31
38
|
* @see {@link GetSnowballUsageCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link GetSnowballUsageCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link SnowballClientResolvedConfig | config} for SnowballClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface GetSnowballUsageCommandOutput extends GetSnowballUsageResult, _
|
|
|
54
61
|
export declare class GetSnowballUsageCommand extends $Command<GetSnowballUsageCommandInput, GetSnowballUsageCommandOutput, SnowballClientResolvedConfig> {
|
|
55
62
|
readonly input: GetSnowballUsageCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: GetSnowballUsageCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SnowballClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSnowballUsageCommandInput, GetSnowballUsageCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetSoftwareUpdatesRequest, GetSoftwareUpdatesResult } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetSoftwareUpdatesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetSoftwareUpdatesCommandInput extends GetSoftwareUpdatesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetSoftwareUpdatesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetSoftwareUpdatesCommandOutput extends GetSoftwareUpdatesResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns an Amazon S3 presigned URL for an update file associated with a specified
|
|
18
23
|
* <code>JobId</code>.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface GetSoftwareUpdatesCommandOutput extends GetSoftwareUpdatesResul
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param GetSoftwareUpdatesCommandInput - {@link GetSoftwareUpdatesCommandInput}
|
|
35
|
+
* @returns {@link GetSoftwareUpdatesCommandOutput}
|
|
29
36
|
* @see {@link GetSoftwareUpdatesCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link GetSoftwareUpdatesCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link SnowballClientResolvedConfig | config} for SnowballClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface GetSoftwareUpdatesCommandOutput extends GetSoftwareUpdatesResul
|
|
|
43
50
|
export declare class GetSoftwareUpdatesCommand extends $Command<GetSoftwareUpdatesCommandInput, GetSoftwareUpdatesCommandOutput, SnowballClientResolvedConfig> {
|
|
44
51
|
readonly input: GetSoftwareUpdatesCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: GetSoftwareUpdatesCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SnowballClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSoftwareUpdatesCommandInput, GetSoftwareUpdatesCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListClusterJobsRequest, ListClusterJobsResult } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListClusterJobsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListClusterJobsCommandInput extends ListClusterJobsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListClusterJobsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListClusterJobsCommandOutput extends ListClusterJobsResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns an array of <code>JobListEntry</code> objects of the specified length. Each
|
|
18
23
|
* <code>JobListEntry</code> object is for a job in the specified cluster and contains a job's
|
|
19
24
|
* state, a job's ID, and other information.</p>
|
|
@@ -27,6 +32,8 @@ export interface ListClusterJobsCommandOutput extends ListClusterJobsResult, __M
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param ListClusterJobsCommandInput - {@link ListClusterJobsCommandInput}
|
|
36
|
+
* @returns {@link ListClusterJobsCommandOutput}
|
|
30
37
|
* @see {@link ListClusterJobsCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link ListClusterJobsCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link SnowballClientResolvedConfig | config} for SnowballClient's `config` shape.
|
|
@@ -107,11 +114,20 @@ export interface ListClusterJobsCommandOutput extends ListClusterJobsResult, __M
|
|
|
107
114
|
export declare class ListClusterJobsCommand extends $Command<ListClusterJobsCommandInput, ListClusterJobsCommandOutput, SnowballClientResolvedConfig> {
|
|
108
115
|
readonly input: ListClusterJobsCommandInput;
|
|
109
116
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
117
|
+
/**
|
|
118
|
+
* @public
|
|
119
|
+
*/
|
|
110
120
|
constructor(input: ListClusterJobsCommandInput);
|
|
111
121
|
/**
|
|
112
122
|
* @internal
|
|
113
123
|
*/
|
|
114
124
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SnowballClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListClusterJobsCommandInput, ListClusterJobsCommandOutput>;
|
|
125
|
+
/**
|
|
126
|
+
* @internal
|
|
127
|
+
*/
|
|
115
128
|
private serialize;
|
|
129
|
+
/**
|
|
130
|
+
* @internal
|
|
131
|
+
*/
|
|
116
132
|
private deserialize;
|
|
117
133
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListClustersRequest, ListClustersResult } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListClustersCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListClustersCommandInput extends ListClustersRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListClustersCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListClustersCommandOutput extends ListClustersResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns an array of <code>ClusterListEntry</code> objects of the specified length. Each
|
|
18
23
|
* <code>ClusterListEntry</code> object contains a cluster's state, a cluster's ID, and other
|
|
19
24
|
* important status information.</p>
|
|
@@ -27,6 +32,8 @@ export interface ListClustersCommandOutput extends ListClustersResult, __Metadat
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param ListClustersCommandInput - {@link ListClustersCommandInput}
|
|
36
|
+
* @returns {@link ListClustersCommandOutput}
|
|
30
37
|
* @see {@link ListClustersCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link ListClustersCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link SnowballClientResolvedConfig | config} for SnowballClient's `config` shape.
|
|
@@ -62,11 +69,20 @@ export interface ListClustersCommandOutput extends ListClustersResult, __Metadat
|
|
|
62
69
|
export declare class ListClustersCommand extends $Command<ListClustersCommandInput, ListClustersCommandOutput, SnowballClientResolvedConfig> {
|
|
63
70
|
readonly input: ListClustersCommandInput;
|
|
64
71
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
72
|
+
/**
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
65
75
|
constructor(input: ListClustersCommandInput);
|
|
66
76
|
/**
|
|
67
77
|
* @internal
|
|
68
78
|
*/
|
|
69
79
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SnowballClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListClustersCommandInput, ListClustersCommandOutput>;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
70
83
|
private serialize;
|
|
84
|
+
/**
|
|
85
|
+
* @internal
|
|
86
|
+
*/
|
|
71
87
|
private deserialize;
|
|
72
88
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListCompatibleImagesRequest, ListCompatibleImagesResult } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListCompatibleImagesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListCompatibleImagesCommandInput extends ListCompatibleImagesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListCompatibleImagesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListCompatibleImagesCommandOutput extends ListCompatibleImagesResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>This action returns a list of the different Amazon EC2 Amazon Machine Images (AMIs)
|
|
18
23
|
* that are owned by your Amazon Web Services accountthat would be supported for use on a Snow
|
|
19
24
|
* device. Currently, supported AMIs are based on the CentOS 7 (x86_64) - with Updates HVM,
|
|
@@ -29,6 +34,8 @@ export interface ListCompatibleImagesCommandOutput extends ListCompatibleImagesR
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param ListCompatibleImagesCommandInput - {@link ListCompatibleImagesCommandInput}
|
|
38
|
+
* @returns {@link ListCompatibleImagesCommandOutput}
|
|
32
39
|
* @see {@link ListCompatibleImagesCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link ListCompatibleImagesCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link SnowballClientResolvedConfig | config} for SnowballClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface ListCompatibleImagesCommandOutput extends ListCompatibleImagesR
|
|
|
47
54
|
export declare class ListCompatibleImagesCommand extends $Command<ListCompatibleImagesCommandInput, ListCompatibleImagesCommandOutput, SnowballClientResolvedConfig> {
|
|
48
55
|
readonly input: ListCompatibleImagesCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: ListCompatibleImagesCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SnowballClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListCompatibleImagesCommandInput, ListCompatibleImagesCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListJobsRequest, ListJobsResult } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListJobsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListJobsCommandInput extends ListJobsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListJobsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListJobsCommandOutput extends ListJobsResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns an array of <code>JobListEntry</code> objects of the specified length. Each
|
|
18
23
|
* <code>JobListEntry</code> object contains a job's state, a job's ID, and a value that
|
|
19
24
|
* indicates whether the job is a job part, in the case of export jobs. Calling this API action
|
|
@@ -29,6 +34,8 @@ export interface ListJobsCommandOutput extends ListJobsResult, __MetadataBearer
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param ListJobsCommandInput - {@link ListJobsCommandInput}
|
|
38
|
+
* @returns {@link ListJobsCommandOutput}
|
|
32
39
|
* @see {@link ListJobsCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link ListJobsCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link SnowballClientResolvedConfig | config} for SnowballClient's `config` shape.
|
|
@@ -67,11 +74,20 @@ export interface ListJobsCommandOutput extends ListJobsResult, __MetadataBearer
|
|
|
67
74
|
export declare class ListJobsCommand extends $Command<ListJobsCommandInput, ListJobsCommandOutput, SnowballClientResolvedConfig> {
|
|
68
75
|
readonly input: ListJobsCommandInput;
|
|
69
76
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
77
|
+
/**
|
|
78
|
+
* @public
|
|
79
|
+
*/
|
|
70
80
|
constructor(input: ListJobsCommandInput);
|
|
71
81
|
/**
|
|
72
82
|
* @internal
|
|
73
83
|
*/
|
|
74
84
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SnowballClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListJobsCommandInput, ListJobsCommandOutput>;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
75
88
|
private serialize;
|
|
89
|
+
/**
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
76
92
|
private deserialize;
|
|
77
93
|
}
|