@aws-sdk/client-braket 3.937.0 → 3.939.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,162 @@
1
+ export declare const CompressionType: {
2
+ readonly GZIP: "GZIP";
3
+ readonly NONE: "NONE";
4
+ };
5
+ export type CompressionType =
6
+ (typeof CompressionType)[keyof typeof CompressionType];
7
+ export declare const AssociationType: {
8
+ readonly RESERVATION_TIME_WINDOW_ARN: "RESERVATION_TIME_WINDOW_ARN";
9
+ };
10
+ export type AssociationType =
11
+ (typeof AssociationType)[keyof typeof AssociationType];
12
+ export declare const QueueName: {
13
+ readonly JOBS_QUEUE: "JOBS_QUEUE";
14
+ readonly QUANTUM_TASKS_QUEUE: "QUANTUM_TASKS_QUEUE";
15
+ };
16
+ export type QueueName = (typeof QueueName)[keyof typeof QueueName];
17
+ export declare const QueuePriority: {
18
+ readonly NORMAL: "Normal";
19
+ readonly PRIORITY: "Priority";
20
+ };
21
+ export type QueuePriority = (typeof QueuePriority)[keyof typeof QueuePriority];
22
+ export declare const DeviceStatus: {
23
+ readonly OFFLINE: "OFFLINE";
24
+ readonly ONLINE: "ONLINE";
25
+ readonly RETIRED: "RETIRED";
26
+ };
27
+ export type DeviceStatus = (typeof DeviceStatus)[keyof typeof DeviceStatus];
28
+ export declare const DeviceType: {
29
+ readonly QPU: "QPU";
30
+ readonly SIMULATOR: "SIMULATOR";
31
+ };
32
+ export type DeviceType = (typeof DeviceType)[keyof typeof DeviceType];
33
+ export declare const ValidationExceptionReason: {
34
+ readonly PROGRAM_SET_VALIDATION_FAILED: "ProgramSetValidationFailed";
35
+ };
36
+ export type ValidationExceptionReason =
37
+ (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
38
+ export declare const CancellationStatus: {
39
+ readonly CANCELLED: "CANCELLED";
40
+ readonly CANCELLING: "CANCELLING";
41
+ };
42
+ export type CancellationStatus =
43
+ (typeof CancellationStatus)[keyof typeof CancellationStatus];
44
+ export declare const _InstanceType: {
45
+ readonly ML_C4_2XLARGE: "ml.c4.2xlarge";
46
+ readonly ML_C4_4XLARGE: "ml.c4.4xlarge";
47
+ readonly ML_C4_8XLARGE: "ml.c4.8xlarge";
48
+ readonly ML_C4_XLARGE: "ml.c4.xlarge";
49
+ readonly ML_C5N_18XLARGE: "ml.c5n.18xlarge";
50
+ readonly ML_C5N_2XLARGE: "ml.c5n.2xlarge";
51
+ readonly ML_C5N_4XLARGE: "ml.c5n.4xlarge";
52
+ readonly ML_C5N_9XLARGE: "ml.c5n.9xlarge";
53
+ readonly ML_C5N_XLARGE: "ml.c5n.xlarge";
54
+ readonly ML_C5_18XLARGE: "ml.c5.18xlarge";
55
+ readonly ML_C5_2XLARGE: "ml.c5.2xlarge";
56
+ readonly ML_C5_4XLARGE: "ml.c5.4xlarge";
57
+ readonly ML_C5_9XLARGE: "ml.c5.9xlarge";
58
+ readonly ML_C5_XLARGE: "ml.c5.xlarge";
59
+ readonly ML_G4DN_12XLARGE: "ml.g4dn.12xlarge";
60
+ readonly ML_G4DN_16XLARGE: "ml.g4dn.16xlarge";
61
+ readonly ML_G4DN_2XLARGE: "ml.g4dn.2xlarge";
62
+ readonly ML_G4DN_4XLARGE: "ml.g4dn.4xlarge";
63
+ readonly ML_G4DN_8XLARGE: "ml.g4dn.8xlarge";
64
+ readonly ML_G4DN_XLARGE: "ml.g4dn.xlarge";
65
+ readonly ML_M4_10XLARGE: "ml.m4.10xlarge";
66
+ readonly ML_M4_16XLARGE: "ml.m4.16xlarge";
67
+ readonly ML_M4_2XLARGE: "ml.m4.2xlarge";
68
+ readonly ML_M4_4XLARGE: "ml.m4.4xlarge";
69
+ readonly ML_M4_XLARGE: "ml.m4.xlarge";
70
+ readonly ML_M5_12XLARGE: "ml.m5.12xlarge";
71
+ readonly ML_M5_24XLARGE: "ml.m5.24xlarge";
72
+ readonly ML_M5_2XLARGE: "ml.m5.2xlarge";
73
+ readonly ML_M5_4XLARGE: "ml.m5.4xlarge";
74
+ readonly ML_M5_LARGE: "ml.m5.large";
75
+ readonly ML_M5_XLARGE: "ml.m5.xlarge";
76
+ readonly ML_P2_16XLARGE: "ml.p2.16xlarge";
77
+ readonly ML_P2_8XLARGE: "ml.p2.8xlarge";
78
+ readonly ML_P2_XLARGE: "ml.p2.xlarge";
79
+ readonly ML_P3DN_24XLARGE: "ml.p3dn.24xlarge";
80
+ readonly ML_P3_16XLARGE: "ml.p3.16xlarge";
81
+ readonly ML_P3_2XLARGE: "ml.p3.2xlarge";
82
+ readonly ML_P3_8XLARGE: "ml.p3.8xlarge";
83
+ readonly ML_P4D_24XLARGE: "ml.p4d.24xlarge";
84
+ };
85
+ export type _InstanceType = (typeof _InstanceType)[keyof typeof _InstanceType];
86
+ export declare const HybridJobAdditionalAttributeName: {
87
+ readonly QUEUE_INFO: "QueueInfo";
88
+ };
89
+ export type HybridJobAdditionalAttributeName =
90
+ (typeof HybridJobAdditionalAttributeName)[keyof typeof HybridJobAdditionalAttributeName];
91
+ export declare const JobEventType: {
92
+ readonly CANCELLED: "CANCELLED";
93
+ readonly COMPLETED: "COMPLETED";
94
+ readonly DEPRIORITIZED_DUE_TO_INACTIVITY: "DEPRIORITIZED_DUE_TO_INACTIVITY";
95
+ readonly DOWNLOADING_DATA: "DOWNLOADING_DATA";
96
+ readonly FAILED: "FAILED";
97
+ readonly MAX_RUNTIME_EXCEEDED: "MAX_RUNTIME_EXCEEDED";
98
+ readonly QUEUED_FOR_EXECUTION: "QUEUED_FOR_EXECUTION";
99
+ readonly RUNNING: "RUNNING";
100
+ readonly STARTING_INSTANCE: "STARTING_INSTANCE";
101
+ readonly UPLOADING_RESULTS: "UPLOADING_RESULTS";
102
+ readonly WAITING_FOR_PRIORITY: "WAITING_FOR_PRIORITY";
103
+ };
104
+ export type JobEventType = (typeof JobEventType)[keyof typeof JobEventType];
105
+ export declare const JobPrimaryStatus: {
106
+ readonly CANCELLED: "CANCELLED";
107
+ readonly CANCELLING: "CANCELLING";
108
+ readonly COMPLETED: "COMPLETED";
109
+ readonly FAILED: "FAILED";
110
+ readonly QUEUED: "QUEUED";
111
+ readonly RUNNING: "RUNNING";
112
+ };
113
+ export type JobPrimaryStatus =
114
+ (typeof JobPrimaryStatus)[keyof typeof JobPrimaryStatus];
115
+ export declare const SearchJobsFilterOperator: {
116
+ readonly BETWEEN: "BETWEEN";
117
+ readonly CONTAINS: "CONTAINS";
118
+ readonly EQUAL: "EQUAL";
119
+ readonly GT: "GT";
120
+ readonly GTE: "GTE";
121
+ readonly LT: "LT";
122
+ readonly LTE: "LTE";
123
+ };
124
+ export type SearchJobsFilterOperator =
125
+ (typeof SearchJobsFilterOperator)[keyof typeof SearchJobsFilterOperator];
126
+ export declare const ExperimentalCapabilitiesEnablementType: {
127
+ readonly ALL: "ALL";
128
+ readonly NONE: "NONE";
129
+ };
130
+ export type ExperimentalCapabilitiesEnablementType =
131
+ (typeof ExperimentalCapabilitiesEnablementType)[keyof typeof ExperimentalCapabilitiesEnablementType];
132
+ export declare const QuantumTaskAdditionalAttributeName: {
133
+ readonly QUEUE_INFO: "QueueInfo";
134
+ };
135
+ export type QuantumTaskAdditionalAttributeName =
136
+ (typeof QuantumTaskAdditionalAttributeName)[keyof typeof QuantumTaskAdditionalAttributeName];
137
+ export declare const QuantumTaskStatus: {
138
+ readonly CANCELLED: "CANCELLED";
139
+ readonly CANCELLING: "CANCELLING";
140
+ readonly COMPLETED: "COMPLETED";
141
+ readonly CREATED: "CREATED";
142
+ readonly FAILED: "FAILED";
143
+ readonly QUEUED: "QUEUED";
144
+ readonly RUNNING: "RUNNING";
145
+ };
146
+ export type QuantumTaskStatus =
147
+ (typeof QuantumTaskStatus)[keyof typeof QuantumTaskStatus];
148
+ export declare const SearchQuantumTasksFilterOperator: {
149
+ readonly BETWEEN: "BETWEEN";
150
+ readonly EQUAL: "EQUAL";
151
+ readonly GT: "GT";
152
+ readonly GTE: "GTE";
153
+ readonly LT: "LT";
154
+ readonly LTE: "LTE";
155
+ };
156
+ export type SearchQuantumTasksFilterOperator =
157
+ (typeof SearchQuantumTasksFilterOperator)[keyof typeof SearchQuantumTasksFilterOperator];
158
+ export declare const SearchSpendingLimitsFilterOperator: {
159
+ readonly EQUAL: "EQUAL";
160
+ };
161
+ export type SearchSpendingLimitsFilterOperator =
162
+ (typeof SearchSpendingLimitsFilterOperator)[keyof typeof SearchSpendingLimitsFilterOperator];
@@ -1,9 +1,7 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { BraketServiceException as __BaseException } from "./BraketServiceException";
3
- import {
4
- ProgramSetValidationFailure,
5
- ValidationExceptionReason,
6
- } from "./models_0";
3
+ import { ValidationExceptionReason } from "./enums";
4
+ import { ProgramSetValidationFailure } from "./models_0";
7
5
  export declare class AccessDeniedException extends __BaseException {
8
6
  readonly name: "AccessDeniedException";
9
7
  readonly $fault: "client";
@@ -1,4 +1,23 @@
1
1
  import { AutomaticJsonStringConversion as __AutomaticJsonStringConversion } from "@smithy/smithy-client";
2
+ import {
3
+ _InstanceType,
4
+ AssociationType,
5
+ CancellationStatus,
6
+ CompressionType,
7
+ DeviceStatus,
8
+ DeviceType,
9
+ ExperimentalCapabilitiesEnablementType,
10
+ HybridJobAdditionalAttributeName,
11
+ JobEventType,
12
+ JobPrimaryStatus,
13
+ QuantumTaskAdditionalAttributeName,
14
+ QuantumTaskStatus,
15
+ QueueName,
16
+ QueuePriority,
17
+ SearchJobsFilterOperator,
18
+ SearchQuantumTasksFilterOperator,
19
+ SearchSpendingLimitsFilterOperator,
20
+ } from "./enums";
2
21
  export interface ActionMetadata {
3
22
  actionType: string | undefined;
4
23
  programCount?: number | undefined;
@@ -7,12 +26,6 @@ export interface ActionMetadata {
7
26
  export interface ContainerImage {
8
27
  uri: string | undefined;
9
28
  }
10
- export declare const CompressionType: {
11
- readonly GZIP: "GZIP";
12
- readonly NONE: "NONE";
13
- };
14
- export type CompressionType =
15
- (typeof CompressionType)[keyof typeof CompressionType];
16
29
  export interface ScriptModeConfig {
17
30
  entryPoint: string | undefined;
18
31
  s3Uri: string | undefined;
@@ -22,11 +35,6 @@ export interface AlgorithmSpecification {
22
35
  scriptModeConfig?: ScriptModeConfig | undefined;
23
36
  containerImage?: ContainerImage | undefined;
24
37
  }
25
- export declare const AssociationType: {
26
- readonly RESERVATION_TIME_WINDOW_ARN: "RESERVATION_TIME_WINDOW_ARN";
27
- };
28
- export type AssociationType =
29
- (typeof AssociationType)[keyof typeof AssociationType];
30
38
  export interface Association {
31
39
  arn: string | undefined;
32
40
  type: AssociationType | undefined;
@@ -34,32 +42,11 @@ export interface Association {
34
42
  export interface GetDeviceRequest {
35
43
  deviceArn: string | undefined;
36
44
  }
37
- export declare const QueueName: {
38
- readonly JOBS_QUEUE: "JOBS_QUEUE";
39
- readonly QUANTUM_TASKS_QUEUE: "QUANTUM_TASKS_QUEUE";
40
- };
41
- export type QueueName = (typeof QueueName)[keyof typeof QueueName];
42
- export declare const QueuePriority: {
43
- readonly NORMAL: "Normal";
44
- readonly PRIORITY: "Priority";
45
- };
46
- export type QueuePriority = (typeof QueuePriority)[keyof typeof QueuePriority];
47
45
  export interface DeviceQueueInfo {
48
46
  queue: QueueName | undefined;
49
47
  queueSize: string | undefined;
50
48
  queuePriority?: QueuePriority | undefined;
51
49
  }
52
- export declare const DeviceStatus: {
53
- readonly OFFLINE: "OFFLINE";
54
- readonly ONLINE: "ONLINE";
55
- readonly RETIRED: "RETIRED";
56
- };
57
- export type DeviceStatus = (typeof DeviceStatus)[keyof typeof DeviceStatus];
58
- export declare const DeviceType: {
59
- readonly QPU: "QPU";
60
- readonly SIMULATOR: "SIMULATOR";
61
- };
62
- export type DeviceType = (typeof DeviceType)[keyof typeof DeviceType];
63
50
  export interface GetDeviceResponse {
64
51
  deviceArn: string | undefined;
65
52
  deviceName: string | undefined;
@@ -74,11 +61,6 @@ export interface ProgramSetValidationFailure {
74
61
  inputsIndex?: number | undefined;
75
62
  errors?: string[] | undefined;
76
63
  }
77
- export declare const ValidationExceptionReason: {
78
- readonly PROGRAM_SET_VALIDATION_FAILED: "ProgramSetValidationFailed";
79
- };
80
- export type ValidationExceptionReason =
81
- (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
82
64
  export interface SearchDevicesFilter {
83
65
  name: string | undefined;
84
66
  values: string[] | undefined;
@@ -102,12 +84,6 @@ export interface SearchDevicesResponse {
102
84
  export interface CancelJobRequest {
103
85
  jobArn: string | undefined;
104
86
  }
105
- export declare const CancellationStatus: {
106
- readonly CANCELLED: "CANCELLED";
107
- readonly CANCELLING: "CANCELLING";
108
- };
109
- export type CancellationStatus =
110
- (typeof CancellationStatus)[keyof typeof CancellationStatus];
111
87
  export interface CancelJobResponse {
112
88
  jobArn: string | undefined;
113
89
  cancellationStatus: CancellationStatus | undefined;
@@ -130,48 +106,6 @@ export interface InputFileConfig {
130
106
  contentType?: string | undefined;
131
107
  dataSource: DataSource | undefined;
132
108
  }
133
- export declare const _InstanceType: {
134
- readonly ML_C4_2XLARGE: "ml.c4.2xlarge";
135
- readonly ML_C4_4XLARGE: "ml.c4.4xlarge";
136
- readonly ML_C4_8XLARGE: "ml.c4.8xlarge";
137
- readonly ML_C4_XLARGE: "ml.c4.xlarge";
138
- readonly ML_C5N_18XLARGE: "ml.c5n.18xlarge";
139
- readonly ML_C5N_2XLARGE: "ml.c5n.2xlarge";
140
- readonly ML_C5N_4XLARGE: "ml.c5n.4xlarge";
141
- readonly ML_C5N_9XLARGE: "ml.c5n.9xlarge";
142
- readonly ML_C5N_XLARGE: "ml.c5n.xlarge";
143
- readonly ML_C5_18XLARGE: "ml.c5.18xlarge";
144
- readonly ML_C5_2XLARGE: "ml.c5.2xlarge";
145
- readonly ML_C5_4XLARGE: "ml.c5.4xlarge";
146
- readonly ML_C5_9XLARGE: "ml.c5.9xlarge";
147
- readonly ML_C5_XLARGE: "ml.c5.xlarge";
148
- readonly ML_G4DN_12XLARGE: "ml.g4dn.12xlarge";
149
- readonly ML_G4DN_16XLARGE: "ml.g4dn.16xlarge";
150
- readonly ML_G4DN_2XLARGE: "ml.g4dn.2xlarge";
151
- readonly ML_G4DN_4XLARGE: "ml.g4dn.4xlarge";
152
- readonly ML_G4DN_8XLARGE: "ml.g4dn.8xlarge";
153
- readonly ML_G4DN_XLARGE: "ml.g4dn.xlarge";
154
- readonly ML_M4_10XLARGE: "ml.m4.10xlarge";
155
- readonly ML_M4_16XLARGE: "ml.m4.16xlarge";
156
- readonly ML_M4_2XLARGE: "ml.m4.2xlarge";
157
- readonly ML_M4_4XLARGE: "ml.m4.4xlarge";
158
- readonly ML_M4_XLARGE: "ml.m4.xlarge";
159
- readonly ML_M5_12XLARGE: "ml.m5.12xlarge";
160
- readonly ML_M5_24XLARGE: "ml.m5.24xlarge";
161
- readonly ML_M5_2XLARGE: "ml.m5.2xlarge";
162
- readonly ML_M5_4XLARGE: "ml.m5.4xlarge";
163
- readonly ML_M5_LARGE: "ml.m5.large";
164
- readonly ML_M5_XLARGE: "ml.m5.xlarge";
165
- readonly ML_P2_16XLARGE: "ml.p2.16xlarge";
166
- readonly ML_P2_8XLARGE: "ml.p2.8xlarge";
167
- readonly ML_P2_XLARGE: "ml.p2.xlarge";
168
- readonly ML_P3DN_24XLARGE: "ml.p3dn.24xlarge";
169
- readonly ML_P3_16XLARGE: "ml.p3.16xlarge";
170
- readonly ML_P3_2XLARGE: "ml.p3.2xlarge";
171
- readonly ML_P3_8XLARGE: "ml.p3.8xlarge";
172
- readonly ML_P4D_24XLARGE: "ml.p4d.24xlarge";
173
- };
174
- export type _InstanceType = (typeof _InstanceType)[keyof typeof _InstanceType];
175
109
  export interface InstanceConfig {
176
110
  instanceType: _InstanceType | undefined;
177
111
  volumeSizeInGb: number | undefined;
@@ -202,29 +136,10 @@ export interface CreateJobRequest {
202
136
  export interface CreateJobResponse {
203
137
  jobArn: string | undefined;
204
138
  }
205
- export declare const HybridJobAdditionalAttributeName: {
206
- readonly QUEUE_INFO: "QueueInfo";
207
- };
208
- export type HybridJobAdditionalAttributeName =
209
- (typeof HybridJobAdditionalAttributeName)[keyof typeof HybridJobAdditionalAttributeName];
210
139
  export interface GetJobRequest {
211
140
  jobArn: string | undefined;
212
141
  additionalAttributeNames?: HybridJobAdditionalAttributeName[] | undefined;
213
142
  }
214
- export declare const JobEventType: {
215
- readonly CANCELLED: "CANCELLED";
216
- readonly COMPLETED: "COMPLETED";
217
- readonly DEPRIORITIZED_DUE_TO_INACTIVITY: "DEPRIORITIZED_DUE_TO_INACTIVITY";
218
- readonly DOWNLOADING_DATA: "DOWNLOADING_DATA";
219
- readonly FAILED: "FAILED";
220
- readonly MAX_RUNTIME_EXCEEDED: "MAX_RUNTIME_EXCEEDED";
221
- readonly QUEUED_FOR_EXECUTION: "QUEUED_FOR_EXECUTION";
222
- readonly RUNNING: "RUNNING";
223
- readonly STARTING_INSTANCE: "STARTING_INSTANCE";
224
- readonly UPLOADING_RESULTS: "UPLOADING_RESULTS";
225
- readonly WAITING_FOR_PRIORITY: "WAITING_FOR_PRIORITY";
226
- };
227
- export type JobEventType = (typeof JobEventType)[keyof typeof JobEventType];
228
143
  export interface JobEventDetails {
229
144
  eventType?: JobEventType | undefined;
230
145
  timeOfEvent?: Date | undefined;
@@ -235,16 +150,6 @@ export interface HybridJobQueueInfo {
235
150
  position: string | undefined;
236
151
  message?: string | undefined;
237
152
  }
238
- export declare const JobPrimaryStatus: {
239
- readonly CANCELLED: "CANCELLED";
240
- readonly CANCELLING: "CANCELLING";
241
- readonly COMPLETED: "COMPLETED";
242
- readonly FAILED: "FAILED";
243
- readonly QUEUED: "QUEUED";
244
- readonly RUNNING: "RUNNING";
245
- };
246
- export type JobPrimaryStatus =
247
- (typeof JobPrimaryStatus)[keyof typeof JobPrimaryStatus];
248
153
  export interface GetJobResponse {
249
154
  status: JobPrimaryStatus | undefined;
250
155
  jobArn: string | undefined;
@@ -268,17 +173,6 @@ export interface GetJobResponse {
268
173
  queueInfo?: HybridJobQueueInfo | undefined;
269
174
  associations?: Association[] | undefined;
270
175
  }
271
- export declare const SearchJobsFilterOperator: {
272
- readonly BETWEEN: "BETWEEN";
273
- readonly CONTAINS: "CONTAINS";
274
- readonly EQUAL: "EQUAL";
275
- readonly GT: "GT";
276
- readonly GTE: "GTE";
277
- readonly LT: "LT";
278
- readonly LTE: "LTE";
279
- };
280
- export type SearchJobsFilterOperator =
281
- (typeof SearchJobsFilterOperator)[keyof typeof SearchJobsFilterOperator];
282
176
  export interface SearchJobsFilter {
283
177
  name: string | undefined;
284
178
  values: string[] | undefined;
@@ -317,12 +211,6 @@ export interface CancelQuantumTaskResponse {
317
211
  quantumTaskArn: string | undefined;
318
212
  cancellationStatus: CancellationStatus | undefined;
319
213
  }
320
- export declare const ExperimentalCapabilitiesEnablementType: {
321
- readonly ALL: "ALL";
322
- readonly NONE: "NONE";
323
- };
324
- export type ExperimentalCapabilitiesEnablementType =
325
- (typeof ExperimentalCapabilitiesEnablementType)[keyof typeof ExperimentalCapabilitiesEnablementType];
326
214
  export type ExperimentalCapabilities =
327
215
  | ExperimentalCapabilities.EnabledMember
328
216
  | ExperimentalCapabilities.$UnknownMember;
@@ -356,11 +244,6 @@ export interface CreateQuantumTaskRequest {
356
244
  export interface CreateQuantumTaskResponse {
357
245
  quantumTaskArn: string | undefined;
358
246
  }
359
- export declare const QuantumTaskAdditionalAttributeName: {
360
- readonly QUEUE_INFO: "QueueInfo";
361
- };
362
- export type QuantumTaskAdditionalAttributeName =
363
- (typeof QuantumTaskAdditionalAttributeName)[keyof typeof QuantumTaskAdditionalAttributeName];
364
247
  export interface GetQuantumTaskRequest {
365
248
  quantumTaskArn: string | undefined;
366
249
  additionalAttributeNames?: QuantumTaskAdditionalAttributeName[] | undefined;
@@ -371,17 +254,6 @@ export interface QuantumTaskQueueInfo {
371
254
  queuePriority?: QueuePriority | undefined;
372
255
  message?: string | undefined;
373
256
  }
374
- export declare const QuantumTaskStatus: {
375
- readonly CANCELLED: "CANCELLED";
376
- readonly CANCELLING: "CANCELLING";
377
- readonly COMPLETED: "COMPLETED";
378
- readonly CREATED: "CREATED";
379
- readonly FAILED: "FAILED";
380
- readonly QUEUED: "QUEUED";
381
- readonly RUNNING: "RUNNING";
382
- };
383
- export type QuantumTaskStatus =
384
- (typeof QuantumTaskStatus)[keyof typeof QuantumTaskStatus];
385
257
  export interface GetQuantumTaskResponse {
386
258
  quantumTaskArn: string | undefined;
387
259
  status: QuantumTaskStatus | undefined;
@@ -401,16 +273,6 @@ export interface GetQuantumTaskResponse {
401
273
  actionMetadata?: ActionMetadata | undefined;
402
274
  experimentalCapabilities?: ExperimentalCapabilities | undefined;
403
275
  }
404
- export declare const SearchQuantumTasksFilterOperator: {
405
- readonly BETWEEN: "BETWEEN";
406
- readonly EQUAL: "EQUAL";
407
- readonly GT: "GT";
408
- readonly GTE: "GTE";
409
- readonly LT: "LT";
410
- readonly LTE: "LTE";
411
- };
412
- export type SearchQuantumTasksFilterOperator =
413
- (typeof SearchQuantumTasksFilterOperator)[keyof typeof SearchQuantumTasksFilterOperator];
414
276
  export interface SearchQuantumTasksFilter {
415
277
  name: string | undefined;
416
278
  values: string[] | undefined;
@@ -454,11 +316,6 @@ export interface DeleteSpendingLimitRequest {
454
316
  spendingLimitArn: string | undefined;
455
317
  }
456
318
  export interface DeleteSpendingLimitResponse {}
457
- export declare const SearchSpendingLimitsFilterOperator: {
458
- readonly EQUAL: "EQUAL";
459
- };
460
- export type SearchSpendingLimitsFilterOperator =
461
- (typeof SearchSpendingLimitsFilterOperator)[keyof typeof SearchSpendingLimitsFilterOperator];
462
319
  export interface SearchSpendingLimitsFilter {
463
320
  name: string | undefined;
464
321
  values: string[] | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-braket",
3
3
  "description": "AWS SDK for JavaScript Braket Client for Node.js, Browser and React Native",
4
- "version": "3.937.0",
4
+ "version": "3.939.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-braket",
@@ -21,7 +21,7 @@
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
23
  "@aws-sdk/core": "3.936.0",
24
- "@aws-sdk/credential-provider-node": "3.936.0",
24
+ "@aws-sdk/credential-provider-node": "3.939.0",
25
25
  "@aws-sdk/middleware-host-header": "3.936.0",
26
26
  "@aws-sdk/middleware-logger": "3.936.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.936.0",