@aws-sdk/client-snowball 3.169.0 → 3.171.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/Snowball.d.ts +429 -130
  3. package/dist-types/ts3.4/SnowballClient.d.ts +254 -98
  4. package/dist-types/ts3.4/commands/CancelClusterCommand.d.ts +32 -17
  5. package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +32 -17
  6. package/dist-types/ts3.4/commands/CreateAddressCommand.d.ts +32 -17
  7. package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +32 -17
  8. package/dist-types/ts3.4/commands/CreateJobCommand.d.ts +32 -17
  9. package/dist-types/ts3.4/commands/CreateLongTermPricingCommand.d.ts +39 -17
  10. package/dist-types/ts3.4/commands/CreateReturnShippingLabelCommand.d.ts +39 -17
  11. package/dist-types/ts3.4/commands/DescribeAddressCommand.d.ts +35 -17
  12. package/dist-types/ts3.4/commands/DescribeAddressesCommand.d.ts +36 -17
  13. package/dist-types/ts3.4/commands/DescribeClusterCommand.d.ts +35 -17
  14. package/dist-types/ts3.4/commands/DescribeJobCommand.d.ts +32 -17
  15. package/dist-types/ts3.4/commands/DescribeReturnShippingLabelCommand.d.ts +39 -17
  16. package/dist-types/ts3.4/commands/GetJobManifestCommand.d.ts +35 -17
  17. package/dist-types/ts3.4/commands/GetJobUnlockCodeCommand.d.ts +35 -17
  18. package/dist-types/ts3.4/commands/GetSnowballUsageCommand.d.ts +35 -17
  19. package/dist-types/ts3.4/commands/GetSoftwareUpdatesCommand.d.ts +36 -17
  20. package/dist-types/ts3.4/commands/ListClusterJobsCommand.d.ts +35 -17
  21. package/dist-types/ts3.4/commands/ListClustersCommand.d.ts +32 -17
  22. package/dist-types/ts3.4/commands/ListCompatibleImagesCommand.d.ts +39 -17
  23. package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +32 -17
  24. package/dist-types/ts3.4/commands/ListLongTermPricingCommand.d.ts +36 -17
  25. package/dist-types/ts3.4/commands/UpdateClusterCommand.d.ts +32 -17
  26. package/dist-types/ts3.4/commands/UpdateJobCommand.d.ts +32 -17
  27. package/dist-types/ts3.4/commands/UpdateJobShipmentStateCommand.d.ts +39 -17
  28. package/dist-types/ts3.4/commands/UpdateLongTermPricingCommand.d.ts +39 -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 +7 -6
  33. package/dist-types/ts3.4/models/index.d.ts +1 -1
  34. package/dist-types/ts3.4/models/models_0.d.ts +760 -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 +65 -38
  41. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  42. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  43. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  44. package/package.json +34 -34
