@aws-sdk/client-braket 3.937.0 → 3.940.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.
@@ -0,0 +1,276 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const CompressionType: {
6
+ readonly GZIP: "GZIP";
7
+ readonly NONE: "NONE";
8
+ };
9
+ /**
10
+ * @public
11
+ */
12
+ export type CompressionType = (typeof CompressionType)[keyof typeof CompressionType];
13
+ /**
14
+ * @public
15
+ * @enum
16
+ */
17
+ export declare const AssociationType: {
18
+ readonly RESERVATION_TIME_WINDOW_ARN: "RESERVATION_TIME_WINDOW_ARN";
19
+ };
20
+ /**
21
+ * @public
22
+ */
23
+ export type AssociationType = (typeof AssociationType)[keyof typeof AssociationType];
24
+ /**
25
+ * @public
26
+ * @enum
27
+ */
28
+ export declare const QueueName: {
29
+ readonly JOBS_QUEUE: "JOBS_QUEUE";
30
+ readonly QUANTUM_TASKS_QUEUE: "QUANTUM_TASKS_QUEUE";
31
+ };
32
+ /**
33
+ * @public
34
+ */
35
+ export type QueueName = (typeof QueueName)[keyof typeof QueueName];
36
+ /**
37
+ * @public
38
+ * @enum
39
+ */
40
+ export declare const QueuePriority: {
41
+ readonly NORMAL: "Normal";
42
+ readonly PRIORITY: "Priority";
43
+ };
44
+ /**
45
+ * @public
46
+ */
47
+ export type QueuePriority = (typeof QueuePriority)[keyof typeof QueuePriority];
48
+ /**
49
+ * @public
50
+ * @enum
51
+ */
52
+ export declare const DeviceStatus: {
53
+ readonly OFFLINE: "OFFLINE";
54
+ readonly ONLINE: "ONLINE";
55
+ readonly RETIRED: "RETIRED";
56
+ };
57
+ /**
58
+ * @public
59
+ */
60
+ export type DeviceStatus = (typeof DeviceStatus)[keyof typeof DeviceStatus];
61
+ /**
62
+ * @public
63
+ * @enum
64
+ */
65
+ export declare const DeviceType: {
66
+ readonly QPU: "QPU";
67
+ readonly SIMULATOR: "SIMULATOR";
68
+ };
69
+ /**
70
+ * @public
71
+ */
72
+ export type DeviceType = (typeof DeviceType)[keyof typeof DeviceType];
73
+ /**
74
+ * @public
75
+ * @enum
76
+ */
77
+ export declare const ValidationExceptionReason: {
78
+ readonly PROGRAM_SET_VALIDATION_FAILED: "ProgramSetValidationFailed";
79
+ };
80
+ /**
81
+ * @public
82
+ */
83
+ export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
84
+ /**
85
+ * @public
86
+ * @enum
87
+ */
88
+ export declare const CancellationStatus: {
89
+ readonly CANCELLED: "CANCELLED";
90
+ readonly CANCELLING: "CANCELLING";
91
+ };
92
+ /**
93
+ * @public
94
+ */
95
+ export type CancellationStatus = (typeof CancellationStatus)[keyof typeof CancellationStatus];
96
+ /**
97
+ * @public
98
+ * @enum
99
+ */
100
+ export declare const _InstanceType: {
101
+ readonly ML_C4_2XLARGE: "ml.c4.2xlarge";
102
+ readonly ML_C4_4XLARGE: "ml.c4.4xlarge";
103
+ readonly ML_C4_8XLARGE: "ml.c4.8xlarge";
104
+ readonly ML_C4_XLARGE: "ml.c4.xlarge";
105
+ readonly ML_C5N_18XLARGE: "ml.c5n.18xlarge";
106
+ readonly ML_C5N_2XLARGE: "ml.c5n.2xlarge";
107
+ readonly ML_C5N_4XLARGE: "ml.c5n.4xlarge";
108
+ readonly ML_C5N_9XLARGE: "ml.c5n.9xlarge";
109
+ readonly ML_C5N_XLARGE: "ml.c5n.xlarge";
110
+ readonly ML_C5_18XLARGE: "ml.c5.18xlarge";
111
+ readonly ML_C5_2XLARGE: "ml.c5.2xlarge";
112
+ readonly ML_C5_4XLARGE: "ml.c5.4xlarge";
113
+ readonly ML_C5_9XLARGE: "ml.c5.9xlarge";
114
+ readonly ML_C5_XLARGE: "ml.c5.xlarge";
115
+ readonly ML_G4DN_12XLARGE: "ml.g4dn.12xlarge";
116
+ readonly ML_G4DN_16XLARGE: "ml.g4dn.16xlarge";
117
+ readonly ML_G4DN_2XLARGE: "ml.g4dn.2xlarge";
118
+ readonly ML_G4DN_4XLARGE: "ml.g4dn.4xlarge";
119
+ readonly ML_G4DN_8XLARGE: "ml.g4dn.8xlarge";
120
+ readonly ML_G4DN_XLARGE: "ml.g4dn.xlarge";
121
+ readonly ML_M4_10XLARGE: "ml.m4.10xlarge";
122
+ readonly ML_M4_16XLARGE: "ml.m4.16xlarge";
123
+ readonly ML_M4_2XLARGE: "ml.m4.2xlarge";
124
+ readonly ML_M4_4XLARGE: "ml.m4.4xlarge";
125
+ readonly ML_M4_XLARGE: "ml.m4.xlarge";
126
+ readonly ML_M5_12XLARGE: "ml.m5.12xlarge";
127
+ readonly ML_M5_24XLARGE: "ml.m5.24xlarge";
128
+ readonly ML_M5_2XLARGE: "ml.m5.2xlarge";
129
+ readonly ML_M5_4XLARGE: "ml.m5.4xlarge";
130
+ readonly ML_M5_LARGE: "ml.m5.large";
131
+ readonly ML_M5_XLARGE: "ml.m5.xlarge";
132
+ readonly ML_P2_16XLARGE: "ml.p2.16xlarge";
133
+ readonly ML_P2_8XLARGE: "ml.p2.8xlarge";
134
+ readonly ML_P2_XLARGE: "ml.p2.xlarge";
135
+ readonly ML_P3DN_24XLARGE: "ml.p3dn.24xlarge";
136
+ readonly ML_P3_16XLARGE: "ml.p3.16xlarge";
137
+ readonly ML_P3_2XLARGE: "ml.p3.2xlarge";
138
+ readonly ML_P3_8XLARGE: "ml.p3.8xlarge";
139
+ readonly ML_P4D_24XLARGE: "ml.p4d.24xlarge";
140
+ };
141
+ /**
142
+ * @public
143
+ */
144
+ export type _InstanceType = (typeof _InstanceType)[keyof typeof _InstanceType];
145
+ /**
146
+ * @public
147
+ * @enum
148
+ */
149
+ export declare const HybridJobAdditionalAttributeName: {
150
+ readonly QUEUE_INFO: "QueueInfo";
151
+ };
152
+ /**
153
+ * @public
154
+ */
155
+ export type HybridJobAdditionalAttributeName = (typeof HybridJobAdditionalAttributeName)[keyof typeof HybridJobAdditionalAttributeName];
156
+ /**
157
+ * @public
158
+ * @enum
159
+ */
160
+ export declare const JobEventType: {
161
+ readonly CANCELLED: "CANCELLED";
162
+ readonly COMPLETED: "COMPLETED";
163
+ readonly DEPRIORITIZED_DUE_TO_INACTIVITY: "DEPRIORITIZED_DUE_TO_INACTIVITY";
164
+ readonly DOWNLOADING_DATA: "DOWNLOADING_DATA";
165
+ readonly FAILED: "FAILED";
166
+ readonly MAX_RUNTIME_EXCEEDED: "MAX_RUNTIME_EXCEEDED";
167
+ readonly QUEUED_FOR_EXECUTION: "QUEUED_FOR_EXECUTION";
168
+ readonly RUNNING: "RUNNING";
169
+ readonly STARTING_INSTANCE: "STARTING_INSTANCE";
170
+ readonly UPLOADING_RESULTS: "UPLOADING_RESULTS";
171
+ readonly WAITING_FOR_PRIORITY: "WAITING_FOR_PRIORITY";
172
+ };
173
+ /**
174
+ * @public
175
+ */
176
+ export type JobEventType = (typeof JobEventType)[keyof typeof JobEventType];
177
+ /**
178
+ * @public
179
+ * @enum
180
+ */
181
+ export declare const JobPrimaryStatus: {
182
+ readonly CANCELLED: "CANCELLED";
183
+ readonly CANCELLING: "CANCELLING";
184
+ readonly COMPLETED: "COMPLETED";
185
+ readonly FAILED: "FAILED";
186
+ readonly QUEUED: "QUEUED";
187
+ readonly RUNNING: "RUNNING";
188
+ };
189
+ /**
190
+ * @public
191
+ */
192
+ export type JobPrimaryStatus = (typeof JobPrimaryStatus)[keyof typeof JobPrimaryStatus];
193
+ /**
194
+ * @public
195
+ * @enum
196
+ */
197
+ export declare const SearchJobsFilterOperator: {
198
+ readonly BETWEEN: "BETWEEN";
199
+ readonly CONTAINS: "CONTAINS";
200
+ readonly EQUAL: "EQUAL";
201
+ readonly GT: "GT";
202
+ readonly GTE: "GTE";
203
+ readonly LT: "LT";
204
+ readonly LTE: "LTE";
205
+ };
206
+ /**
207
+ * @public
208
+ */
209
+ export type SearchJobsFilterOperator = (typeof SearchJobsFilterOperator)[keyof typeof SearchJobsFilterOperator];
210
+ /**
211
+ * @public
212
+ * @enum
213
+ */
214
+ export declare const ExperimentalCapabilitiesEnablementType: {
215
+ readonly ALL: "ALL";
216
+ readonly NONE: "NONE";
217
+ };
218
+ /**
219
+ * @public
220
+ */
221
+ export type ExperimentalCapabilitiesEnablementType = (typeof ExperimentalCapabilitiesEnablementType)[keyof typeof ExperimentalCapabilitiesEnablementType];
222
+ /**
223
+ * @public
224
+ * @enum
225
+ */
226
+ export declare const QuantumTaskAdditionalAttributeName: {
227
+ readonly QUEUE_INFO: "QueueInfo";
228
+ };
229
+ /**
230
+ * @public
231
+ */
232
+ export type QuantumTaskAdditionalAttributeName = (typeof QuantumTaskAdditionalAttributeName)[keyof typeof QuantumTaskAdditionalAttributeName];
233
+ /**
234
+ * @public
235
+ * @enum
236
+ */
237
+ export declare const QuantumTaskStatus: {
238
+ readonly CANCELLED: "CANCELLED";
239
+ readonly CANCELLING: "CANCELLING";
240
+ readonly COMPLETED: "COMPLETED";
241
+ readonly CREATED: "CREATED";
242
+ readonly FAILED: "FAILED";
243
+ readonly QUEUED: "QUEUED";
244
+ readonly RUNNING: "RUNNING";
245
+ };
246
+ /**
247
+ * @public
248
+ */
249
+ export type QuantumTaskStatus = (typeof QuantumTaskStatus)[keyof typeof QuantumTaskStatus];
250
+ /**
251
+ * @public
252
+ * @enum
253
+ */
254
+ export declare const SearchQuantumTasksFilterOperator: {
255
+ readonly BETWEEN: "BETWEEN";
256
+ readonly EQUAL: "EQUAL";
257
+ readonly GT: "GT";
258
+ readonly GTE: "GTE";
259
+ readonly LT: "LT";
260
+ readonly LTE: "LTE";
261
+ };
262
+ /**
263
+ * @public
264
+ */
265
+ export type SearchQuantumTasksFilterOperator = (typeof SearchQuantumTasksFilterOperator)[keyof typeof SearchQuantumTasksFilterOperator];
266
+ /**
267
+ * @public
268
+ * @enum
269
+ */
270
+ export declare const SearchSpendingLimitsFilterOperator: {
271
+ readonly EQUAL: "EQUAL";
272
+ };
273
+ /**
274
+ * @public
275
+ */
276
+ export type SearchSpendingLimitsFilterOperator = (typeof SearchSpendingLimitsFilterOperator)[keyof typeof SearchSpendingLimitsFilterOperator];
@@ -1,6 +1,7 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { BraketServiceException as __BaseException } from "./BraketServiceException";
3
- import { ProgramSetValidationFailure, ValidationExceptionReason } from "./models_0";
3
+ import { ValidationExceptionReason } from "./enums";
4
+ import { ProgramSetValidationFailure } from "./models_0";
4
5
  /**
5
6
  * <p>You do not have sufficient permissions to perform this action.</p>
6
7
  * @public
@@ -1,4 +1,5 @@
1
1
  import { AutomaticJsonStringConversion as __AutomaticJsonStringConversion } from "@smithy/smithy-client";
2
+ import { _InstanceType, AssociationType, CancellationStatus, CompressionType, DeviceStatus, DeviceType, ExperimentalCapabilitiesEnablementType, HybridJobAdditionalAttributeName, JobEventType, JobPrimaryStatus, QuantumTaskAdditionalAttributeName, QuantumTaskStatus, QueueName, QueuePriority, SearchJobsFilterOperator, SearchQuantumTasksFilterOperator, SearchSpendingLimitsFilterOperator } from "./enums";
2
3
  /**
3
4
  * <p>Contains metadata about the quantum task action, including the action type and program statistics.</p>
4
5
  * @public
@@ -31,18 +32,6 @@ export interface ContainerImage {
31
32
  */
