@aws-sdk/client-snowball 3.300.0 → 3.303.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 (30) hide show
  1. package/dist-cjs/models/models_0.js +88 -102
  2. package/dist-es/models/models_0.js +88 -102
  3. package/dist-types/commands/CancelClusterCommand.d.ts +1 -1
  4. package/dist-types/commands/CancelJobCommand.d.ts +1 -1
  5. package/dist-types/commands/CreateAddressCommand.d.ts +2 -2
  6. package/dist-types/commands/CreateClusterCommand.d.ts +21 -21
  7. package/dist-types/commands/CreateJobCommand.d.ts +24 -24
  8. package/dist-types/commands/CreateLongTermPricingCommand.d.ts +1 -1
  9. package/dist-types/commands/CreateReturnShippingLabelCommand.d.ts +1 -1
  10. package/dist-types/commands/DescribeAddressCommand.d.ts +1 -1
  11. package/dist-types/commands/DescribeAddressesCommand.d.ts +1 -1
  12. package/dist-types/commands/DescribeClusterCommand.d.ts +1 -1
  13. package/dist-types/commands/DescribeJobCommand.d.ts +1 -1
  14. package/dist-types/commands/DescribeReturnShippingLabelCommand.d.ts +1 -1
  15. package/dist-types/commands/GetJobManifestCommand.d.ts +1 -1
  16. package/dist-types/commands/GetJobUnlockCodeCommand.d.ts +1 -1
  17. package/dist-types/commands/GetSoftwareUpdatesCommand.d.ts +1 -1
  18. package/dist-types/commands/ListClusterJobsCommand.d.ts +1 -1
  19. package/dist-types/commands/ListClustersCommand.d.ts +1 -1
  20. package/dist-types/commands/ListCompatibleImagesCommand.d.ts +1 -1
  21. package/dist-types/commands/ListJobsCommand.d.ts +1 -1
  22. package/dist-types/commands/ListLongTermPricingCommand.d.ts +1 -1
  23. package/dist-types/commands/ListServiceVersionsCommand.d.ts +4 -4
  24. package/dist-types/commands/UpdateClusterCommand.d.ts +19 -19
  25. package/dist-types/commands/UpdateJobCommand.d.ts +19 -19
  26. package/dist-types/commands/UpdateJobShipmentStateCommand.d.ts +1 -1
  27. package/dist-types/commands/UpdateLongTermPricingCommand.d.ts +1 -1
  28. package/dist-types/models/models_0.d.ts +158 -88
  29. package/dist-types/ts3.4/models/models_0.d.ts +109 -88
  30. package/package.json +34 -34
@@ -198,30 +198,40 @@ export declare class UnsupportedAddressException extends __BaseException {
198
198
  }
199
199
  /**
200
200
  * @public
201
+ * @enum
201
202
  */
202
- export declare enum JobType {
203
- EXPORT = "EXPORT",
204
- IMPORT = "IMPORT",
205
- LOCAL_USE = "LOCAL_USE"
206
- }
203
+ export declare const JobType: {
204
+ readonly EXPORT: "EXPORT";
205
+ readonly IMPORT: "IMPORT";
206
+ readonly LOCAL_USE: "LOCAL_USE";
207
+ };
207
208
  /**
208
209
  * @public
209
210
  */