@@ -1,963 +1,760 @@
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
+ export interface Address {
4
+ AddressId?: string;
5
+ Name?: string;
6
+ Company?: string;
7
+ Street1?: string;
8
+ Street2?: string;
9
+ Street3?: string;
10
+ City?: string;
11
+ StateOrProvince?: string;
12
+ PrefectureOrDistrict?: string;
13
+ Landmark?: string;
14
+ Country?: string;
15
+ PostalCode?: string;
16
+ PhoneNumber?: string;
17
+ IsRestricted?: boolean;
18
+ }
19
+ export interface CancelClusterRequest {
20
+ ClusterId: string | undefined;
21
+ }
22
+ export interface CancelClusterResult {}
23
+ export declare class InvalidJobStateException extends __BaseException {
24
+ readonly name: "InvalidJobStateException";
25
+ readonly $fault: "client";
26
+ Message?: string;
27
+ constructor(
28
+ opts: __ExceptionOptionType<InvalidJobStateException, __BaseException>
29
+ );
30
+ }
31
+ export declare class InvalidResourceException extends __BaseException {
32
+ readonly name: "InvalidResourceException";
33
+ readonly $fault: "client";
34
+ Message?: string;
35
+ ResourceType?: string;
36
+ constructor(
37
+ opts: __ExceptionOptionType<InvalidResourceException, __BaseException>
38
+ );
39
+ }
40
+ export declare class KMSRequestFailedException extends __BaseException {
41
+ readonly name: "KMSRequestFailedException";
42
+ readonly $fault: "client";
43
+ Message?: string;
44
+ constructor(
45
+ opts: __ExceptionOptionType<KMSRequestFailedException, __BaseException>
46
+ );
47
+ }
48
+ export interface CancelJobRequest {
49
+ JobId: string | undefined;
50
+ }
51
+ export interface CancelJobResult {}
52
+ export interface CreateAddressRequest {
53
+ Address: Address | undefined;
54
+ }
55
+ export interface CreateAddressResult {
56
+ AddressId?: string;
57
+ }
58
+ export declare class InvalidAddressException extends __BaseException {
59
+ readonly name: "InvalidAddressException";
60
+ readonly $fault: "client";
61
+ Message?: string;
62
+ constructor(
63
+ opts: __ExceptionOptionType<InvalidAddressException, __BaseException>
64
+ );
65
+ }
66
+ export declare class UnsupportedAddressException extends __BaseException {
67
+ readonly name: "UnsupportedAddressException";
68
+ readonly $fault: "client";
69
+ Message?: string;
70
+ constructor(
71
+ opts: __ExceptionOptionType<UnsupportedAddressException, __BaseException>
72
+ );
73
+ }
74
+ export declare enum JobType {
75
+ EXPORT = "EXPORT",
76
+ IMPORT = "IMPORT",
77
+ LOCAL_USE = "LOCAL_USE",
78
+ }
79
+ export declare enum JobState {
80
+ CANCELLED = "Cancelled",
81
+ COMPLETE = "Complete",
82
+ IN_PROGRESS = "InProgress",
83
+ IN_TRANSIT_TO_AWS = "InTransitToAWS",
84
+ IN_TRANSIT_TO_CUSTOMER = "InTransitToCustomer",
85
+ LISTING = "Listing",
86
+ NEW = "New",
87
+ PENDING = "Pending",
88
+ PREPARING_APPLIANCE = "PreparingAppliance",
89
+ PREPARING_SHIPMENT = "PreparingShipment",
90
+ WITH_AWS = "WithAWS",
91
+ WITH_AWS_SORTING_FACILITY = "WithAWSSortingFacility",
92
+ WITH_CUSTOMER = "WithCustomer",
93
+ }
94
+ export interface Notification {
95
+ SnsTopicARN?: string;
96
+ JobStatesToNotify?: (JobState | string)[];
97
+ NotifyAll?: boolean;
98
+ }
99
+ export declare enum StorageUnit {
100
+ TB = "TB",
101
+ }
102
+ export interface NFSOnDeviceServiceConfiguration {
103
+ StorageLimit?: number;
104
+ StorageUnit?: StorageUnit | string;
105
+ }
106
+ export interface TGWOnDeviceServiceConfiguration {
107
+ StorageLimit?: number;
108
+ StorageUnit?: StorageUnit | string;
109
+ }
110
+ export interface OnDeviceServiceConfiguration {
111
+ NFSOnDeviceService?: NFSOnDeviceServiceConfiguration;
112
+ TGWOnDeviceService?: TGWOnDeviceServiceConfiguration;
113
+ }
114
+ export declare enum RemoteManagement {
115
+ INSTALLED_AUTOSTART = "INSTALLED_AUTOSTART",
116
+ INSTALLED_ONLY = "INSTALLED_ONLY",
117
+ }
118
+ export interface Ec2AmiResource {
119
+ AmiId: string | undefined;
120
+ SnowballAmiId?: string;
121
+ }
122
+ export interface EventTriggerDefinition {
123
+ EventResourceARN?: string;
124
+ }
125
+ export interface LambdaResource {
126
+ LambdaArn?: string;
127
+ EventTriggers?: EventTriggerDefinition[];
128
+ }
129
+ export interface KeyRange {
130
+ BeginMarker?: string;
131
+ EndMarker?: string;
132
+ }
133
+ export declare enum DeviceServiceName {
134
+ NFS_ON_DEVICE_SERVICE = "NFS_ON_DEVICE_SERVICE",
135
+ S3_ON_DEVICE_SERVICE = "S3_ON_DEVICE_SERVICE",
136
+ }
137
+ export declare enum TransferOption {
138
+ EXPORT = "EXPORT",
139
+ IMPORT = "IMPORT",
140
+ LOCAL_USE = "LOCAL_USE",
141
+ }
142
+ export interface TargetOnDeviceService {
143
+ ServiceName?: DeviceServiceName | string;
144
+ TransferOption?: TransferOption | string;
145
+ }
146
+ export interface S3Resource {
147
+ BucketArn?: string;
148
+ KeyRange?: KeyRange;
149
+ TargetOnDeviceServices?: TargetOnDeviceService[];
150
+ }
151
+ export interface JobResource {
152
+ S3Resources?: S3Resource[];
153
+ LambdaResources?: LambdaResource[];
154
+ Ec2AmiResources?: Ec2AmiResource[];
155
+ }
156
+ export declare enum ShippingOption {
157
+ EXPRESS = "EXPRESS",
158
+ NEXT_DAY = "NEXT_DAY",
159
+ SECOND_DAY = "SECOND_DAY",
160
+ STANDARD = "STANDARD",
161
+ }
162
+ export declare enum SnowballType {
163
+ EDGE = "EDGE",
164
+ EDGE_C = "EDGE_C",
165
+ EDGE_CG = "EDGE_CG",
166
+ EDGE_S = "EDGE_S",
167
+ SNC1_HDD = "SNC1_HDD",
168
+ SNC1_SSD = "SNC1_SSD",
169
+ STANDARD = "STANDARD",
170
+ }
171
+ export interface INDTaxDocuments {
172
+ GSTIN?: string;
173
+ }
174
+ export interface TaxDocuments {
175
+ IND?: INDTaxDocuments;
176
+ }
177
+ export interface CreateClusterRequest {
178
+ JobType: JobType | string | undefined;
179
+ Resources: JobResource | undefined;
180
+ OnDeviceServiceConfiguration?: OnDeviceServiceConfiguration;
181
+ Description?: string;
182
+ AddressId: string | undefined;
183
+ KmsKeyARN?: string;
184
+ RoleARN: string | undefined;
185
+ SnowballType: SnowballType | string | undefined;
186
+ ShippingOption: ShippingOption | string | undefined;
187
+ Notification?: Notification;
188
+ ForwardingAddressId?: string;
189
+ TaxDocuments?: TaxDocuments;
190
+ RemoteManagement?: RemoteManagement | string;
191
+ }
192
+ export interface CreateClusterResult {
193
+ ClusterId?: string;
194
+ }
195
+ export declare class Ec2RequestFailedException extends __BaseException {
196
+ readonly name: "Ec2RequestFailedException";
197
+ readonly $fault: "client";
198
+ Message?: string;
199
+ constructor(
200
+ opts: __ExceptionOptionType<Ec2RequestFailedException, __BaseException>
201
+ );
202
+ }
203
+ export declare class InvalidInputCombinationException extends __BaseException {
204
+ readonly name: "InvalidInputCombinationException";
205
+ readonly $fault: "client";
206
+ Message?: string;
207
+ constructor(
208
+ opts: __ExceptionOptionType<
209
+ InvalidInputCombinationException,
210
+ __BaseException
211
+ >
212
+ );
213
+ }
214
+ export declare class ClusterLimitExceededException extends __BaseException {
215
+ readonly name: "ClusterLimitExceededException";
216
+ readonly $fault: "client";
217
+ Message?: string;
218
+ constructor(
219
+ opts: __ExceptionOptionType<ClusterLimitExceededException, __BaseException>
220
+ );
221
+ }
222
+ export interface WirelessConnection {
223
+ IsWifiEnabled?: boolean;
224
+ }
225
+ export interface SnowconeDeviceConfiguration {
226
+ WirelessConnection?: WirelessConnection;
227
+ }
228
+ export interface DeviceConfiguration {
229
+ SnowconeDeviceConfiguration?: SnowconeDeviceConfiguration;
230
+ }
231
+ export declare enum SnowballCapacity {
232
+ NO_PREFERENCE = "NoPreference",
233
+ T100 = "T100",
234
+ T14 = "T14",
235
+ T42 = "T42",
236
+ T50 = "T50",
237
+ T8 = "T8",
238
+ T80 = "T80",
239
+ T98 = "T98",
240
+ }
241
+ export interface CreateJobRequest {
242
+ JobType?: JobType | string;
243
+ Resources?: JobResource;
244
+ OnDeviceServiceConfiguration?: OnDeviceServiceConfiguration;
245
+ Description?: string;
246
+ AddressId?: string;
247
+ KmsKeyARN?: string;
248
+ RoleARN?: string;
249
+ SnowballCapacityPreference?: SnowballCapacity | string;
250
+ ShippingOption?: ShippingOption | string;
251
+ Notification?: Notification;
252
+ ClusterId?: string;
253
+ SnowballType?: SnowballType | string;
254
+ ForwardingAddressId?: string;
255
+ TaxDocuments?: TaxDocuments;
256
+ DeviceConfiguration?: DeviceConfiguration;
257
+ RemoteManagement?: RemoteManagement | string;
258
+ LongTermPricingId?: string;
259
+ }
260
+ export interface CreateJobResult {
261
+ JobId?: string;
262
+ }
263
+ export declare enum LongTermPricingType {
264
+ ONE_YEAR = "OneYear",
265
+ THREE_YEAR = "ThreeYear",
266
+ }
267
+ export interface CreateLongTermPricingRequest {
268
+ LongTermPricingType: LongTermPricingType | string | undefined;
269
+ IsLongTermPricingAutoRenew?: boolean;
270
+ SnowballType?: SnowballType | string;
271
+ }
272
+ export interface CreateLongTermPricingResult {
273
+ LongTermPricingId?: string;
274
+ }
275
+ export declare class ConflictException extends __BaseException {
276
+ readonly name: "ConflictException";
277
+ readonly $fault: "client";
278
+ ConflictResource?: string;
279
+ Message?: string;
280
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
281
+ }
282
+ export interface CreateReturnShippingLabelRequest {
283
+ JobId: string | undefined;
284
+ ShippingOption?: ShippingOption | string;
285
+ }
286
+ export declare enum ShippingLabelStatus {
287
+ FAILED = "Failed",
288
+ IN_PROGRESS = "InProgress",
289
+ SUCCEEDED = "Succeeded",
290
+ TIMED_OUT = "TimedOut",
291
+ }
292
+ export interface CreateReturnShippingLabelResult {
293
+ Status?: ShippingLabelStatus | string;
294
+ }
295
+ export declare class ReturnShippingLabelAlreadyExistsException extends __BaseException {
296
+ readonly name: "ReturnShippingLabelAlreadyExistsException";
297
+ readonly $fault: "client";
298
+ Message?: string;
299
+ constructor(
300
+ opts: __ExceptionOptionType<
301
+ ReturnShippingLabelAlreadyExistsException,
302
+ __BaseException
303
+ >
304
+ );
305
+ }
306
+ export interface DescribeAddressRequest {
307
+ AddressId: string | undefined;
308
+ }
309
+ export interface DescribeAddressResult {
310
+ Address?: Address;
311
+ }
312
+ export interface DescribeAddressesRequest {
313
+ MaxResults?: number;
314
+ NextToken?: string;
315
+ }
316
+ export interface DescribeAddressesResult {
317
+ Addresses?: Address[];
318
+ NextToken?: string;
319
+ }
320
+ export declare class InvalidNextTokenException extends __BaseException {
321
+ readonly name: "InvalidNextTokenException";
322
+ readonly $fault: "client";
323
+ Message?: string;
324
+ constructor(
325
+ opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>
326
+ );
327
+ }
328
+ export interface DescribeClusterRequest {
329
+ ClusterId: string | undefined;
330
+ }
331
+ export declare enum ClusterState {
332
+ AWAITING_QUORUM = "AwaitingQuorum",
333
+ CANCELLED = "Cancelled",
334
+ COMPLETE = "Complete",
335
+ IN_USE = "InUse",
336
+ PENDING = "Pending",
337
+ }
338
+ export interface ClusterMetadata {
339
+ ClusterId?: string;
340
+ Description?: string;
341
+ KmsKeyARN?: string;
342
+ RoleARN?: string;
343
+ ClusterState?: ClusterState | string;
344
+ JobType?: JobType | string;
345
+ SnowballType?: SnowballType | string;
346
+ CreationDate?: Date;
347
+ Resources?: JobResource;
348
+ AddressId?: string;
349
+ ShippingOption?: ShippingOption | string;
350
+ Notification?: Notification;
351
+ ForwardingAddressId?: string;
352
+ TaxDocuments?: TaxDocuments;
353
+ OnDeviceServiceConfiguration?: OnDeviceServiceConfiguration;
354
+ }
355
+ export interface DescribeClusterResult {
356
+ ClusterMetadata?: ClusterMetadata;
357
+ }
358
+ export interface DescribeJobRequest {
359
+ JobId: string | undefined;
360
+ }
361
+ export interface DataTransfer {
362
+ BytesTransferred?: number;
363
+ ObjectsTransferred?: number;
364
+ TotalBytes?: number;
365
+ TotalObjects?: number;
366
+ }
367
+ export interface JobLogs {
368
+ JobCompletionReportURI?: string;
369
+ JobSuccessLogURI?: string;
370
+ JobFailureLogURI?: string;
371
+ }
372
+ export interface Shipment {
373
+ Status?: string;
374
+ TrackingNumber?: string;
375
+ }
376
+ export interface ShippingDetails {
377
+ ShippingOption?: ShippingOption | string;
378
+ InboundShipment?: Shipment;
379
+ OutboundShipment?: Shipment;
380
+ }
381
+ export interface JobMetadata {
382
+ JobId?: string;
383
+ JobState?: JobState | string;
384
+ JobType?: JobType | string;
385
+ SnowballType?: SnowballType | string;
386
+ CreationDate?: Date;
387
+ Resources?: JobResource;
388
+ Description?: string;
389
+ KmsKeyARN?: string;
390
+ RoleARN?: string;
391
+ AddressId?: string;
392
+ ShippingDetails?: ShippingDetails;
393
+ SnowballCapacityPreference?: SnowballCapacity | string;
394
+ Notification?: Notification;
395
+ DataTransferProgress?: DataTransfer;
396
+ JobLogInfo?: JobLogs;
397
+ ClusterId?: string;
398
+ ForwardingAddressId?: string;
399
+ TaxDocuments?: TaxDocuments;
400
+ DeviceConfiguration?: DeviceConfiguration;
401
+ RemoteManagement?: RemoteManagement | string;
402
+ LongTermPricingId?: string;
403
+ OnDeviceServiceConfiguration?: OnDeviceServiceConfiguration;
404
+ }
405
+ export interface DescribeJobResult {
406
+ JobMetadata?: JobMetadata;
407
+ SubJobMetadata?: JobMetadata[];
408
+ }
409
+ export interface DescribeReturnShippingLabelRequest {
410
+ JobId: string | undefined;
411
+ }
412
+ export interface DescribeReturnShippingLabelResult {
413
+ Status?: ShippingLabelStatus | string;
414
+ ExpirationDate?: Date;
415
+ ReturnShippingLabelURI?: string;
416
+ }
417
+ export interface GetJobManifestRequest {
418
+ JobId: string | undefined;
419
+ }
420
+ export interface GetJobManifestResult {
421
+ ManifestURI?: string;
422
+ }
423
+ export interface GetJobUnlockCodeRequest {
424
+ JobId: string | undefined;
425
+ }
426
+ export interface GetJobUnlockCodeResult {
427
+ UnlockCode?: string;
428
+ }
429
+ export interface GetSnowballUsageRequest {}
430
+ export interface GetSnowballUsageResult {
431
+ SnowballLimit?: number;
432
+ SnowballsInUse?: number;
433
+ }
434
+ export interface GetSoftwareUpdatesRequest {
435
+ JobId: string | undefined;
436
+ }
437
+ export interface GetSoftwareUpdatesResult {
438
+ UpdatesURI?: string;
439
+ }
440
+ export interface ListClusterJobsRequest {
441
+ ClusterId: string | undefined;
442
+ MaxResults?: number;
443
+ NextToken?: string;
444
+ }
445
+ export interface JobListEntry {
446
+ JobId?: string;
447
+ JobState?: JobState | string;
448
+ IsMaster?: boolean;
449
+ JobType?: JobType | string;
450
+ SnowballType?: SnowballType | string;
451
+ CreationDate?: Date;
452
+ Description?: string;
453
+ }
454
+ export interface ListClusterJobsResult {
455
+ JobListEntries?: JobListEntry[];
456
+ NextToken?: string;
457
+ }
458
+ export interface ListClustersRequest {
459
+ MaxResults?: number;
460
+ NextToken?: string;
461
+ }
462
+ export interface ClusterListEntry {
463
+ ClusterId?: string;
464
+ ClusterState?: ClusterState | string;
465
+ CreationDate?: Date;
466
+ Description?: string;
467
+ }
468
+ export interface ListClustersResult {
469
+ ClusterListEntries?: ClusterListEntry[];
470
+ NextToken?: string;
471
+ }
472
+ export interface ListCompatibleImagesRequest {
473
+ MaxResults?: number;
474
+ NextToken?: string;
475
+ }
476
+ export interface CompatibleImage {
477
+ AmiId?: string;
478
+ Name?: string;
479
+ }
480
+ export interface ListCompatibleImagesResult {
481
+ CompatibleImages?: CompatibleImage[];
482
+ NextToken?: string;
483
+ }
484
+ export interface ListJobsRequest {
485
+ MaxResults?: number;
486
+ NextToken?: string;
487
+ }
488
+ export interface ListJobsResult {
489
+ JobListEntries?: JobListEntry[];
490
+ NextToken?: string;
491
+ }
492
+ export interface ListLongTermPricingRequest {
493
+ MaxResults?: number;
494
+ NextToken?: string;
495
+ }
496
+ export interface LongTermPricingListEntry {
497
+ LongTermPricingId?: string;
498
+ LongTermPricingEndDate?: Date;
499
+ LongTermPricingStartDate?: Date;
500
+ LongTermPricingType?: LongTermPricingType | string;
501
+ CurrentActiveJob?: string;
502
+ ReplacementJob?: string;
503
+ IsLongTermPricingAutoRenew?: boolean;
504
+ LongTermPricingStatus?: string;
505
+ SnowballType?: SnowballType | string;
506
+ JobIds?: string[];
507
+ }
508
+ export interface ListLongTermPricingResult {
509
+ LongTermPricingEntries?: LongTermPricingListEntry[];
510
+ NextToken?: string;
511
+ }
512
+ export interface UpdateClusterRequest {
513
+ ClusterId: string | undefined;
514
+ RoleARN?: string;
515
+ Description?: string;
516
+ Resources?: JobResource;
517
+ OnDeviceServiceConfiguration?: OnDeviceServiceConfiguration;
518
+ AddressId?: string;
519
+ ShippingOption?: ShippingOption | string;
520
+ Notification?: Notification;
521
+ ForwardingAddressId?: string;
522
+ }
523
+ export interface UpdateClusterResult {}
524
+ export interface UpdateJobRequest {
525
+ JobId: string | undefined;
526
+ RoleARN?: string;
527
+ Notification?: Notification;
528
+ Resources?: JobResource;
529
+ OnDeviceServiceConfiguration?: OnDeviceServiceConfiguration;
530
+ AddressId?: string;
531
+ ShippingOption?: ShippingOption | string;
532
+ Description?: string;
533
+ SnowballCapacityPreference?: SnowballCapacity | string;
534
+ ForwardingAddressId?: string;
535
+ }
536
+ export interface UpdateJobResult {}
537
+ export declare enum ShipmentState {
538
+ RECEIVED = "RECEIVED",
539
+ RETURNED = "RETURNED",
540
+ }
541
+ export interface UpdateJobShipmentStateRequest {
542
+ JobId: string | undefined;
543
+ ShipmentState: ShipmentState | string | undefined;
544
+ }
545
+ export interface UpdateJobShipmentStateResult {}
546
+ export interface UpdateLongTermPricingRequest {
547
+ LongTermPricingId: string | undefined;
548
+ ReplacementJob?: string;
549
+ IsLongTermPricingAutoRenew?: boolean;
550
+ }
551
+ export interface UpdateLongTermPricingResult {}
552
+ export declare const AddressFilterSensitiveLog: (obj: Address) => any;
553
+ export declare const CancelClusterRequestFilterSensitiveLog: (
554
+ obj: CancelClusterRequest
555
+ ) => any;
556
+ export declare const CancelClusterResultFilterSensitiveLog: (
557
+ obj: CancelClusterResult
558
+ ) => any;
559
+ export declare const CancelJobRequestFilterSensitiveLog: (
560
+ obj: CancelJobRequest
561
+ ) => any;
562
+ export declare const CancelJobResultFilterSensitiveLog: (
563
+ obj: CancelJobResult
564
+ ) => any;
565
+ export declare const CreateAddressRequestFilterSensitiveLog: (
566
+ obj: CreateAddressRequest
567
+ ) => any;
568
+ export declare const CreateAddressResultFilterSensitiveLog: (
569
+ obj: CreateAddressResult
570
+ ) => any;
571
+ export declare const NotificationFilterSensitiveLog: (obj: Notification) => any;
572
+ export declare const NFSOnDeviceServiceConfigurationFilterSensitiveLog: (
573
+ obj: NFSOnDeviceServiceConfiguration
574
+ ) => any;
575
+ export declare const TGWOnDeviceServiceConfigurationFilterSensitiveLog: (
576
+ obj: TGWOnDeviceServiceConfiguration
577
+ ) => any;
578
+ export declare const OnDeviceServiceConfigurationFilterSensitiveLog: (
579
+ obj: OnDeviceServiceConfiguration
580
+ ) => any;
581
+ export declare const Ec2AmiResourceFilterSensitiveLog: (
582
+ obj: Ec2AmiResource
583
+ ) => any;
584
+ export declare const EventTriggerDefinitionFilterSensitiveLog: (
585
+ obj: EventTriggerDefinition
586
+ ) => any;
587
+ export declare const LambdaResourceFilterSensitiveLog: (
588
+ obj: LambdaResource
589
+ ) => any;
590
+ export declare const KeyRangeFilterSensitiveLog: (obj: KeyRange) => any;
591
+ export declare const TargetOnDeviceServiceFilterSensitiveLog: (
592
+ obj: TargetOnDeviceService
593
+ ) => any;
594
+ export declare const S3ResourceFilterSensitiveLog: (obj: S3Resource) => any;
595
+ export declare const JobResourceFilterSensitiveLog: (obj: JobResource) => any;
596
+ export declare const INDTaxDocumentsFilterSensitiveLog: (
597
+ obj: INDTaxDocuments
598
+ ) => any;
599
+ export declare const TaxDocumentsFilterSensitiveLog: (obj: TaxDocuments) => any;
600
+ export declare const CreateClusterRequestFilterSensitiveLog: (
601
+ obj: CreateClusterRequest
602
+ ) => any;
603
+ export declare const CreateClusterResultFilterSensitiveLog: (
604
+ obj: CreateClusterResult
605
+ ) => any;
606
+ export declare const WirelessConnectionFilterSensitiveLog: (
607
+ obj: WirelessConnection
608
+ ) => any;
609
+ export declare const SnowconeDeviceConfigurationFilterSensitiveLog: (
610
+ obj: SnowconeDeviceConfiguration
611
+ ) => any;
612
+ export declare const DeviceConfigurationFilterSensitiveLog: (
613
+ obj: DeviceConfiguration
614
+ ) => any;
615
+ export declare const CreateJobRequestFilterSensitiveLog: (
616
+ obj: CreateJobRequest
617
+ ) => any;
618
+ export declare const CreateJobResultFilterSensitiveLog: (
619
+ obj: CreateJobResult
620
+ ) => any;
621
+ export declare const CreateLongTermPricingRequestFilterSensitiveLog: (
622
+ obj: CreateLongTermPricingRequest
623
+ ) => any;
624
+ export declare const CreateLongTermPricingResultFilterSensitiveLog: (
625
+ obj: CreateLongTermPricingResult
626
+ ) => any;
627
+ export declare const CreateReturnShippingLabelRequestFilterSensitiveLog: (
628
+ obj: CreateReturnShippingLabelRequest
629
+ ) => any;
630
+ export declare const CreateReturnShippingLabelResultFilterSensitiveLog: (
631
+ obj: CreateReturnShippingLabelResult
632
+ ) => any;
633
+ export declare const DescribeAddressRequestFilterSensitiveLog: (
634
+ obj: DescribeAddressRequest
635
+ ) => any;
636
+ export declare const DescribeAddressResultFilterSensitiveLog: (
637
+ obj: DescribeAddressResult
638
+ ) => any;
639
+ export declare const DescribeAddressesRequestFilterSensitiveLog: (
640
+ obj: DescribeAddressesRequest
641
+ ) => any;
642
+ export declare const DescribeAddressesResultFilterSensitiveLog: (
643
+ obj: DescribeAddressesResult
644
+ ) => any;
645
+ export declare const DescribeClusterRequestFilterSensitiveLog: (
646
+ obj: DescribeClusterRequest
647
+ ) => any;
648
+ export declare const ClusterMetadataFilterSensitiveLog: (
649
+ obj: ClusterMetadata
650
+ ) => any;
651
+ export declare const DescribeClusterResultFilterSensitiveLog: (
652
+ obj: DescribeClusterResult
653
+ ) => any;
654
+ export declare const DescribeJobRequestFilterSensitiveLog: (
655
+ obj: DescribeJobRequest
656
+ ) => any;
657
+ export declare const DataTransferFilterSensitiveLog: (obj: DataTransfer) => any;
658
+ export declare const JobLogsFilterSensitiveLog: (obj: JobLogs) => any;
659
+ export declare const ShipmentFilterSensitiveLog: (obj: Shipment) => any;
660
+ export declare const ShippingDetailsFilterSensitiveLog: (
661
+ obj: ShippingDetails
662
+ ) => any;
663
+ export declare const JobMetadataFilterSensitiveLog: (obj: JobMetadata) => any;
664
+ export declare const DescribeJobResultFilterSensitiveLog: (
665
+ obj: DescribeJobResult
666
+ ) => any;
667
+ export declare const DescribeReturnShippingLabelRequestFilterSensitiveLog: (
668
+ obj: DescribeReturnShippingLabelRequest
669
+ ) => any;
670
+ export declare const DescribeReturnShippingLabelResultFilterSensitiveLog: (
671
+ obj: DescribeReturnShippingLabelResult
672
+ ) => any;
673
+ export declare const GetJobManifestRequestFilterSensitiveLog: (
674
+ obj: GetJobManifestRequest
675
+ ) => any;
676
+ export declare const GetJobManifestResultFilterSensitiveLog: (
677
+ obj: GetJobManifestResult
678
+ ) => any;
679
+ export declare const GetJobUnlockCodeRequestFilterSensitiveLog: (
680
+ obj: GetJobUnlockCodeRequest
681
+ ) => any;
682
+ export declare const GetJobUnlockCodeResultFilterSensitiveLog: (
683
+ obj: GetJobUnlockCodeResult
684
+ ) => any;
685
+ export declare const GetSnowballUsageRequestFilterSensitiveLog: (
686
+ obj: GetSnowballUsageRequest
687
+ ) => any;
688
+ export declare const GetSnowballUsageResultFilterSensitiveLog: (
689
+ obj: GetSnowballUsageResult
690
+ ) => any;
691
+ export declare const GetSoftwareUpdatesRequestFilterSensitiveLog: (
692
+ obj: GetSoftwareUpdatesRequest
693
+ ) => any;
694
+ export declare const GetSoftwareUpdatesResultFilterSensitiveLog: (
695
+ obj: GetSoftwareUpdatesResult
696
+ ) => any;
697
+ export declare const ListClusterJobsRequestFilterSensitiveLog: (
698
+ obj: ListClusterJobsRequest
699
+ ) => any;
700
+ export declare const JobListEntryFilterSensitiveLog: (obj: JobListEntry) => any;
701
+ export declare const ListClusterJobsResultFilterSensitiveLog: (
702
+ obj: ListClusterJobsResult
703
+ ) => any;
704
+ export declare const ListClustersRequestFilterSensitiveLog: (
705
+ obj: ListClustersRequest
706
+ ) => any;
707
+ export declare const ClusterListEntryFilterSensitiveLog: (
708
+ obj: ClusterListEntry
709
+ ) => any;
710
+ export declare const ListClustersResultFilterSensitiveLog: (
711
+ obj: ListClustersResult
712
+ ) => any;
713
+ export declare const ListCompatibleImagesRequestFilterSensitiveLog: (
714
+ obj: ListCompatibleImagesRequest
715
+ ) => any;
716
+ export declare const CompatibleImageFilterSensitiveLog: (
717
+ obj: CompatibleImage
718
+ ) => any;
719
+ export declare const ListCompatibleImagesResultFilterSensitiveLog: (
720
+ obj: ListCompatibleImagesResult
721
+ ) => any;
722
+ export declare const ListJobsRequestFilterSensitiveLog: (
723
+ obj: ListJobsRequest
724
+ ) => any;
725
+ export declare const ListJobsResultFilterSensitiveLog: (
726
+ obj: ListJobsResult
727
+ ) => any;
728
+ export declare const ListLongTermPricingRequestFilterSensitiveLog: (
729
+ obj: ListLongTermPricingRequest
730
+ ) => any;
731
+ export declare const LongTermPricingListEntryFilterSensitiveLog: (
732
+ obj: LongTermPricingListEntry
733
+ ) => any;
734
+ export declare const ListLongTermPricingResultFilterSensitiveLog: (
735
+ obj: ListLongTermPricingResult
736
+ ) => any;
737
+ export declare const UpdateClusterRequestFilterSensitiveLog: (
738
+ obj: UpdateClusterRequest
739
+ ) => any;
740
+ export declare const UpdateClusterResultFilterSensitiveLog: (
741
+ obj: UpdateClusterResult
742
+ ) => any;
743
+ export declare const UpdateJobRequestFilterSensitiveLog: (
744
+ obj: UpdateJobRequest
745
+ ) => any;
746
+ export declare const UpdateJobResultFilterSensitiveLog: (
747
+ obj: UpdateJobResult
748
+ ) => any;
749
+ export declare const UpdateJobShipmentStateRequestFilterSensitiveLog: (
750
+ obj: UpdateJobShipmentStateRequest
751
+ ) => any;
752
+ export declare const UpdateJobShipmentStateResultFilterSensitiveLog: (
753
+ obj: UpdateJobShipmentStateResult
754
+ ) => any;
755
+ export declare const UpdateLongTermPricingRequestFilterSensitiveLog: (
756
+ obj: UpdateLongTermPricingRequest
757
+ ) => any;
758
+ export declare const UpdateLongTermPricingResultFilterSensitiveLog: (
759
+ obj: UpdateLongTermPricingResult
760
+ ) => any;