32
33
  uri: string | undefined;
33
34
  }
34
- /**
35
- * @public
36
- * @enum
37
- */
38
- export declare const CompressionType: {
39
- readonly GZIP: "GZIP";
40
- readonly NONE: "NONE";
41
- };
42
- /**
43
- * @public
44
- */
45
- export type CompressionType = (typeof CompressionType)[keyof typeof CompressionType];
46
35
  /**
47
36
  * <p>Contains information about algorithm scripts used for the Amazon Braket hybrid job.</p>
48
37
  * @public
@@ -80,17 +69,6 @@ export interface AlgorithmSpecification {
80
69
  */
81
70
  containerImage?: ContainerImage | undefined;
82
71
  }
83
- /**
84
- * @public
85
- * @enum
86
- */
87
- export declare const AssociationType: {
88
- readonly RESERVATION_TIME_WINDOW_ARN: "RESERVATION_TIME_WINDOW_ARN";
89
- };
90
- /**
91
- * @public
92
- */
93
- export type AssociationType = (typeof AssociationType)[keyof typeof AssociationType];
94
72
  /**
95
73
  * <p>The Amazon Braket resource and the association type.</p>
96
74
  * @public
@@ -117,30 +95,6 @@ export interface GetDeviceRequest {
117
95
  */
