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