210
- export declare enum JobState {
211
- CANCELLED = "Cancelled",
212
- COMPLETE = "Complete",
213
- IN_PROGRESS = "InProgress",
214
- IN_TRANSIT_TO_AWS = "InTransitToAWS",
215
- IN_TRANSIT_TO_CUSTOMER = "InTransitToCustomer",
216
- LISTING = "Listing",
217
- NEW = "New",
218
- PENDING = "Pending",
219
- PREPARING_APPLIANCE = "PreparingAppliance",
220
- PREPARING_SHIPMENT = "PreparingShipment",
221
- WITH_AWS = "WithAWS",
222
- WITH_AWS_SORTING_FACILITY = "WithAWSSortingFacility",
223
- WITH_CUSTOMER = "WithCustomer"
224
- }
211
+ export type JobType = (typeof JobType)[keyof typeof JobType];
212
+ /**
213
+ * @public
214
+ * @enum
215
+ */
216
+ export declare const JobState: {
217
+ readonly CANCELLED: "Cancelled";
218
+ readonly COMPLETE: "Complete";
219
+ readonly IN_PROGRESS: "InProgress";
220
+ readonly IN_TRANSIT_TO_AWS: "InTransitToAWS";
221
+ readonly IN_TRANSIT_TO_CUSTOMER: "InTransitToCustomer";
222
+ readonly LISTING: "Listing";
223
+ readonly NEW: "New";
224
+ readonly PENDING: "Pending";
225
+ readonly PREPARING_APPLIANCE: "PreparingAppliance";
226
+ readonly PREPARING_SHIPMENT: "PreparingShipment";
227
+ readonly WITH_AWS: "WithAWS";
228
+ readonly WITH_AWS_SORTING_FACILITY: "WithAWSSortingFacility";
229
+ readonly WITH_CUSTOMER: "WithCustomer";
230
+ };
231
+ /**
232
+ * @public
233
+ */
234
+ export type JobState = (typeof JobState)[keyof typeof JobState];
225
235
  /**
226
236
  * @public
227
237
  * <p>The Amazon Simple Notification Service (Amazon SNS) notification settings associated
@@ -267,10 +277,15 @@ export interface EKSOnDeviceServiceConfiguration {
267
277
  }
268
278
  /**
269
279
  * @public
280
+ * @enum
270
281
  */
271
- export declare enum StorageUnit {
272
- TB = "TB"
273
- }
282
+ export declare const StorageUnit: {
283
+ readonly TB: "TB";
284
+ };
285
+ /**
286
+ * @public
287
+ */
288
+ export type StorageUnit = (typeof StorageUnit)[keyof typeof StorageUnit];
274
289
  /**
275
290
  * @public
276
291
  * <p>An object that represents the metadata and configuration settings for the NFS (Network
@@ -324,11 +339,16 @@ export interface OnDeviceServiceConfiguration {
324
339
  }
325
340
  /**
326
341
  * @public
342
+ * @enum
327
343
  */
328
- export declare enum RemoteManagement {
329
- INSTALLED_AUTOSTART = "INSTALLED_AUTOSTART",
330
- INSTALLED_ONLY = "INSTALLED_ONLY"
331
- }
344
+ export declare const RemoteManagement: {
345
+ readonly INSTALLED_AUTOSTART: "INSTALLED_AUTOSTART";
346
+ readonly INSTALLED_ONLY: "INSTALLED_ONLY";
347
+ };
348
+ /**
349
+ * @public
350
+ */
351
+ export type RemoteManagement = (typeof RemoteManagement)[keyof typeof RemoteManagement];
332
352
  /**
333
353
  * @public
334
354
  * <p>A JSON-formatted object that contains the IDs for an Amazon Machine Image (AMI),
@@ -391,19 +411,29 @@ export interface KeyRange {
391
411
  }
392
412
  /**
393
413
  * @public
414
+ * @enum
394
415
  */
395
- export declare enum DeviceServiceName {
396
- NFS_ON_DEVICE_SERVICE = "NFS_ON_DEVICE_SERVICE",
397
- S3_ON_DEVICE_SERVICE = "S3_ON_DEVICE_SERVICE"
398
- }
416
+ export declare const DeviceServiceName: {
417
+ readonly NFS_ON_DEVICE_SERVICE: "NFS_ON_DEVICE_SERVICE";
418
+ readonly S3_ON_DEVICE_SERVICE: "S3_ON_DEVICE_SERVICE";
419
+ };
399
420
  /**
400
421
  * @public
401
422
  */
402
- export declare enum TransferOption {
403
- EXPORT = "EXPORT",
404
- IMPORT = "IMPORT",
405
- LOCAL_USE = "LOCAL_USE"
406
- }
423
+ export type DeviceServiceName = (typeof DeviceServiceName)[keyof typeof DeviceServiceName];
424
+ /**
425
+ * @public
426
+ * @enum
427
+ */
428
+ export declare const TransferOption: {
429
+ readonly EXPORT: "EXPORT";
430
+ readonly IMPORT: "IMPORT";
431
+ readonly LOCAL_USE: "LOCAL_USE";
432
+ };
433
+ /**
434
+ * @public
435
+ */
436
+ export type TransferOption = (typeof TransferOption)[keyof typeof TransferOption];
407
437
  /**
408
438
  * @public
409
439
  * <p>An object that represents the service or services on the Snow Family device that your
@@ -471,26 +501,36 @@ export interface JobResource {
471
501
  }
472
502
  /**
473
503
  * @public
504
+ * @enum
474
505
  */