118
96
  deviceArn: string | undefined;
119
97
  }
120
- /**
121
- * @public
122
- * @enum
123
- */
124
- export declare const QueueName: {
125
- readonly JOBS_QUEUE: "JOBS_QUEUE";
126
- readonly QUANTUM_TASKS_QUEUE: "QUANTUM_TASKS_QUEUE";
127
- };
128
- /**
129
- * @public
130
- */
131
- export type QueueName = (typeof QueueName)[keyof typeof QueueName];
132
- /**
133
- * @public
134
- * @enum
135
- */
136
- export declare const QueuePriority: {
137
- readonly NORMAL: "Normal";
138
- readonly PRIORITY: "Priority";
139
- };
140
- /**
141
- * @public
142
- */
143
- export type QueuePriority = (typeof QueuePriority)[keyof typeof QueuePriority];
144
98
  /**
145
99
  * <p>Information about quantum tasks and hybrid jobs queued on a device.</p>
146
100
  * @public
@@ -162,31 +116,6 @@ export interface DeviceQueueInfo {
162
116
  */
163
117
  queuePriority?: QueuePriority | undefined;
164
118
  }
165
- /**
166
- * @public
167
- * @enum
168
- */
169
- export declare const DeviceStatus: {
170
- readonly OFFLINE: "OFFLINE";
171
- readonly ONLINE: "ONLINE";
172
- readonly RETIRED: "RETIRED";
173
- };
174
- /**
175
- * @public
176
- */
177
- export type DeviceStatus = (typeof DeviceStatus)[keyof typeof DeviceStatus];
178
- /**
179
- * @public
180
- * @enum
181
- */
182
- export declare const DeviceType: {
183
- readonly QPU: "QPU";
184
- readonly SIMULATOR: "SIMULATOR";
185
- };
186
- /**
187
- * @public
188
- */
189
- export type DeviceType = (typeof DeviceType)[keyof typeof DeviceType];
190
119
  /**
191
120
  * @public
192
121
  */
