@aws-sdk/client-snowball 3.50.0 → 3.53.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 +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/SnowballServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +160 -2
- package/dist-cjs/protocols/Aws_json1_1.js +220 -672
- package/dist-es/index.js +1 -0
- package/dist-es/models/SnowballServiceException.js +12 -0
- package/dist-es/models/models_0.js +147 -1
- package/dist-es/protocols/Aws_json1_1.js +476 -744
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/SnowballServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +79 -34
- package/dist-types/ts3.4/Snowball.d.ts +130 -0
- package/dist-types/ts3.4/SnowballClient.d.ts +98 -0
- package/dist-types/ts3.4/commands/CancelClusterCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateAddressCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateJobCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateLongTermPricingCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateReturnShippingLabelCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeAddressCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeAddressesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeClusterCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeJobCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeReturnShippingLabelCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetJobManifestCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetJobUnlockCodeCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetSnowballUsageCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetSoftwareUpdatesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListClusterJobsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListClustersCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListCompatibleImagesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListLongTermPricingCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateClusterCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateJobCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateJobShipmentStateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateLongTermPricingCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +25 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/SnowballServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1117 -0
- package/dist-types/ts3.4/pagination/DescribeAddressesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListJobsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +77 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +33 -33
|
@@ -0,0 +1,1117 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { SnowballServiceException as __BaseException } from "./SnowballServiceException";
|
|
3
|
+
|
|
4
|
+
export interface Address {
|
|
5
|
+
|
|
6
|
+
AddressId?: string;
|
|
7
|
+
|
|
8
|
+
Name?: string;
|
|
9
|
+
|
|
10
|
+
Company?: string;
|
|
11
|
+
|
|
12
|
+
Street1?: string;
|
|
13
|
+
|
|
14
|
+
Street2?: string;
|
|
15
|
+
|
|
16
|
+
Street3?: string;
|
|
17
|
+
|
|
18
|
+
City?: string;
|
|
19
|
+
|
|
20
|
+
StateOrProvince?: string;
|
|
21
|
+
|
|
22
|
+
PrefectureOrDistrict?: string;
|
|
23
|
+
|
|
24
|
+
Landmark?: string;
|
|
25
|
+
|
|
26
|
+
Country?: string;
|
|
27
|
+
|
|
28
|
+
PostalCode?: string;
|
|
29
|
+
|
|
30
|
+
PhoneNumber?: string;
|
|
31
|
+
|
|
32
|
+
IsRestricted?: boolean;
|
|
33
|
+
}
|
|
34
|
+
export declare namespace Address {
|
|
35
|
+
|
|
36
|
+
const filterSensitiveLog: (obj: Address) => any;
|
|
37
|
+
}
|
|
38
|
+
export interface CancelClusterRequest {
|
|
39
|
+
|
|
40
|
+
ClusterId: string | undefined;
|
|
41
|
+
}
|
|
42
|
+
export declare namespace CancelClusterRequest {
|
|
43
|
+
|
|
44
|
+
const filterSensitiveLog: (obj: CancelClusterRequest) => any;
|
|
45
|
+
}
|
|
46
|
+
export interface CancelClusterResult {
|
|
47
|
+
}
|
|
48
|
+
export declare namespace CancelClusterResult {
|
|
49
|
+
|
|
50
|
+
const filterSensitiveLog: (obj: CancelClusterResult) => any;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
export declare class InvalidJobStateException extends __BaseException {
|
|
54
|
+
readonly name: "InvalidJobStateException";
|
|
55
|
+
readonly $fault: "client";
|
|
56
|
+
Message?: string;
|
|
57
|
+
|
|
58
|
+
constructor(opts: __ExceptionOptionType<InvalidJobStateException, __BaseException>);
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
export declare class InvalidResourceException extends __BaseException {
|
|
62
|
+
readonly name: "InvalidResourceException";
|
|
63
|
+
readonly $fault: "client";
|
|
64
|
+
Message?: string;
|
|
65
|
+
|
|
66
|
+
ResourceType?: string;
|
|
67
|
+
|
|
68
|
+
constructor(opts: __ExceptionOptionType<InvalidResourceException, __BaseException>);
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
export declare class KMSRequestFailedException extends __BaseException {
|
|
72
|
+
readonly name: "KMSRequestFailedException";
|
|
73
|
+
readonly $fault: "client";
|
|
74
|
+
Message?: string;
|
|
75
|
+
|
|
76
|
+
constructor(opts: __ExceptionOptionType<KMSRequestFailedException, __BaseException>);
|
|
77
|
+
}
|
|
78
|
+
export interface CancelJobRequest {
|
|
79
|
+
|
|
80
|
+
JobId: string | undefined;
|
|
81
|
+
}
|
|
82
|
+
export declare namespace CancelJobRequest {
|
|
83
|
+
|
|
84
|
+
const filterSensitiveLog: (obj: CancelJobRequest) => any;
|
|
85
|
+
}
|
|
86
|
+
export interface CancelJobResult {
|
|
87
|
+
}
|
|
88
|
+
export declare namespace CancelJobResult {
|
|
89
|
+
|
|
90
|
+
const filterSensitiveLog: (obj: CancelJobResult) => any;
|
|
91
|
+
}
|
|
92
|
+
export interface CreateAddressRequest {
|
|
93
|
+
|
|
94
|
+
Address: Address | undefined;
|
|
95
|
+
}
|
|
96
|
+
export declare namespace CreateAddressRequest {
|
|
97
|
+
|
|
98
|
+
const filterSensitiveLog: (obj: CreateAddressRequest) => any;
|
|
99
|
+
}
|
|
100
|
+
export interface CreateAddressResult {
|
|
101
|
+
|
|
102
|
+
AddressId?: string;
|
|
103
|
+
}
|
|
104
|
+
export declare namespace CreateAddressResult {
|
|
105
|
+
|
|
106
|
+
const filterSensitiveLog: (obj: CreateAddressResult) => any;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
export declare class InvalidAddressException extends __BaseException {
|
|
110
|
+
readonly name: "InvalidAddressException";
|
|
111
|
+
readonly $fault: "client";
|
|
112
|
+
Message?: string;
|
|
113
|
+
|
|
114
|
+
constructor(opts: __ExceptionOptionType<InvalidAddressException, __BaseException>);
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
export declare class UnsupportedAddressException extends __BaseException {
|
|
118
|
+
readonly name: "UnsupportedAddressException";
|
|
119
|
+
readonly $fault: "client";
|
|
120
|
+
Message?: string;
|
|
121
|
+
|
|
122
|
+
constructor(opts: __ExceptionOptionType<UnsupportedAddressException, __BaseException>);
|
|
123
|
+
}
|
|
124
|
+
export declare enum JobType {
|
|
125
|
+
EXPORT = "EXPORT",
|
|
126
|
+
IMPORT = "IMPORT",
|
|
127
|
+
LOCAL_USE = "LOCAL_USE"
|
|
128
|
+
}
|
|
129
|
+
export declare enum JobState {
|
|
130
|
+
CANCELLED = "Cancelled",
|
|
131
|
+
COMPLETE = "Complete",
|
|
132
|
+
IN_PROGRESS = "InProgress",
|
|
133
|
+
IN_TRANSIT_TO_AWS = "InTransitToAWS",
|
|
134
|
+
IN_TRANSIT_TO_CUSTOMER = "InTransitToCustomer",
|
|
135
|
+
LISTING = "Listing",
|
|
136
|
+
NEW = "New",
|
|
137
|
+
PENDING = "Pending",
|
|
138
|
+
PREPARING_APPLIANCE = "PreparingAppliance",
|
|
139
|
+
PREPARING_SHIPMENT = "PreparingShipment",
|
|
140
|
+
WITH_AWS = "WithAWS",
|
|
141
|
+
WITH_AWS_SORTING_FACILITY = "WithAWSSortingFacility",
|
|
142
|
+
WITH_CUSTOMER = "WithCustomer"
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
export interface Notification {
|
|
146
|
+
|
|
147
|
+
SnsTopicARN?: string;
|
|
148
|
+
|
|
149
|
+
JobStatesToNotify?: (JobState | string)[];
|
|
150
|
+
|
|
151
|
+
NotifyAll?: boolean;
|
|
152
|
+
}
|
|
153
|
+
export declare namespace Notification {
|
|
154
|
+
|
|
155
|
+
const filterSensitiveLog: (obj: Notification) => any;
|
|
156
|
+
}
|
|
157
|
+
export declare enum StorageUnit {
|
|
158
|
+
TB = "TB"
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
export interface NFSOnDeviceServiceConfiguration {
|
|
162
|
+
|
|
163
|
+
StorageLimit?: number;
|
|
164
|
+
|
|
165
|
+
StorageUnit?: StorageUnit | string;
|
|
166
|
+
}
|
|
167
|
+
export declare namespace NFSOnDeviceServiceConfiguration {
|
|
168
|
+
|
|
169
|
+
const filterSensitiveLog: (obj: NFSOnDeviceServiceConfiguration) => any;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
export interface TGWOnDeviceServiceConfiguration {
|
|
173
|
+
|
|
174
|
+
StorageLimit?: number;
|
|
175
|
+
|
|
176
|
+
StorageUnit?: StorageUnit | string;
|
|
177
|
+
}
|
|
178
|
+
export declare namespace TGWOnDeviceServiceConfiguration {
|
|
179
|
+
|
|
180
|
+
const filterSensitiveLog: (obj: TGWOnDeviceServiceConfiguration) => any;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
export interface OnDeviceServiceConfiguration {
|
|
184
|
+
|
|
185
|
+
NFSOnDeviceService?: NFSOnDeviceServiceConfiguration;
|
|
186
|
+
|
|
187
|
+
TGWOnDeviceService?: TGWOnDeviceServiceConfiguration;
|
|
188
|
+
}
|
|
189
|
+
export declare namespace OnDeviceServiceConfiguration {
|
|
190
|
+
|
|
191
|
+
const filterSensitiveLog: (obj: OnDeviceServiceConfiguration) => any;
|
|
192
|
+
}
|
|
193
|
+
export declare enum RemoteManagement {
|
|
194
|
+
INSTALLED_AUTOSTART = "INSTALLED_AUTOSTART",
|
|
195
|
+
INSTALLED_ONLY = "INSTALLED_ONLY"
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
export interface Ec2AmiResource {
|
|
199
|
+
|
|
200
|
+
AmiId: string | undefined;
|
|
201
|
+
|
|
202
|
+
SnowballAmiId?: string;
|
|
203
|
+
}
|
|
204
|
+
export declare namespace Ec2AmiResource {
|
|
205
|
+
|
|
206
|
+
const filterSensitiveLog: (obj: Ec2AmiResource) => any;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
export interface EventTriggerDefinition {
|
|
210
|
+
|
|
211
|
+
EventResourceARN?: string;
|
|
212
|
+
}
|
|
213
|
+
export declare namespace EventTriggerDefinition {
|
|
214
|
+
|
|
215
|
+
const filterSensitiveLog: (obj: EventTriggerDefinition) => any;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
export interface LambdaResource {
|
|
219
|
+
|
|
220
|
+
LambdaArn?: string;
|
|
221
|
+
|
|
222
|
+
EventTriggers?: EventTriggerDefinition[];
|
|
223
|
+
}
|
|
224
|
+
export declare namespace LambdaResource {
|
|
225
|
+
|
|
226
|
+
const filterSensitiveLog: (obj: LambdaResource) => any;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
export interface KeyRange {
|
|
230
|
+
|
|
231
|
+
BeginMarker?: string;
|
|
232
|
+
|
|
233
|
+
EndMarker?: string;
|
|
234
|
+
}
|
|
235
|
+
export declare namespace KeyRange {
|
|
236
|
+
|
|
237
|
+
const filterSensitiveLog: (obj: KeyRange) => any;
|
|
238
|
+
}
|
|
239
|
+
export declare enum DeviceServiceName {
|
|
240
|
+
NFS_ON_DEVICE_SERVICE = "NFS_ON_DEVICE_SERVICE",
|
|
241
|
+
S3_ON_DEVICE_SERVICE = "S3_ON_DEVICE_SERVICE"
|
|
242
|
+
}
|
|
243
|
+
export declare enum TransferOption {
|
|
244
|
+
EXPORT = "EXPORT",
|
|
245
|
+
IMPORT = "IMPORT",
|
|
246
|
+
LOCAL_USE = "LOCAL_USE"
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
export interface TargetOnDeviceService {
|
|
250
|
+
|
|
251
|
+
ServiceName?: DeviceServiceName | string;
|
|
252
|
+
|
|
253
|
+
TransferOption?: TransferOption | string;
|
|
254
|
+
}
|
|
255
|
+
export declare namespace TargetOnDeviceService {
|
|
256
|
+
|
|
257
|
+
const filterSensitiveLog: (obj: TargetOnDeviceService) => any;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
export interface S3Resource {
|
|
261
|
+
|
|
262
|
+
BucketArn?: string;
|
|
263
|
+
|
|
264
|
+
KeyRange?: KeyRange;
|
|
265
|
+
|
|
266
|
+
TargetOnDeviceServices?: TargetOnDeviceService[];
|
|
267
|
+
}
|
|
268
|
+
export declare namespace S3Resource {
|
|
269
|
+
|
|
270
|
+
const filterSensitiveLog: (obj: S3Resource) => any;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
export interface JobResource {
|
|
274
|
+
|
|
275
|
+
S3Resources?: S3Resource[];
|
|
276
|
+
|
|
277
|
+
LambdaResources?: LambdaResource[];
|
|
278
|
+
|
|
279
|
+
Ec2AmiResources?: Ec2AmiResource[];
|
|
280
|
+
}
|
|
281
|
+
export declare namespace JobResource {
|
|
282
|
+
|
|
283
|
+
const filterSensitiveLog: (obj: JobResource) => any;
|
|
284
|
+
}
|
|
285
|
+
export declare enum ShippingOption {
|
|
286
|
+
EXPRESS = "EXPRESS",
|
|
287
|
+
NEXT_DAY = "NEXT_DAY",
|
|
288
|
+
SECOND_DAY = "SECOND_DAY",
|
|
289
|
+
STANDARD = "STANDARD"
|
|
290
|
+
}
|
|
291
|
+
export declare enum SnowballType {
|
|
292
|
+
EDGE = "EDGE",
|
|
293
|
+
EDGE_C = "EDGE_C",
|
|
294
|
+
EDGE_CG = "EDGE_CG",
|
|
295
|
+
EDGE_S = "EDGE_S",
|
|
296
|
+
SNC1_HDD = "SNC1_HDD",
|
|
297
|
+
SNC1_SSD = "SNC1_SSD",
|
|
298
|
+
STANDARD = "STANDARD"
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
export interface INDTaxDocuments {
|
|
302
|
+
|
|
303
|
+
GSTIN?: string;
|
|
304
|
+
}
|
|
305
|
+
export declare namespace INDTaxDocuments {
|
|
306
|
+
|
|
307
|
+
const filterSensitiveLog: (obj: INDTaxDocuments) => any;
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
export interface TaxDocuments {
|
|
311
|
+
|
|
312
|
+
IND?: INDTaxDocuments;
|
|
313
|
+
}
|
|
314
|
+
export declare namespace TaxDocuments {
|
|
315
|
+
|
|
316
|
+
const filterSensitiveLog: (obj: TaxDocuments) => any;
|
|
317
|
+
}
|
|
318
|
+
export interface CreateClusterRequest {
|
|
319
|
+
|
|
320
|
+
JobType: JobType | string | undefined;
|
|
321
|
+
|
|
322
|
+
Resources: JobResource | undefined;
|
|
323
|
+
|
|
324
|
+
OnDeviceServiceConfiguration?: OnDeviceServiceConfiguration;
|
|
325
|
+
|
|
326
|
+
Description?: string;
|
|
327
|
+
|
|
328
|
+
AddressId: string | undefined;
|
|
329
|
+
|
|
330
|
+
KmsKeyARN?: string;
|
|
331
|
+
|
|
332
|
+
RoleARN: string | undefined;
|
|
333
|
+
|
|
334
|
+
SnowballType: SnowballType | string | undefined;
|
|
335
|
+
|
|
336
|
+
ShippingOption: ShippingOption | string | undefined;
|
|
337
|
+
|
|
338
|
+
Notification?: Notification;
|
|
339
|
+
|
|
340
|
+
ForwardingAddressId?: string;
|
|
341
|
+
|
|
342
|
+
TaxDocuments?: TaxDocuments;
|
|
343
|
+
|
|
344
|
+
RemoteManagement?: RemoteManagement | string;
|
|
345
|
+
}
|
|
346
|
+
export declare namespace CreateClusterRequest {
|
|
347
|
+
|
|
348
|
+
const filterSensitiveLog: (obj: CreateClusterRequest) => any;
|
|
349
|
+
}
|
|
350
|
+
export interface CreateClusterResult {
|
|
351
|
+
|
|
352
|
+
ClusterId?: string;
|
|
353
|
+
}
|
|
354
|
+
export declare namespace CreateClusterResult {
|
|
355
|
+
|
|
356
|
+
const filterSensitiveLog: (obj: CreateClusterResult) => any;
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
export declare class Ec2RequestFailedException extends __BaseException {
|
|
360
|
+
readonly name: "Ec2RequestFailedException";
|
|
361
|
+
readonly $fault: "client";
|
|
362
|
+
Message?: string;
|
|
363
|
+
|
|
364
|
+
constructor(opts: __ExceptionOptionType<Ec2RequestFailedException, __BaseException>);
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
export declare class InvalidInputCombinationException extends __BaseException {
|
|
368
|
+
readonly name: "InvalidInputCombinationException";
|
|
369
|
+
readonly $fault: "client";
|
|
370
|
+
Message?: string;
|
|
371
|
+
|
|
372
|
+
constructor(opts: __ExceptionOptionType<InvalidInputCombinationException, __BaseException>);
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
export declare class ClusterLimitExceededException extends __BaseException {
|
|
376
|
+
readonly name: "ClusterLimitExceededException";
|
|
377
|
+
readonly $fault: "client";
|
|
378
|
+
Message?: string;
|
|
379
|
+
|
|
380
|
+
constructor(opts: __ExceptionOptionType<ClusterLimitExceededException, __BaseException>);
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
export interface WirelessConnection {
|
|
384
|
+
|
|
385
|
+
IsWifiEnabled?: boolean;
|
|
386
|
+
}
|
|
387
|
+
export declare namespace WirelessConnection {
|
|
388
|
+
|
|
389
|
+
const filterSensitiveLog: (obj: WirelessConnection) => any;
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
export interface SnowconeDeviceConfiguration {
|
|
393
|
+
|
|
394
|
+
WirelessConnection?: WirelessConnection;
|
|
395
|
+
}
|
|
396
|
+
export declare namespace SnowconeDeviceConfiguration {
|
|
397
|
+
|
|
398
|
+
const filterSensitiveLog: (obj: SnowconeDeviceConfiguration) => any;
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
export interface DeviceConfiguration {
|
|
402
|
+
|
|
403
|
+
SnowconeDeviceConfiguration?: SnowconeDeviceConfiguration;
|
|
404
|
+
}
|
|
405
|
+
export declare namespace DeviceConfiguration {
|
|
406
|
+
|
|
407
|
+
const filterSensitiveLog: (obj: DeviceConfiguration) => any;
|
|
408
|
+
}
|
|
409
|
+
export declare enum SnowballCapacity {
|
|
410
|
+
NO_PREFERENCE = "NoPreference",
|
|
411
|
+
T100 = "T100",
|
|
412
|
+
T14 = "T14",
|
|
413
|
+
T42 = "T42",
|
|
414
|
+
T50 = "T50",
|
|
415
|
+
T8 = "T8",
|
|
416
|
+
T80 = "T80",
|
|
417
|
+
T98 = "T98"
|
|
418
|
+
}
|
|
419
|
+
export interface CreateJobRequest {
|
|
420
|
+
|
|
421
|
+
JobType?: JobType | string;
|
|
422
|
+
|
|
423
|
+
Resources?: JobResource;
|
|
424
|
+
|
|
425
|
+
OnDeviceServiceConfiguration?: OnDeviceServiceConfiguration;
|
|
426
|
+
|
|
427
|
+
Description?: string;
|
|
428
|
+
|
|
429
|
+
AddressId?: string;
|
|
430
|
+
|
|
431
|
+
KmsKeyARN?: string;
|
|
432
|
+
|
|
433
|
+
RoleARN?: string;
|
|
434
|
+
|
|
435
|
+
SnowballCapacityPreference?: SnowballCapacity | string;
|
|
436
|
+
|
|
437
|
+
ShippingOption?: ShippingOption | string;
|
|
438
|
+
|
|
439
|
+
Notification?: Notification;
|
|
440
|
+
|
|
441
|
+
ClusterId?: string;
|
|
442
|
+
|
|
443
|
+
SnowballType?: SnowballType | string;
|
|
444
|
+
|
|
445
|
+
ForwardingAddressId?: string;
|
|
446
|
+
|
|
447
|
+
TaxDocuments?: TaxDocuments;
|
|
448
|
+
|
|
449
|
+
DeviceConfiguration?: DeviceConfiguration;
|
|
450
|
+
|
|
451
|
+
RemoteManagement?: RemoteManagement | string;
|
|
452
|
+
|
|
453
|
+
LongTermPricingId?: string;
|
|
454
|
+
}
|
|
455
|
+
export declare namespace CreateJobRequest {
|
|
456
|
+
|
|
457
|
+
const filterSensitiveLog: (obj: CreateJobRequest) => any;
|
|
458
|
+
}
|
|
459
|
+
export interface CreateJobResult {
|
|
460
|
+
|
|
461
|
+
JobId?: string;
|
|
462
|
+
}
|
|
463
|
+
export declare namespace CreateJobResult {
|
|
464
|
+
|
|
465
|
+
const filterSensitiveLog: (obj: CreateJobResult) => any;
|
|
466
|
+
}
|
|
467
|
+
export declare enum LongTermPricingType {
|
|
468
|
+
ONE_YEAR = "OneYear",
|
|
469
|
+
THREE_YEAR = "ThreeYear"
|
|
470
|
+
}
|
|
471
|
+
export interface CreateLongTermPricingRequest {
|
|
472
|
+
|
|
473
|
+
LongTermPricingType: LongTermPricingType | string | undefined;
|
|
474
|
+
|
|
475
|
+
IsLongTermPricingAutoRenew?: boolean;
|
|
476
|
+
|
|
477
|
+
SnowballType?: SnowballType | string;
|
|
478
|
+
}
|
|
479
|
+
export declare namespace CreateLongTermPricingRequest {
|
|
480
|
+
|
|
481
|
+
const filterSensitiveLog: (obj: CreateLongTermPricingRequest) => any;
|
|
482
|
+
}
|
|
483
|
+
export interface CreateLongTermPricingResult {
|
|
484
|
+
|
|
485
|
+
LongTermPricingId?: string;
|
|
486
|
+
}
|
|
487
|
+
export declare namespace CreateLongTermPricingResult {
|
|
488
|
+
|
|
489
|
+
const filterSensitiveLog: (obj: CreateLongTermPricingResult) => any;
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
export declare class ConflictException extends __BaseException {
|
|
493
|
+
readonly name: "ConflictException";
|
|
494
|
+
readonly $fault: "client";
|
|
495
|
+
|
|
496
|
+
ConflictResource?: string;
|
|
497
|
+
Message?: string;
|
|
498
|
+
|
|
499
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
500
|
+
}
|
|
501
|
+
export interface CreateReturnShippingLabelRequest {
|
|
502
|
+
|
|
503
|
+
JobId: string | undefined;
|
|
504
|
+
|
|
505
|
+
ShippingOption?: ShippingOption | string;
|
|
506
|
+
}
|
|
507
|
+
export declare namespace CreateReturnShippingLabelRequest {
|
|
508
|
+
|
|
509
|
+
const filterSensitiveLog: (obj: CreateReturnShippingLabelRequest) => any;
|
|
510
|
+
}
|
|
511
|
+
export declare enum ShippingLabelStatus {
|
|
512
|
+
FAILED = "Failed",
|
|
513
|
+
IN_PROGRESS = "InProgress",
|
|
514
|
+
SUCCEEDED = "Succeeded",
|
|
515
|
+
TIMED_OUT = "TimedOut"
|
|
516
|
+
}
|
|
517
|
+
export interface CreateReturnShippingLabelResult {
|
|
518
|
+
|
|
519
|
+
Status?: ShippingLabelStatus | string;
|
|
520
|
+
}
|
|
521
|
+
export declare namespace CreateReturnShippingLabelResult {
|
|
522
|
+
|
|
523
|
+
const filterSensitiveLog: (obj: CreateReturnShippingLabelResult) => any;
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
export declare class ReturnShippingLabelAlreadyExistsException extends __BaseException {
|
|
527
|
+
readonly name: "ReturnShippingLabelAlreadyExistsException";
|
|
528
|
+
readonly $fault: "client";
|
|
529
|
+
Message?: string;
|
|
530
|
+
|
|
531
|
+
constructor(opts: __ExceptionOptionType<ReturnShippingLabelAlreadyExistsException, __BaseException>);
|
|
532
|
+
}
|
|
533
|
+
export interface DescribeAddressRequest {
|
|
534
|
+
|
|
535
|
+
AddressId: string | undefined;
|
|
536
|
+
}
|
|
537
|
+
export declare namespace DescribeAddressRequest {
|
|
538
|
+
|
|
539
|
+
const filterSensitiveLog: (obj: DescribeAddressRequest) => any;
|
|
540
|
+
}
|
|
541
|
+
export interface DescribeAddressResult {
|
|
542
|
+
|
|
543
|
+
Address?: Address;
|
|
544
|
+
}
|
|
545
|
+
export declare namespace DescribeAddressResult {
|
|
546
|
+
|
|
547
|
+
const filterSensitiveLog: (obj: DescribeAddressResult) => any;
|
|
548
|
+
}
|
|
549
|
+
export interface DescribeAddressesRequest {
|
|
550
|
+
|
|
551
|
+
MaxResults?: number;
|
|
552
|
+
|
|
553
|
+
NextToken?: string;
|
|
554
|
+
}
|
|
555
|
+
export declare namespace DescribeAddressesRequest {
|
|
556
|
+
|
|
557
|
+
const filterSensitiveLog: (obj: DescribeAddressesRequest) => any;
|
|
558
|
+
}
|
|
559
|
+
export interface DescribeAddressesResult {
|
|
560
|
+
|
|
561
|
+
Addresses?: Address[];
|
|
562
|
+
|
|
563
|
+
NextToken?: string;
|
|
564
|
+
}
|
|
565
|
+
export declare namespace DescribeAddressesResult {
|
|
566
|
+
|
|
567
|
+
const filterSensitiveLog: (obj: DescribeAddressesResult) => any;
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
export declare class InvalidNextTokenException extends __BaseException {
|
|
571
|
+
readonly name: "InvalidNextTokenException";
|
|
572
|
+
readonly $fault: "client";
|
|
573
|
+
Message?: string;
|
|
574
|
+
|
|
575
|
+
constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
|
|
576
|
+
}
|
|
577
|
+
export interface DescribeClusterRequest {
|
|
578
|
+
|
|
579
|
+
ClusterId: string | undefined;
|
|
580
|
+
}
|
|
581
|
+
export declare namespace DescribeClusterRequest {
|
|
582
|
+
|
|
583
|
+
const filterSensitiveLog: (obj: DescribeClusterRequest) => any;
|
|
584
|
+
}
|
|
585
|
+
export declare enum ClusterState {
|
|
586
|
+
AWAITING_QUORUM = "AwaitingQuorum",
|
|
587
|
+
CANCELLED = "Cancelled",
|
|
588
|
+
COMPLETE = "Complete",
|
|
589
|
+
IN_USE = "InUse",
|
|
590
|
+
PENDING = "Pending"
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
export interface ClusterMetadata {
|
|
594
|
+
|
|
595
|
+
ClusterId?: string;
|
|
596
|
+
|
|
597
|
+
Description?: string;
|
|
598
|
+
|
|
599
|
+
KmsKeyARN?: string;
|
|
600
|
+
|
|
601
|
+
RoleARN?: string;
|
|
602
|
+
|
|
603
|
+
ClusterState?: ClusterState | string;
|
|
604
|
+
|
|
605
|
+
JobType?: JobType | string;
|
|
606
|
+
|
|
607
|
+
SnowballType?: SnowballType | string;
|
|
608
|
+
|
|
609
|
+
CreationDate?: Date;
|
|
610
|
+
|
|
611
|
+
Resources?: JobResource;
|
|
612
|
+
|
|
613
|
+
AddressId?: string;
|
|
614
|
+
|
|
615
|
+
ShippingOption?: ShippingOption | string;
|
|
616
|
+
|
|
617
|
+
Notification?: Notification;
|
|
618
|
+
|
|
619
|
+
ForwardingAddressId?: string;
|
|
620
|
+
|
|
621
|
+
TaxDocuments?: TaxDocuments;
|
|
622
|
+
|
|
623
|
+
OnDeviceServiceConfiguration?: OnDeviceServiceConfiguration;
|
|
624
|
+
}
|
|
625
|
+
export declare namespace ClusterMetadata {
|
|
626
|
+
|
|
627
|
+
const filterSensitiveLog: (obj: ClusterMetadata) => any;
|
|
628
|
+
}
|
|
629
|
+
export interface DescribeClusterResult {
|
|
630
|
+
|
|
631
|
+
ClusterMetadata?: ClusterMetadata;
|
|
632
|
+
}
|
|
633
|
+
export declare namespace DescribeClusterResult {
|
|
634
|
+
|
|
635
|
+
const filterSensitiveLog: (obj: DescribeClusterResult) => any;
|
|
636
|
+
}
|
|
637
|
+
export interface DescribeJobRequest {
|
|
638
|
+
|
|
639
|
+
JobId: string | undefined;
|
|
640
|
+
}
|
|
641
|
+
export declare namespace DescribeJobRequest {
|
|
642
|
+
|
|
643
|
+
const filterSensitiveLog: (obj: DescribeJobRequest) => any;
|
|
644
|
+
}
|
|
645
|
+
|
|
646
|
+
export interface DataTransfer {
|
|
647
|
+
|
|
648
|
+
BytesTransferred?: number;
|
|
649
|
+
|
|
650
|
+
ObjectsTransferred?: number;
|
|
651
|
+
|
|
652
|
+
TotalBytes?: number;
|
|
653
|
+
|
|
654
|
+
TotalObjects?: number;
|
|
655
|
+
}
|
|
656
|
+
export declare namespace DataTransfer {
|
|
657
|
+
|
|
658
|
+
const filterSensitiveLog: (obj: DataTransfer) => any;
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
export interface JobLogs {
|
|
662
|
+
|
|
663
|
+
JobCompletionReportURI?: string;
|
|
664
|
+
|
|
665
|
+
JobSuccessLogURI?: string;
|
|
666
|
+
|
|
667
|
+
JobFailureLogURI?: string;
|
|
668
|
+
}
|
|
669
|
+
export declare namespace JobLogs {
|
|
670
|
+
|
|
671
|
+
const filterSensitiveLog: (obj: JobLogs) => any;
|
|
672
|
+
}
|
|
673
|
+
|
|
674
|
+
export interface Shipment {
|
|
675
|
+
|
|
676
|
+
Status?: string;
|
|
677
|
+
|
|
678
|
+
TrackingNumber?: string;
|
|
679
|
+
}
|
|
680
|
+
export declare namespace Shipment {
|
|
681
|
+
|
|
682
|
+
const filterSensitiveLog: (obj: Shipment) => any;
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
export interface ShippingDetails {
|
|
686
|
+
|
|
687
|
+
ShippingOption?: ShippingOption | string;
|
|
688
|
+
|
|
689
|
+
InboundShipment?: Shipment;
|
|
690
|
+
|
|
691
|
+
OutboundShipment?: Shipment;
|
|
692
|
+
}
|
|
693
|
+
export declare namespace ShippingDetails {
|
|
694
|
+
|
|
695
|
+
const filterSensitiveLog: (obj: ShippingDetails) => any;
|
|
696
|
+
}
|
|
697
|
+
|
|
698
|
+
export interface JobMetadata {
|
|
699
|
+
|
|
700
|
+
JobId?: string;
|
|
701
|
+
|
|
702
|
+
JobState?: JobState | string;
|
|
703
|
+
|
|
704
|
+
JobType?: JobType | string;
|
|
705
|
+
|
|
706
|
+
SnowballType?: SnowballType | string;
|
|
707
|
+
|
|
708
|
+
CreationDate?: Date;
|
|
709
|
+
|
|
710
|
+
Resources?: JobResource;
|
|
711
|
+
|
|
712
|
+
Description?: string;
|
|
713
|
+
|
|
714
|
+
KmsKeyARN?: string;
|
|
715
|
+
|
|
716
|
+
RoleARN?: string;
|
|
717
|
+
|
|
718
|
+
AddressId?: string;
|
|
719
|
+
|
|
720
|
+
ShippingDetails?: ShippingDetails;
|
|
721
|
+
|
|
722
|
+
SnowballCapacityPreference?: SnowballCapacity | string;
|
|
723
|
+
|
|
724
|
+
Notification?: Notification;
|
|
725
|
+
|
|
726
|
+
DataTransferProgress?: DataTransfer;
|
|
727
|
+
|
|
728
|
+
JobLogInfo?: JobLogs;
|
|
729
|
+
|
|
730
|
+
ClusterId?: string;
|
|
731
|
+
|
|
732
|
+
ForwardingAddressId?: string;
|
|
733
|
+
|
|
734
|
+
TaxDocuments?: TaxDocuments;
|
|
735
|
+
|
|
736
|
+
DeviceConfiguration?: DeviceConfiguration;
|
|
737
|
+
|
|
738
|
+
RemoteManagement?: RemoteManagement | string;
|
|
739
|
+
|
|
740
|
+
LongTermPricingId?: string;
|
|
741
|
+
|
|
742
|
+
OnDeviceServiceConfiguration?: OnDeviceServiceConfiguration;
|
|
743
|
+
}
|
|
744
|
+
export declare namespace JobMetadata {
|
|
745
|
+
|
|
746
|
+
const filterSensitiveLog: (obj: JobMetadata) => any;
|
|
747
|
+
}
|
|
748
|
+
export interface DescribeJobResult {
|
|
749
|
+
|
|
750
|
+
JobMetadata?: JobMetadata;
|
|
751
|
+
|
|
752
|
+
SubJobMetadata?: JobMetadata[];
|
|
753
|
+
}
|
|
754
|
+
export declare namespace DescribeJobResult {
|
|
755
|
+
|
|
756
|
+
const filterSensitiveLog: (obj: DescribeJobResult) => any;
|
|
757
|
+
}
|
|
758
|
+
export interface DescribeReturnShippingLabelRequest {
|
|
759
|
+
|
|
760
|
+
JobId: string | undefined;
|
|
761
|
+
}
|
|
762
|
+
export declare namespace DescribeReturnShippingLabelRequest {
|
|
763
|
+
|
|
764
|
+
const filterSensitiveLog: (obj: DescribeReturnShippingLabelRequest) => any;
|
|
765
|
+
}
|
|
766
|
+
export interface DescribeReturnShippingLabelResult {
|
|
767
|
+
|
|
768
|
+
Status?: ShippingLabelStatus | string;
|
|
769
|
+
|
|
770
|
+
ExpirationDate?: Date;
|
|
771
|
+
|
|
772
|
+
ReturnShippingLabelURI?: string;
|
|
773
|
+
}
|
|
774
|
+
export declare namespace DescribeReturnShippingLabelResult {
|
|
775
|
+
|
|
776
|
+
const filterSensitiveLog: (obj: DescribeReturnShippingLabelResult) => any;
|
|
777
|
+
}
|
|
778
|
+
export interface GetJobManifestRequest {
|
|
779
|
+
|
|
780
|
+
JobId: string | undefined;
|
|
781
|
+
}
|
|
782
|
+
export declare namespace GetJobManifestRequest {
|
|
783
|
+
|
|
784
|
+
const filterSensitiveLog: (obj: GetJobManifestRequest) => any;
|
|
785
|
+
}
|
|
786
|
+
export interface GetJobManifestResult {
|
|
787
|
+
|
|
788
|
+
ManifestURI?: string;
|
|
789
|
+
}
|
|
790
|
+
export declare namespace GetJobManifestResult {
|
|
791
|
+
|
|
792
|
+
const filterSensitiveLog: (obj: GetJobManifestResult) => any;
|
|
793
|
+
}
|
|
794
|
+
export interface GetJobUnlockCodeRequest {
|
|
795
|
+
|
|
796
|
+
JobId: string | undefined;
|
|
797
|
+
}
|
|
798
|
+
export declare namespace GetJobUnlockCodeRequest {
|
|
799
|
+
|
|
800
|
+
const filterSensitiveLog: (obj: GetJobUnlockCodeRequest) => any;
|
|
801
|
+
}
|
|
802
|
+
export interface GetJobUnlockCodeResult {
|
|
803
|
+
|
|
804
|
+
UnlockCode?: string;
|
|
805
|
+
}
|
|
806
|
+
export declare namespace GetJobUnlockCodeResult {
|
|
807
|
+
|
|
808
|
+
const filterSensitiveLog: (obj: GetJobUnlockCodeResult) => any;
|
|
809
|
+
}
|
|
810
|
+
export interface GetSnowballUsageRequest {
|
|
811
|
+
}
|
|
812
|
+
export declare namespace GetSnowballUsageRequest {
|
|
813
|
+
|
|
814
|
+
const filterSensitiveLog: (obj: GetSnowballUsageRequest) => any;
|
|
815
|
+
}
|
|
816
|
+
export interface GetSnowballUsageResult {
|
|
817
|
+
|
|
818
|
+
SnowballLimit?: number;
|
|
819
|
+
|
|
820
|
+
SnowballsInUse?: number;
|
|
821
|
+
}
|
|
822
|
+
export declare namespace GetSnowballUsageResult {
|
|
823
|
+
|
|
824
|
+
const filterSensitiveLog: (obj: GetSnowballUsageResult) => any;
|
|
825
|
+
}
|
|
826
|
+
export interface GetSoftwareUpdatesRequest {
|
|
827
|
+
|
|
828
|
+
JobId: string | undefined;
|
|
829
|
+
}
|
|
830
|
+
export declare namespace GetSoftwareUpdatesRequest {
|
|
831
|
+
|
|
832
|
+
const filterSensitiveLog: (obj: GetSoftwareUpdatesRequest) => any;
|
|
833
|
+
}
|
|
834
|
+
export interface GetSoftwareUpdatesResult {
|
|
835
|
+
|
|
836
|
+
UpdatesURI?: string;
|
|
837
|
+
}
|
|
838
|
+
export declare namespace GetSoftwareUpdatesResult {
|
|
839
|
+
|
|
840
|
+
const filterSensitiveLog: (obj: GetSoftwareUpdatesResult) => any;
|
|
841
|
+
}
|
|
842
|
+
export interface ListClusterJobsRequest {
|
|
843
|
+
|
|
844
|
+
ClusterId: string | undefined;
|
|
845
|
+
|
|
846
|
+
MaxResults?: number;
|
|
847
|
+
|
|
848
|
+
NextToken?: string;
|
|
849
|
+
}
|
|
850
|
+
export declare namespace ListClusterJobsRequest {
|
|
851
|
+
|
|
852
|
+
const filterSensitiveLog: (obj: ListClusterJobsRequest) => any;
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
export interface JobListEntry {
|
|
856
|
+
|
|
857
|
+
JobId?: string;
|
|
858
|
+
|
|
859
|
+
JobState?: JobState | string;
|
|
860
|
+
|
|
861
|
+
IsMaster?: boolean;
|
|
862
|
+
|
|
863
|
+
JobType?: JobType | string;
|
|
864
|
+
|
|
865
|
+
SnowballType?: SnowballType | string;
|
|
866
|
+
|
|
867
|
+
CreationDate?: Date;
|
|
868
|
+
|
|
869
|
+
Description?: string;
|
|
870
|
+
}
|
|
871
|
+
export declare namespace JobListEntry {
|
|
872
|
+
|
|
873
|
+
const filterSensitiveLog: (obj: JobListEntry) => any;
|
|
874
|
+
}
|
|
875
|
+
export interface ListClusterJobsResult {
|
|
876
|
+
|
|
877
|
+
JobListEntries?: JobListEntry[];
|
|
878
|
+
|
|
879
|
+
NextToken?: string;
|
|
880
|
+
}
|
|
881
|
+
export declare namespace ListClusterJobsResult {
|
|
882
|
+
|
|
883
|
+
const filterSensitiveLog: (obj: ListClusterJobsResult) => any;
|
|
884
|
+
}
|
|
885
|
+
export interface ListClustersRequest {
|
|
886
|
+
|
|
887
|
+
MaxResults?: number;
|
|
888
|
+
|
|
889
|
+
NextToken?: string;
|
|
890
|
+
}
|
|
891
|
+
export declare namespace ListClustersRequest {
|
|
892
|
+
|
|
893
|
+
const filterSensitiveLog: (obj: ListClustersRequest) => any;
|
|
894
|
+
}
|
|
895
|
+
|
|
896
|
+
export interface ClusterListEntry {
|
|
897
|
+
|
|
898
|
+
ClusterId?: string;
|
|
899
|
+
|
|
900
|
+
ClusterState?: ClusterState | string;
|
|
901
|
+
|
|
902
|
+
CreationDate?: Date;
|
|
903
|
+
|
|
904
|
+
Description?: string;
|
|
905
|
+
}
|
|
906
|
+
export declare namespace ClusterListEntry {
|
|
907
|
+
|
|
908
|
+
const filterSensitiveLog: (obj: ClusterListEntry) => any;
|
|
909
|
+
}
|
|
910
|
+
export interface ListClustersResult {
|
|
911
|
+
|
|
912
|
+
ClusterListEntries?: ClusterListEntry[];
|
|
913
|
+
|
|
914
|
+
NextToken?: string;
|
|
915
|
+
}
|
|
916
|
+
export declare namespace ListClustersResult {
|
|
917
|
+
|
|
918
|
+
const filterSensitiveLog: (obj: ListClustersResult) => any;
|
|
919
|
+
}
|
|
920
|
+
export interface ListCompatibleImagesRequest {
|
|
921
|
+
|
|
922
|
+
MaxResults?: number;
|
|
923
|
+
|
|
924
|
+
NextToken?: string;
|
|
925
|
+
}
|
|
926
|
+
export declare namespace ListCompatibleImagesRequest {
|
|
927
|
+
|
|
928
|
+
const filterSensitiveLog: (obj: ListCompatibleImagesRequest) => any;
|
|
929
|
+
}
|
|
930
|
+
|
|
931
|
+
export interface CompatibleImage {
|
|
932
|
+
|
|
933
|
+
AmiId?: string;
|
|
934
|
+
|
|
935
|
+
Name?: string;
|
|
936
|
+
}
|
|
937
|
+
export declare namespace CompatibleImage {
|
|
938
|
+
|
|
939
|
+
const filterSensitiveLog: (obj: CompatibleImage) => any;
|
|
940
|
+
}
|
|
941
|
+
export interface ListCompatibleImagesResult {
|
|
942
|
+
|
|
943
|
+
CompatibleImages?: CompatibleImage[];
|
|
944
|
+
|
|
945
|
+
NextToken?: string;
|
|
946
|
+
}
|
|
947
|
+
export declare namespace ListCompatibleImagesResult {
|
|
948
|
+
|
|
949
|
+
const filterSensitiveLog: (obj: ListCompatibleImagesResult) => any;
|
|
950
|
+
}
|
|
951
|
+
export interface ListJobsRequest {
|
|
952
|
+
|
|
953
|
+
MaxResults?: number;
|
|
954
|
+
|
|
955
|
+
NextToken?: string;
|
|
956
|
+
}
|
|
957
|
+
export declare namespace ListJobsRequest {
|
|
958
|
+
|
|
959
|
+
const filterSensitiveLog: (obj: ListJobsRequest) => any;
|
|
960
|
+
}
|
|
961
|
+
export interface ListJobsResult {
|
|
962
|
+
|
|
963
|
+
JobListEntries?: JobListEntry[];
|
|
964
|
+
|
|
965
|
+
NextToken?: string;
|
|
966
|
+
}
|
|
967
|
+
export declare namespace ListJobsResult {
|
|
968
|
+
|
|
969
|
+
const filterSensitiveLog: (obj: ListJobsResult) => any;
|
|
970
|
+
}
|
|
971
|
+
export interface ListLongTermPricingRequest {
|
|
972
|
+
|
|
973
|
+
MaxResults?: number;
|
|
974
|
+
|
|
975
|
+
NextToken?: string;
|
|
976
|
+
}
|
|
977
|
+
export declare namespace ListLongTermPricingRequest {
|
|
978
|
+
|
|
979
|
+
const filterSensitiveLog: (obj: ListLongTermPricingRequest) => any;
|
|
980
|
+
}
|
|
981
|
+
|
|
982
|
+
export interface LongTermPricingListEntry {
|
|
983
|
+
|
|
984
|
+
LongTermPricingId?: string;
|
|
985
|
+
|
|
986
|
+
LongTermPricingEndDate?: Date;
|
|
987
|
+
|
|
988
|
+
LongTermPricingStartDate?: Date;
|
|
989
|
+
|
|
990
|
+
LongTermPricingType?: LongTermPricingType | string;
|
|
991
|
+
|
|
992
|
+
CurrentActiveJob?: string;
|
|
993
|
+
|
|
994
|
+
ReplacementJob?: string;
|
|
995
|
+
|
|
996
|
+
IsLongTermPricingAutoRenew?: boolean;
|
|
997
|
+
|
|
998
|
+
LongTermPricingStatus?: string;
|
|
999
|
+
|
|
1000
|
+
SnowballType?: SnowballType | string;
|
|
1001
|
+
|
|
1002
|
+
JobIds?: string[];
|
|
1003
|
+
}
|
|
1004
|
+
export declare namespace LongTermPricingListEntry {
|
|
1005
|
+
|
|
1006
|
+
const filterSensitiveLog: (obj: LongTermPricingListEntry) => any;
|
|
1007
|
+
}
|
|
1008
|
+
export interface ListLongTermPricingResult {
|
|
1009
|
+
|
|
1010
|
+
LongTermPricingEntries?: LongTermPricingListEntry[];
|
|
1011
|
+
|
|
1012
|
+
NextToken?: string;
|
|
1013
|
+
}
|
|
1014
|
+
export declare namespace ListLongTermPricingResult {
|
|
1015
|
+
|
|
1016
|
+
const filterSensitiveLog: (obj: ListLongTermPricingResult) => any;
|
|
1017
|
+
}
|
|
1018
|
+
export interface UpdateClusterRequest {
|
|
1019
|
+
|
|
1020
|
+
ClusterId: string | undefined;
|
|
1021
|
+
|
|
1022
|
+
RoleARN?: string;
|
|
1023
|
+
|
|
1024
|
+
Description?: string;
|
|
1025
|
+
|
|
1026
|
+
Resources?: JobResource;
|
|
1027
|
+
|
|
1028
|
+
OnDeviceServiceConfiguration?: OnDeviceServiceConfiguration;
|
|
1029
|
+
|
|
1030
|
+
AddressId?: string;
|
|
1031
|
+
|
|
1032
|
+
ShippingOption?: ShippingOption | string;
|
|
1033
|
+
|
|
1034
|
+
Notification?: Notification;
|
|
1035
|
+
|
|
1036
|
+
ForwardingAddressId?: string;
|
|
1037
|
+
}
|
|
1038
|
+
export declare namespace UpdateClusterRequest {
|
|
1039
|
+
|
|
1040
|
+
const filterSensitiveLog: (obj: UpdateClusterRequest) => any;
|
|
1041
|
+
}
|
|
1042
|
+
export interface UpdateClusterResult {
|
|
1043
|
+
}
|
|
1044
|
+
export declare namespace UpdateClusterResult {
|
|
1045
|
+
|
|
1046
|
+
const filterSensitiveLog: (obj: UpdateClusterResult) => any;
|
|
1047
|
+
}
|
|
1048
|
+
export interface UpdateJobRequest {
|
|
1049
|
+
|
|
1050
|
+
JobId: string | undefined;
|
|
1051
|
+
|
|
1052
|
+
RoleARN?: string;
|
|
1053
|
+
|
|
1054
|
+
Notification?: Notification;
|
|
1055
|
+
|
|
1056
|
+
Resources?: JobResource;
|
|
1057
|
+
|
|
1058
|
+
OnDeviceServiceConfiguration?: OnDeviceServiceConfiguration;
|
|
1059
|
+
|
|
1060
|
+
AddressId?: string;
|
|
1061
|
+
|
|
1062
|
+
ShippingOption?: ShippingOption | string;
|
|
1063
|
+
|
|
1064
|
+
Description?: string;
|
|
1065
|
+
|
|
1066
|
+
SnowballCapacityPreference?: SnowballCapacity | string;
|
|
1067
|
+
|
|
1068
|
+
ForwardingAddressId?: string;
|
|
1069
|
+
}
|
|
1070
|
+
export declare namespace UpdateJobRequest {
|
|
1071
|
+
|
|
1072
|
+
const filterSensitiveLog: (obj: UpdateJobRequest) => any;
|
|
1073
|
+
}
|
|
1074
|
+
export interface UpdateJobResult {
|
|
1075
|
+
}
|
|
1076
|
+
export declare namespace UpdateJobResult {
|
|
1077
|
+
|
|
1078
|
+
const filterSensitiveLog: (obj: UpdateJobResult) => any;
|
|
1079
|
+
}
|
|
1080
|
+
export declare enum ShipmentState {
|
|
1081
|
+
RECEIVED = "RECEIVED",
|
|
1082
|
+
RETURNED = "RETURNED"
|
|
1083
|
+
}
|
|
1084
|
+
export interface UpdateJobShipmentStateRequest {
|
|
1085
|
+
|
|
1086
|
+
JobId: string | undefined;
|
|
1087
|
+
|
|
1088
|
+
ShipmentState: ShipmentState | string | undefined;
|
|
1089
|
+
}
|
|
1090
|
+
export declare namespace UpdateJobShipmentStateRequest {
|
|
1091
|
+
|
|
1092
|
+
const filterSensitiveLog: (obj: UpdateJobShipmentStateRequest) => any;
|
|
1093
|
+
}
|
|
1094
|
+
export interface UpdateJobShipmentStateResult {
|
|
1095
|
+
}
|
|
1096
|
+
export declare namespace UpdateJobShipmentStateResult {
|
|
1097
|
+
|
|
1098
|
+
const filterSensitiveLog: (obj: UpdateJobShipmentStateResult) => any;
|
|
1099
|
+
}
|
|
1100
|
+
export interface UpdateLongTermPricingRequest {
|
|
1101
|
+
|
|
1102
|
+
LongTermPricingId: string | undefined;
|
|
1103
|
+
|
|
1104
|
+
ReplacementJob?: string;
|
|
1105
|
+
|
|
1106
|
+
IsLongTermPricingAutoRenew?: boolean;
|
|
1107
|
+
}
|
|
1108
|
+
export declare namespace UpdateLongTermPricingRequest {
|
|
1109
|
+
|
|
1110
|
+
const filterSensitiveLog: (obj: UpdateLongTermPricingRequest) => any;
|
|
1111
|
+
}
|
|
1112
|
+
export interface UpdateLongTermPricingResult {
|
|
1113
|
+
}
|
|
1114
|
+
export declare namespace UpdateLongTermPricingResult {
|
|
1115
|
+
|
|
1116
|
+
const filterSensitiveLog: (obj: UpdateLongTermPricingResult) => any;
|
|
1117
|
+
}
|