475
- export declare enum ShippingOption {
476
- EXPRESS = "EXPRESS",
477
- NEXT_DAY = "NEXT_DAY",
478
- SECOND_DAY = "SECOND_DAY",
479
- STANDARD = "STANDARD"
480
- }
506
+ export declare const ShippingOption: {
507
+ readonly EXPRESS: "EXPRESS";
508
+ readonly NEXT_DAY: "NEXT_DAY";
509
+ readonly SECOND_DAY: "SECOND_DAY";
510
+ readonly STANDARD: "STANDARD";
511
+ };
481
512
  /**
482
513
  * @public
483
514
  */
484
- export declare enum SnowballType {
485
- EDGE = "EDGE",
486
- EDGE_C = "EDGE_C",
487
- EDGE_CG = "EDGE_CG",
488
- EDGE_S = "EDGE_S",
489
- SNC1_HDD = "SNC1_HDD",
490
- SNC1_SSD = "SNC1_SSD",
491
- STANDARD = "STANDARD",
492
- V3_5C = "V3_5C"
493
- }
515
+ export type ShippingOption = (typeof ShippingOption)[keyof typeof ShippingOption];
516
+ /**
517
+ * @public
518
+ * @enum
519
+ */
520
+ export declare const SnowballType: {
521
+ readonly EDGE: "EDGE";
522
+ readonly EDGE_C: "EDGE_C";
523
+ readonly EDGE_CG: "EDGE_CG";
524
+ readonly EDGE_S: "EDGE_S";
525
+ readonly SNC1_HDD: "SNC1_HDD";
526
+ readonly SNC1_SSD: "SNC1_SSD";
527
+ readonly STANDARD: "STANDARD";
528
+ readonly V3_5C: "V3_5C";
529
+ };
530
+ /**
531
+ * @public
532
+ */
533
+ export type SnowballType = (typeof SnowballType)[keyof typeof SnowballType];
494
534
  /**
495
535
  * @public
496
536
  * <p>The tax documents required in Amazon Web Services Region in India.</p>
@@ -719,18 +759,23 @@ export interface DeviceConfiguration {
719
759
  }
720
760
  /**
721
761
  * @public
762
+ * @enum
722
763
  */
723
- export declare enum SnowballCapacity {
724
- NO_PREFERENCE = "NoPreference",
725
- T100 = "T100",
726
- T14 = "T14",
727
- T32 = "T32",
728
- T42 = "T42",
729
- T50 = "T50",
730
- T8 = "T8",
731
- T80 = "T80",
732
- T98 = "T98"
733
- }
764
+ export declare const SnowballCapacity: {
765
+ readonly NO_PREFERENCE: "NoPreference";
766
+ readonly T100: "T100";
767
+ readonly T14: "T14";
768
+ readonly T32: "T32";
769
+ readonly T42: "T42";
770
+ readonly T50: "T50";
771
+ readonly T8: "T8";
772
+ readonly T80: "T80";
773
+ readonly T98: "T98";
774
+ };
775
+ /**
776
+ * @public
777
+ */
778
+ export type SnowballCapacity = (typeof SnowballCapacity)[keyof typeof SnowballCapacity];
734
779
  /**
735
780
  * @public
736
781
  */
@@ -884,11 +929,16 @@ export interface CreateJobResult {
884
929
  }
885
930
  /**
886
931
  * @public
932
+ * @enum
887
933
  */
888
- export declare enum LongTermPricingType {
889
- ONE_YEAR = "OneYear",
890
- THREE_YEAR = "ThreeYear"
891
- }
934
+ export declare const LongTermPricingType: {
935
+ readonly ONE_YEAR: "OneYear";
936
+ readonly THREE_YEAR: "ThreeYear";
937
+ };
938
+ /**
939
+ * @public
940
+ */
941
+ export type LongTermPricingType = (typeof LongTermPricingType)[keyof typeof LongTermPricingType];
892
942
  /**
893
943
  * @public
894
944
  */