@@ -248,17 +177,6 @@ export interface ProgramSetValidationFailure {
248
177
  */
249
178
  errors?: string[] | undefined;
250
179
  }
251
- /**
252
- * @public
253
- * @enum
254
- */
255
- export declare const ValidationExceptionReason: {
256
- readonly PROGRAM_SET_VALIDATION_FAILED: "ProgramSetValidationFailed";
257
- };
258
- /**
259
- * @public
260
- */
261
- export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
262
180
  /**
263
181
  * <p>The filter used to search for devices.</p>
264
182
  * @public
@@ -351,18 +269,6 @@ export interface CancelJobRequest {
351
269
  */
352
270
  jobArn: string | undefined;
353
271
  }
354
- /**
355
- * @public
356
- * @enum
357
- */
358
- export declare const CancellationStatus: {
359
- readonly CANCELLED: "CANCELLED";
360
- readonly CANCELLING: "CANCELLING";
361
- };
362
- /**
363
- * @public
364
- */
365
- export type CancellationStatus = (typeof CancellationStatus)[keyof typeof CancellationStatus];
366
272
  /**
367
273
  * @public
368
274
  */
@@ -448,55 +354,6 @@ export interface InputFileConfig {
448
354
  */
449
355
  dataSource: DataSource | undefined;
450
356
  }
451
- /**
452
- * @public
453
- * @enum
454
- */
455
- export declare const _InstanceType: {
456
- readonly ML_C4_2XLARGE: "ml.c4.2xlarge";
457
- readonly ML_C4_4XLARGE: "ml.c4.4xlarge";
458
- readonly ML_C4_8XLARGE: "ml.c4.8xlarge";
459
- readonly ML_C4_XLARGE: "ml.c4.xlarge";
460
- readonly ML_C5N_18XLARGE: "ml.c5n.18xlarge";
461
- readonly ML_C5N_2XLARGE: "ml.c5n.2xlarge";
462
- readonly ML_C5N_4XLARGE: "ml.c5n.4xlarge";
463
- readonly ML_C5N_9XLARGE: "ml.c5n.9xlarge";
464
- readonly ML_C5N_XLARGE: "ml.c5n.xlarge";
465
- readonly ML_C5_18XLARGE: "ml.c5.18xlarge";
466
- readonly ML_C5_2XLARGE: "ml.c5.2xlarge";
467
- readonly ML_C5_4XLARGE: "ml.c5.4xlarge";
468
- readonly ML_C5_9XLARGE: "ml.c5.9xlarge";
469
- readonly ML_C5_XLARGE: "ml.c5.xlarge";
470
- readonly ML_G4DN_12XLARGE: "ml.g4dn.12xlarge";
471
- readonly ML_G4DN_16XLARGE: "ml.g4dn.16xlarge";
472
- readonly ML_G4DN_2XLARGE: "ml.g4dn.2xlarge";
473
- readonly ML_G4DN_4XLARGE: "ml.g4dn.4xlarge";
474
- readonly ML_G4DN_8XLARGE: "ml.g4dn.8xlarge";
475
- readonly ML_G4DN_XLARGE: "ml.g4dn.xlarge";
476
- readonly ML_M4_10XLARGE: "ml.m4.10xlarge";
477
- readonly ML_M4_16XLARGE: "ml.m4.16xlarge";
478
- readonly ML_M4_2XLARGE: "ml.m4.2xlarge";
479
- readonly ML_M4_4XLARGE: "ml.m4.4xlarge";
480
- readonly ML_M4_XLARGE: "ml.m4.xlarge";
481
- readonly ML_M5_12XLARGE: "ml.m5.12xlarge";
482
- readonly ML_M5_24XLARGE: "ml.m5.24xlarge";
483
- readonly ML_M5_2XLARGE: "ml.m5.2xlarge";
484
- readonly ML_M5_4XLARGE: "ml.m5.4xlarge";
485
- readonly ML_M5_LARGE: "ml.m5.large";
486
- readonly ML_M5_XLARGE: "ml.m5.xlarge";
487
- readonly ML_P2_16XLARGE: "ml.p2.16xlarge";
488
- readonly ML_P2_8XLARGE: "ml.p2.8xlarge";
489
- readonly ML_P2_XLARGE: "ml.p2.xlarge";
490
- readonly ML_P3DN_24XLARGE: "ml.p3dn.24xlarge";
491
- readonly ML_P3_16XLARGE: "ml.p3.16xlarge";
492
- readonly ML_P3_2XLARGE: "ml.p3.2xlarge";
493
- readonly ML_P3_8XLARGE: "ml.p3.8xlarge";
494
- readonly ML_P4D_24XLARGE: "ml.p4d.24xlarge";
495
- };
496
- /**
497
- * @public
498
- */
499
- export type _InstanceType = (typeof _InstanceType)[keyof typeof _InstanceType];
500
357
  /**
501
358
  * <p>Configures the resource instances to use while running the Amazon Braket hybrid job on Amazon Braket.</p>
502
359
  * @public
@@ -625,17 +482,6 @@ export interface CreateJobResponse {
625
482
  */