@@ -953,13 +1003,18 @@ export interface CreateReturnShippingLabelRequest {
953
1003
  }
954
1004
  /**
955
1005
  * @public
1006
+ * @enum
956
1007
  */
957
- export declare enum ShippingLabelStatus {
958
- FAILED = "Failed",
959
- IN_PROGRESS = "InProgress",
960
- SUCCEEDED = "Succeeded",
961
- TIMED_OUT = "TimedOut"
962
- }
1008
+ export declare const ShippingLabelStatus: {
1009
+ readonly FAILED: "Failed";
1010
+ readonly IN_PROGRESS: "InProgress";
1011
+ readonly SUCCEEDED: "Succeeded";
1012
+ readonly TIMED_OUT: "TimedOut";
1013
+ };
1014
+ /**
1015
+ * @public
1016
+ */
1017
+ export type ShippingLabelStatus = (typeof ShippingLabelStatus)[keyof typeof ShippingLabelStatus];
963
1018
  /**
964
1019
  * @public
965
1020
  */
@@ -1059,14 +1114,19 @@ export interface DescribeClusterRequest {
1059
1114
  }
1060
1115
  /**
1061
1116
  * @public
1117
+ * @enum
1062
1118
  */
1063
- export declare enum ClusterState {
1064
- AWAITING_QUORUM = "AwaitingQuorum",
1065
- CANCELLED = "Cancelled",
1066
- COMPLETE = "Complete",
1067
- IN_USE = "InUse",
1068
- PENDING = "Pending"
1069
- }
1119
+ export declare const ClusterState: {
1120
+ readonly AWAITING_QUORUM: "AwaitingQuorum";
1121
+ readonly CANCELLED: "Cancelled";
1122
+ readonly COMPLETE: "Complete";
1123
+ readonly IN_USE: "InUse";
1124
+ readonly PENDING: "Pending";
1125
+ };
1126
+ /**
1127
+ * @public
1128
+ */
1129
+ export type ClusterState = (typeof ClusterState)[keyof typeof ClusterState];
1070
1130
  /**
1071
1131
  * @public
1072
1132
  * <p>Contains metadata about a specific cluster.</p>
@@ -1842,11 +1902,16 @@ export interface ListLongTermPricingResult {
1842
1902
  }
1843
1903
  /**
1844
1904
  * @public
1905
+ * @enum
1845
1906
  */
1846
- export declare enum ServiceName {
1847
- EKS_ANYWHERE = "EKS_ANYWHERE",
1848
- KUBERNETES = "KUBERNETES"
1849
- }
1907
+ export declare const ServiceName: {
1908
+ readonly EKS_ANYWHERE: "EKS_ANYWHERE";
1909
+ readonly KUBERNETES: "KUBERNETES";
1910
+ };
1911
+ /**
1912
+ * @public
1913
+ */
1914
+ export type ServiceName = (typeof ServiceName)[keyof typeof ServiceName];
1850
1915
  /**
1851
1916
  * @public
1852
1917
  * <p>The version of the requested service.</p>
@@ -2033,11 +2098,16 @@ export interface UpdateJobResult {
2033
2098
  }
2034
2099
  /**
2035
2100
  * @public
2101
+ * @enum
2036
2102
  */
2037
- export declare enum ShipmentState {
2038
- RECEIVED = "RECEIVED",
2039
- RETURNED = "RETURNED"
2040
- }
2103
+ export declare const ShipmentState: {
2104
+ readonly RECEIVED: "RECEIVED";
2105
+ readonly RETURNED: "RETURNED";
2106
+ };
2107
+ /**
2108
+ * @public
2109
+ */
2110
+ export type ShipmentState = (typeof ShipmentState)[keyof typeof ShipmentState];
2041
2111
  /**
2042
2112
  * @public
2043
2113
  */