626
483
  jobArn: string | undefined;
627
484
  }
628
- /**
629
- * @public
630
- * @enum
631
- */
632
- export declare const HybridJobAdditionalAttributeName: {
633
- readonly QUEUE_INFO: "QueueInfo";
634
- };
635
- /**
636
- * @public
637
- */
638
- export type HybridJobAdditionalAttributeName = (typeof HybridJobAdditionalAttributeName)[keyof typeof HybridJobAdditionalAttributeName];
639
485
  /**
640
486
  * @public
641
487
  */
@@ -651,27 +497,6 @@ export interface GetJobRequest {
651
497
  */
652
498
  additionalAttributeNames?: HybridJobAdditionalAttributeName[] | undefined;
653
499
  }
654
- /**
655
- * @public
656
- * @enum
657
- */
658
- export declare const JobEventType: {
659
- readonly CANCELLED: "CANCELLED";
660
- readonly COMPLETED: "COMPLETED";
661
- readonly DEPRIORITIZED_DUE_TO_INACTIVITY: "DEPRIORITIZED_DUE_TO_INACTIVITY";
662
- readonly DOWNLOADING_DATA: "DOWNLOADING_DATA";
663
- readonly FAILED: "FAILED";
664
- readonly MAX_RUNTIME_EXCEEDED: "MAX_RUNTIME_EXCEEDED";
665
- readonly QUEUED_FOR_EXECUTION: "QUEUED_FOR_EXECUTION";
666
- readonly RUNNING: "RUNNING";
667
- readonly STARTING_INSTANCE: "STARTING_INSTANCE";
668
- readonly UPLOADING_RESULTS: "UPLOADING_RESULTS";
669
- readonly WAITING_FOR_PRIORITY: "WAITING_FOR_PRIORITY";
670
- };
671
- /**
672
- * @public
673
- */
674
- export type JobEventType = (typeof JobEventType)[keyof typeof JobEventType];
675
500
  /**
676
501
  * <p>Details about the type and time events that occurred related to the Amazon Braket hybrid job.</p>
677
502
  * @public
@@ -714,22 +539,6 @@ export interface HybridJobQueueInfo {
714
539
  */
715
540
  message?: string | undefined;
716
541
  }
717
- /**
718
- * @public
719
- * @enum
720
- */
721
- export declare const JobPrimaryStatus: {
722
- readonly CANCELLED: "CANCELLED";
723
- readonly CANCELLING: "CANCELLING";
724
- readonly COMPLETED: "COMPLETED";
725
- readonly FAILED: "FAILED";
726
- readonly QUEUED: "QUEUED";
727
- readonly RUNNING: "RUNNING";
728
- };
729
- /**
730
- * @public
731
- */
732
- export type JobPrimaryStatus = (typeof JobPrimaryStatus)[keyof typeof JobPrimaryStatus];
733
542
  /**
734
543
  * @public
735
544
  */
@@ -840,23 +649,6 @@ export interface GetJobResponse {
840
649
  */
841
650
  associations?: Association[] | undefined;
842
651
  }
843
- /**
844
- * @public
845
- * @enum
846
- */
847
- export declare const SearchJobsFilterOperator: {
848
- readonly BETWEEN: "BETWEEN";
849
- readonly CONTAINS: "CONTAINS";
850
- readonly EQUAL: "EQUAL";
851
- readonly GT: "GT";
852
- readonly GTE: "GTE";
853
- readonly LT: "LT";
854
- readonly LTE: "LTE";
855
- };
856
- /**
857
- * @public
858
- */
859
- export type SearchJobsFilterOperator = (typeof SearchJobsFilterOperator)[keyof typeof SearchJobsFilterOperator];
860
652
  /**
861
653
  * <p>A filter used to search for Amazon Braket hybrid jobs.</p>
862
654
  * @public
@@ -1009,18 +801,6 @@ export interface CancelQuantumTaskResponse {
1009
801
  */
1010
802
  cancellationStatus: CancellationStatus | undefined;
1011
803
  }
1012
- /**
1013
- * @public
1014
- * @enum
1015
- */
1016
- export declare const ExperimentalCapabilitiesEnablementType: {
1017
- readonly ALL: "ALL";
1018
- readonly NONE: "NONE";
1019
- };
1020
- /**
1021
- * @public
1022
- */
1023
- export type ExperimentalCapabilitiesEnablementType = (typeof ExperimentalCapabilitiesEnablementType)[keyof typeof ExperimentalCapabilitiesEnablementType];
1024
804
  /**
1025
805
  * <p>Enabled experimental capabilities for quantum hardware. Note that the use of these features may impact device capabilities and performance beyond its standard specifications.</p>
1026
806
  * @public
@@ -1124,17 +904,6 @@ export interface CreateQuantumTaskResponse {
1124
904
  */
1125
905
  quantumTaskArn: string | undefined;
1126
906
  }
1127
- /**
1128
- * @public
1129
- * @enum
1130
- */
1131
- export declare const QuantumTaskAdditionalAttributeName: {
1132
- readonly QUEUE_INFO: "QueueInfo";
1133
- };
1134
- /**
1135
- * @public
1136
- */
1137
- export type QuantumTaskAdditionalAttributeName = (typeof QuantumTaskAdditionalAttributeName)[keyof typeof QuantumTaskAdditionalAttributeName];
1138
907
  /**
1139
908
  * @public
1140
909
  */
@@ -1176,23 +945,6 @@ export interface QuantumTaskQueueInfo {
1176
945
  */
1177
946
  message?: string | undefined;
1178
947
  }
1179
- /**
1180
- * @public
1181
- * @enum
1182
- */
1183
- export declare const QuantumTaskStatus: {
1184
- readonly CANCELLED: "CANCELLED";
1185
- readonly CANCELLING: "CANCELLING";
1186
- readonly COMPLETED: "COMPLETED";
1187
- readonly CREATED: "CREATED";
1188
- readonly FAILED: "FAILED";
1189
- readonly QUEUED: "QUEUED";
1190
- readonly RUNNING: "RUNNING";
1191
- };
1192
- /**
1193
- * @public
1194
- */
1195
- export type QuantumTaskStatus = (typeof QuantumTaskStatus)[keyof typeof QuantumTaskStatus];
1196
948
  /**
1197
949
  * @public
1198
950
  */
@@ -1283,22 +1035,6 @@ export interface GetQuantumTaskResponse {
1283
1035
  */
1284
1036
  experimentalCapabilities?: ExperimentalCapabilities | undefined;
1285
1037
  }
1286
- /**
1287
- * @public
1288
- * @enum
1289
- */
1290
- export declare const SearchQuantumTasksFilterOperator: {
1291
- readonly BETWEEN: "BETWEEN";
1292
- readonly EQUAL: "EQUAL";
1293
- readonly GT: "GT";
1294
- readonly GTE: "GTE";
1295
- readonly LT: "LT";
1296
- readonly LTE: "LTE";
1297
- };
1298
- /**
1299
- * @public
1300
- */
1301
- export type SearchQuantumTasksFilterOperator = (typeof SearchQuantumTasksFilterOperator)[keyof typeof SearchQuantumTasksFilterOperator];
1302
1038
  /**
1303
1039
  * <p>A filter used to search for quantum tasks.</p>
1304
1040
  * @public
@@ -1477,17 +1213,6 @@ export interface DeleteSpendingLimitRequest {
1477
1213
  */
1478
1214
  export interface DeleteSpendingLimitResponse {
1479
1215
  }
1480
- /**
1481
- * @public
1482
- * @enum
1483
- */
1484
- export declare const SearchSpendingLimitsFilterOperator: {
1485
- readonly EQUAL: "EQUAL";
1486
- };
1487
- /**
1488
- * @public
1489
- */
1490
- export type SearchSpendingLimitsFilterOperator = (typeof SearchSpendingLimitsFilterOperator)[keyof typeof SearchSpendingLimitsFilterOperator];
1491
1216
  /**
1492
1217
  * <p>Specifies filter criteria for searching spending limits. Use filters to narrow down results based on specific attributes.</p>
1493
1218
  * @public
@@ -5,6 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { BraketExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
7
  export * from "./pagination";
8
+ export * from "./models/enums";
8
9
  export * from "./models/errors";
9
10
  export * from "./models/models_0";
10
11
  export { BraketServiceException } from "./models/BraketServiceException";