@@ -71,26 +71,28 @@ export declare class UnsupportedAddressException extends __BaseException {
71
71
  opts: __ExceptionOptionType<UnsupportedAddressException, __BaseException>
72
72
  );
73
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
- }
74
+ export declare const JobType: {
75
+ readonly EXPORT: "EXPORT";
76
+ readonly IMPORT: "IMPORT";
77
+ readonly LOCAL_USE: "LOCAL_USE";
78
+ };
79
+ export type JobType = (typeof JobType)[keyof typeof JobType];
80
+ export declare const JobState: {
81
+ readonly CANCELLED: "Cancelled";
82
+ readonly COMPLETE: "Complete";
83
+ readonly IN_PROGRESS: "InProgress";
84
+ readonly IN_TRANSIT_TO_AWS: "InTransitToAWS";
85
+ readonly IN_TRANSIT_TO_CUSTOMER: "InTransitToCustomer";
86
+ readonly LISTING: "Listing";
87
+ readonly NEW: "New";
88
+ readonly PENDING: "Pending";
89
+ readonly PREPARING_APPLIANCE: "PreparingAppliance";
90
+ readonly PREPARING_SHIPMENT: "PreparingShipment";
91
+ readonly WITH_AWS: "WithAWS";
92
+ readonly WITH_AWS_SORTING_FACILITY: "WithAWSSortingFacility";
93
+ readonly WITH_CUSTOMER: "WithCustomer";
94
+ };
95
+ export type JobState = (typeof JobState)[keyof typeof JobState];
94
96
  export interface Notification {
95
97
  SnsTopicARN?: string;
96
98
  JobStatesToNotify?: (JobState | string)[];
@@ -100,9 +102,10 @@ export interface EKSOnDeviceServiceConfiguration {
100
102
  KubernetesVersion?: string;
101
103
  EKSAnywhereVersion?: string;
102
104
  }
103
- export declare enum StorageUnit {
104
- TB = "TB",
105
- }
105
+ export declare const StorageUnit: {
106
+ readonly TB: "TB";
107
+ };
108
+ export type StorageUnit = (typeof StorageUnit)[keyof typeof StorageUnit];
106
109
  export interface NFSOnDeviceServiceConfiguration {
107
110
  StorageLimit?: number;
108
111
  StorageUnit?: StorageUnit | string;
@@ -116,10 +119,12 @@ export interface OnDeviceServiceConfiguration {
116
119
  TGWOnDeviceService?: TGWOnDeviceServiceConfiguration;
117
120
  EKSOnDeviceService?: EKSOnDeviceServiceConfiguration;
118
121
  }
119
- export declare enum RemoteManagement {
120
- INSTALLED_AUTOSTART = "INSTALLED_AUTOSTART",
121
- INSTALLED_ONLY = "INSTALLED_ONLY",
122
- }
122
+ export declare const RemoteManagement: {
123
+ readonly INSTALLED_AUTOSTART: "INSTALLED_AUTOSTART";
124
+ readonly INSTALLED_ONLY: "INSTALLED_ONLY";
125
+ };
126
+ export type RemoteManagement =
127
+ (typeof RemoteManagement)[keyof typeof RemoteManagement];
123
128
  export interface Ec2AmiResource {
124
129
  AmiId: string | undefined;
125
130
  SnowballAmiId?: string;
@@ -135,15 +140,19 @@ export interface KeyRange {
135
140
  BeginMarker?: string;
136
141
  EndMarker?: string;
137
142
  }
138
- export declare enum DeviceServiceName {
139
- NFS_ON_DEVICE_SERVICE = "NFS_ON_DEVICE_SERVICE",
140
- S3_ON_DEVICE_SERVICE = "S3_ON_DEVICE_SERVICE",
141
- }
142
- export declare enum TransferOption {
143
- EXPORT = "EXPORT",
144
- IMPORT = "IMPORT",
145
- LOCAL_USE = "LOCAL_USE",
146
- }
143
+ export declare const DeviceServiceName: {
144
+ readonly NFS_ON_DEVICE_SERVICE: "NFS_ON_DEVICE_SERVICE";
145
+ readonly S3_ON_DEVICE_SERVICE: "S3_ON_DEVICE_SERVICE";
146
+ };
147
+ export type DeviceServiceName =
148
+ (typeof DeviceServiceName)[keyof typeof DeviceServiceName];
149
+ export declare const TransferOption: {
150
+ readonly EXPORT: "EXPORT";
151
+ readonly IMPORT: "IMPORT";
152
+ readonly LOCAL_USE: "LOCAL_USE";
153
+ };
154
+ export type TransferOption =
155
+ (typeof TransferOption)[keyof typeof TransferOption];
147
156
  export interface TargetOnDeviceService {
148
157
  ServiceName?: DeviceServiceName | string;
149
158
  TransferOption?: TransferOption | string;
@@ -158,22 +167,25 @@ export interface JobResource {
158
167
  LambdaResources?: LambdaResource[];
159
168
  Ec2AmiResources?: Ec2AmiResource[];
160
169
  }
161
- export declare enum ShippingOption {
162
- EXPRESS = "EXPRESS",
163
- NEXT_DAY = "NEXT_DAY",
164
- SECOND_DAY = "SECOND_DAY",
165
- STANDARD = "STANDARD",
166
- }
167
- export declare enum SnowballType {
168
- EDGE = "EDGE",
169
- EDGE_C = "EDGE_C",
170
- EDGE_CG = "EDGE_CG",
171
- EDGE_S = "EDGE_S",
172
- SNC1_HDD = "SNC1_HDD",
173
- SNC1_SSD = "SNC1_SSD",
174
- STANDARD = "STANDARD",
175
- V3_5C = "V3_5C",
176
- }
170
+ export declare const ShippingOption: {
171
+ readonly EXPRESS: "EXPRESS";
172
+ readonly NEXT_DAY: "NEXT_DAY";
173
+ readonly SECOND_DAY: "SECOND_DAY";
174
+ readonly STANDARD: "STANDARD";
175
+ };
176
+ export type ShippingOption =
177
+ (typeof ShippingOption)[keyof typeof ShippingOption];
178
+ export declare const SnowballType: {
179
+ readonly EDGE: "EDGE";
180
+ readonly EDGE_C: "EDGE_C";
181
+ readonly EDGE_CG: "EDGE_CG";
182
+ readonly EDGE_S: "EDGE_S";
183
+ readonly SNC1_HDD: "SNC1_HDD";
184
+ readonly SNC1_SSD: "SNC1_SSD";
185
+ readonly STANDARD: "STANDARD";
186
+ readonly V3_5C: "V3_5C";
187
+ };
188
+ export type SnowballType = (typeof SnowballType)[keyof typeof SnowballType];
177
189
  export interface INDTaxDocuments {
178
190
  GSTIN?: string;
179
191
  }
@@ -234,17 +246,19 @@ export interface SnowconeDeviceConfiguration {
234
246
  export interface DeviceConfiguration {
235
247
  SnowconeDeviceConfiguration?: SnowconeDeviceConfiguration;
236
248
  }
237
- export declare enum SnowballCapacity {
238
- NO_PREFERENCE = "NoPreference",
239
- T100 = "T100",
240
- T14 = "T14",
241
- T32 = "T32",
242
- T42 = "T42",
243
- T50 = "T50",
244
- T8 = "T8",
245
- T80 = "T80",
246
- T98 = "T98",
247
- }
249
+ export declare const SnowballCapacity: {
250
+ readonly NO_PREFERENCE: "NoPreference";
251
+ readonly T100: "T100";
252
+ readonly T14: "T14";
253
+ readonly T32: "T32";
254
+ readonly T42: "T42";
255
+ readonly T50: "T50";
256
+ readonly T8: "T8";
257
+ readonly T80: "T80";
258
+ readonly T98: "T98";
259
+ };
260
+ export type SnowballCapacity =
261
+ (typeof SnowballCapacity)[keyof typeof SnowballCapacity];
248
262
  export interface CreateJobRequest {
249
263
  JobType?: JobType | string;
250
264
  Resources?: JobResource;
@@ -267,10 +281,12 @@ export interface CreateJobRequest {
267
281
  export interface CreateJobResult {
268
282
  JobId?: string;
269
283
  }
270
- export declare enum LongTermPricingType {
271
- ONE_YEAR = "OneYear",
272
- THREE_YEAR = "ThreeYear",
273
- }
284
+ export declare const LongTermPricingType: {
285
+ readonly ONE_YEAR: "OneYear";
286
+ readonly THREE_YEAR: "ThreeYear";
287
+ };
288
+ export type LongTermPricingType =
289
+ (typeof LongTermPricingType)[keyof typeof LongTermPricingType];
274
290
  export interface CreateLongTermPricingRequest {
275
291
  LongTermPricingType: LongTermPricingType | string | undefined;
276
292
  IsLongTermPricingAutoRenew?: boolean;
@@ -290,12 +306,14 @@ export interface CreateReturnShippingLabelRequest {
290
306
  JobId: string | undefined;
291
307
  ShippingOption?: ShippingOption | string;
292
308
  }
293
- export declare enum ShippingLabelStatus {
294
- FAILED = "Failed",
295
- IN_PROGRESS = "InProgress",
296
- SUCCEEDED = "Succeeded",
297
- TIMED_OUT = "TimedOut",
298
- }
309
+ export declare const ShippingLabelStatus: {
310
+ readonly FAILED: "Failed";
311
+ readonly IN_PROGRESS: "InProgress";
312
+ readonly SUCCEEDED: "Succeeded";
313
+ readonly TIMED_OUT: "TimedOut";
314
+ };
315
+ export type ShippingLabelStatus =
316
+ (typeof ShippingLabelStatus)[keyof typeof ShippingLabelStatus];
299
317
  export interface CreateReturnShippingLabelResult {
300
318
  Status?: ShippingLabelStatus | string;
301
319
  }
@@ -335,13 +353,14 @@ export declare class InvalidNextTokenException extends __BaseException {
335
353
  export interface DescribeClusterRequest {
336
354
  ClusterId: string | undefined;
337
355
  }
338
- export declare enum ClusterState {
339
- AWAITING_QUORUM = "AwaitingQuorum",
340
- CANCELLED = "Cancelled",
341
- COMPLETE = "Complete",
342
- IN_USE = "InUse",
343
- PENDING = "Pending",
344
- }
356
+ export declare const ClusterState: {
357
+ readonly AWAITING_QUORUM: "AwaitingQuorum";
358
+ readonly CANCELLED: "Cancelled";
359
+ readonly COMPLETE: "Complete";
360
+ readonly IN_USE: "InUse";
361
+ readonly PENDING: "Pending";
362
+ };
363
+ export type ClusterState = (typeof ClusterState)[keyof typeof ClusterState];
345
364
  export interface ClusterMetadata {
346
365
  ClusterId?: string;
347
366
  Description?: string;
@@ -516,10 +535,11 @@ export interface ListLongTermPricingResult {
516
535
  LongTermPricingEntries?: LongTermPricingListEntry[];
517
536
  NextToken?: string;
518
537
  }
519
- export declare enum ServiceName {
520
- EKS_ANYWHERE = "EKS_ANYWHERE",
521
- KUBERNETES = "KUBERNETES",
522
- }
538
+ export declare const ServiceName: {
539
+ readonly EKS_ANYWHERE: "EKS_ANYWHERE";
540
+ readonly KUBERNETES: "KUBERNETES";
541
+ };
542
+ export type ServiceName = (typeof ServiceName)[keyof typeof ServiceName];
523
543
  export interface ServiceVersion {
524
544
  Version?: string;
525
545
  }
@@ -564,10 +584,11 @@ export interface UpdateJobRequest {
564
584
  ForwardingAddressId?: string;
565
585
  }
566
586
  export interface UpdateJobResult {}
567
- export declare enum ShipmentState {
568
- RECEIVED = "RECEIVED",
569
- RETURNED = "RETURNED",
570
- }
587
+ export declare const ShipmentState: {
588
+ readonly RECEIVED: "RECEIVED";
589
+ readonly RETURNED: "RETURNED";
590
+ };
591
+ export type ShipmentState = (typeof ShipmentState)[keyof typeof ShipmentState];
571
592
  export interface UpdateJobShipmentStateRequest {
572
593
  JobId: string | undefined;
573
594
  ShipmentState: ShipmentState | string | undefined;