@aws-sdk/client-braket 3.296.0 → 3.297.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.
- package/dist-types/Braket.d.ts +14 -0
- package/dist-types/BraketClient.d.ts +24 -4
- package/dist-types/commands/CancelJobCommand.d.ts +16 -0
- package/dist-types/commands/CancelQuantumTaskCommand.d.ts +16 -0
- package/dist-types/commands/CreateJobCommand.d.ts +16 -0
- package/dist-types/commands/CreateQuantumTaskCommand.d.ts +16 -0
- package/dist-types/commands/GetDeviceCommand.d.ts +16 -0
- package/dist-types/commands/GetJobCommand.d.ts +16 -0
- package/dist-types/commands/GetQuantumTaskCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/SearchDevicesCommand.d.ts +16 -0
- package/dist-types/commands/SearchJobsCommand.d.ts +16 -0
- package/dist-types/commands/SearchQuantumTasksCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/models/BraketServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +135 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/SearchDevicesPaginator.d.ts +3 -0
- package/dist-types/pagination/SearchJobsPaginator.d.ts +3 -0
- package/dist-types/pagination/SearchQuantumTasksPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType, LazyJsonString as __LazyJsonString } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { BraketServiceException as __BaseException } from "./BraketServiceException";
|
|
3
3
|
/**
|
|
4
|
+
* @public
|
|
4
5
|
* <p>You do not have sufficient access to perform this action.</p>
|
|
5
6
|
*/
|
|
6
7
|
export declare class AccessDeniedException extends __BaseException {
|
|
@@ -12,6 +13,7 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
12
13
|
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
13
14
|
}
|
|
14
15
|
/**
|
|
16
|
+
* @public
|
|
15
17
|
* <p>The container image used to create an Amazon Braket job.</p>
|
|
16
18
|
*/
|
|
17
19
|
export interface ContainerImage {
|
|
@@ -20,11 +22,15 @@ export interface ContainerImage {
|
|
|
20
22
|
*/
|
|
21
23
|
uri: string | undefined;
|
|
22
24
|
}
|
|
25
|
+
/**
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
23
28
|
export declare enum CompressionType {
|
|
24
29
|
GZIP = "GZIP",
|
|
25
30
|
NONE = "NONE"
|
|
26
31
|
}
|
|
27
32
|
/**
|
|
33
|
+
* @public
|
|
28
34
|
* <p>Contains information about the Python scripts used for entry and by an Amazon Braket
|
|
29
35
|
* job.</p>
|
|
30
36
|
*/
|
|
@@ -45,6 +51,7 @@ export interface ScriptModeConfig {
|
|
|
45
51
|
compressionType?: CompressionType | string;
|
|
46
52
|
}
|
|
47
53
|
/**
|
|
54
|
+
* @public
|
|
48
55
|
* <p>Defines the Amazon Braket job to be created. Specifies the container image the job uses
|
|
49
56
|
* and the paths to the Python scripts used for entry and training.</p>
|
|
50
57
|
*/
|
|
@@ -58,21 +65,33 @@ export interface AlgorithmSpecification {
|
|
|
58
65
|
*/
|
|
59
66
|
containerImage?: ContainerImage;
|
|
60
67
|
}
|
|
68
|
+
/**
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
61
71
|
export interface GetDeviceRequest {
|
|
62
72
|
/**
|
|
63
73
|
* <p>The ARN of the device to retrieve.</p>
|
|
64
74
|
*/
|
|
65
75
|
deviceArn: string | undefined;
|
|
66
76
|
}
|
|
77
|
+
/**
|
|
78
|
+
* @public
|
|
79
|
+
*/
|
|
67
80
|
export declare enum DeviceStatus {
|
|
68
81
|
OFFLINE = "OFFLINE",
|
|
69
82
|
ONLINE = "ONLINE",
|
|
70
83
|
RETIRED = "RETIRED"
|
|
71
84
|
}
|
|
85
|
+
/**
|
|
86
|
+
* @public
|
|
87
|
+
*/
|
|
72
88
|
export declare enum DeviceType {
|
|
73
89
|
QPU = "QPU",
|
|
74
90
|
SIMULATOR = "SIMULATOR"
|
|
75
91
|
}
|
|
92
|
+
/**
|
|
93
|
+
* @public
|
|
94
|
+
*/
|
|
76
95
|
export interface GetDeviceResponse {
|
|
77
96
|
/**
|
|
78
97
|
* <p>The ARN of the device.</p>
|
|
@@ -100,6 +119,7 @@ export interface GetDeviceResponse {
|
|
|
100
119
|
deviceCapabilities: __LazyJsonString | string | undefined;
|
|
101
120
|
}
|
|
102
121
|
/**
|
|
122
|
+
* @public
|
|
103
123
|
* <p>The request processing has failed because of an unknown error, exception, or
|
|
104
124
|
* failure.</p>
|
|
105
125
|
*/
|
|
@@ -112,6 +132,7 @@ export declare class InternalServiceException extends __BaseException {
|
|
|
112
132
|
constructor(opts: __ExceptionOptionType<InternalServiceException, __BaseException>);
|
|
113
133
|
}
|
|
114
134
|
/**
|
|
135
|
+
* @public
|
|
115
136
|
* <p>The specified resource was not found.</p>
|
|
116
137
|
*/
|
|
117
138
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
@@ -123,6 +144,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
123
144
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
124
145
|
}
|
|
125
146
|
/**
|
|
147
|
+
* @public
|
|
126
148
|
* <p>The throttling rate limit is met.</p>
|
|
127
149
|
*/
|
|
128
150
|
export declare class ThrottlingException extends __BaseException {
|
|
@@ -134,6 +156,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
134
156
|
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
135
157
|
}
|
|
136
158
|
/**
|
|
159
|
+
* @public
|
|
137
160
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
138
161
|
*/
|
|
139
162
|
export declare class ValidationException extends __BaseException {
|
|
@@ -145,6 +168,7 @@ export declare class ValidationException extends __BaseException {
|
|
|
145
168
|
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
146
169
|
}
|
|
147
170
|
/**
|
|
171
|
+
* @public
|
|
148
172
|
* <p>The filter to use for searching devices.</p>
|
|
149
173
|
*/
|
|
150
174
|
export interface SearchDevicesFilter {
|
|
@@ -157,6 +181,9 @@ export interface SearchDevicesFilter {
|
|
|
157
181
|
*/
|
|
158
182
|
values: string[] | undefined;
|
|
159
183
|
}
|
|
184
|
+
/**
|
|
185
|
+
* @public
|
|
186
|
+
*/
|
|
160
187
|
export interface SearchDevicesRequest {
|
|
161
188
|
/**
|
|
162
189
|
* <p>A token used for pagination of results returned in the response. Use the token returned
|
|
@@ -173,6 +200,7 @@ export interface SearchDevicesRequest {
|
|
|
173
200
|
filters: SearchDevicesFilter[] | undefined;
|
|
174
201
|
}
|
|
175
202
|
/**
|
|
203
|
+
* @public
|
|
176
204
|
* <p>Includes information about the device.</p>
|
|
177
205
|
*/
|
|
178
206
|
export interface DeviceSummary {
|
|
@@ -197,6 +225,9 @@ export interface DeviceSummary {
|
|
|
197
225
|
*/
|
|
198
226
|
deviceStatus: DeviceStatus | string | undefined;
|
|
199
227
|
}
|
|
228
|
+
/**
|
|
229
|
+
* @public
|
|
230
|
+
*/
|
|
200
231
|
export interface SearchDevicesResponse {
|
|
201
232
|
/**
|
|
202
233
|
* <p>An array of <code>DeviceSummary</code> objects for devices that match the specified
|
|
@@ -210,16 +241,25 @@ export interface SearchDevicesResponse {
|
|
|
210
241
|
*/
|
|
211
242
|
nextToken?: string;
|
|
212
243
|
}
|
|
244
|
+
/**
|
|
245
|
+
* @public
|
|
246
|
+
*/
|
|
213
247
|
export interface CancelJobRequest {
|
|
214
248
|
/**
|
|
215
249
|
* <p>The ARN of the Amazon Braket job to cancel.</p>
|
|
216
250
|
*/
|
|
217
251
|
jobArn: string | undefined;
|
|
218
252
|
}
|
|
253
|
+
/**
|
|
254
|
+
* @public
|
|
255
|
+
*/
|
|
219
256
|
export declare enum CancellationStatus {
|
|
220
257
|
CANCELLED = "CANCELLED",
|
|
221
258
|
CANCELLING = "CANCELLING"
|
|
222
259
|
}
|
|
260
|
+
/**
|
|
261
|
+
* @public
|
|
262
|
+
*/
|
|
223
263
|
export interface CancelJobResponse {
|
|
224
264
|
/**
|
|
225
265
|
* <p>The ARN of the Amazon Braket job.</p>
|
|
@@ -231,6 +271,7 @@ export interface CancelJobResponse {
|
|
|
231
271
|
cancellationStatus: CancellationStatus | string | undefined;
|
|
232
272
|
}
|
|
233
273
|
/**
|
|
274
|
+
* @public
|
|
234
275
|
* <p>An error occurred due to a conflict.</p>
|
|
235
276
|
*/
|
|
236
277
|
export declare class ConflictException extends __BaseException {
|
|
@@ -242,6 +283,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
242
283
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
243
284
|
}
|
|
244
285
|
/**
|
|
286
|
+
* @public
|
|
245
287
|
* <p>Contains information about the output locations for job checkpoint data.</p>
|
|
246
288
|
*/
|
|
247
289
|
export interface JobCheckpointConfig {
|
|
@@ -257,6 +299,7 @@ export interface JobCheckpointConfig {
|
|
|
257
299
|
s3Uri: string | undefined;
|
|
258
300
|
}
|
|
259
301
|
/**
|
|
302
|
+
* @public
|
|
260
303
|
* <p>Configures the quantum processing units (QPUs) or simulator used to create and run an
|
|
261
304
|
* Amazon Braket job.</p>
|
|
262
305
|
*/
|
|
@@ -268,6 +311,7 @@ export interface DeviceConfig {
|
|
|
268
311
|
device: string | undefined;
|
|
269
312
|
}
|
|
270
313
|
/**
|
|
314
|
+
* @public
|
|
271
315
|
* <p>Information about the data stored in Amazon S3 used by the Amazon Braket job.</p>
|
|
272
316
|
*/
|
|
273
317
|
export interface S3DataSource {
|
|
@@ -278,6 +322,7 @@ export interface S3DataSource {
|
|
|
278
322
|
s3Uri: string | undefined;
|
|
279
323
|
}
|
|
280
324
|
/**
|
|
325
|
+
* @public
|
|
281
326
|
* <p>Information about the source of the data used by the Amazon Braket job.</p>
|
|
282
327
|
*/
|
|
283
328
|
export interface DataSource {
|
|
@@ -287,6 +332,7 @@ export interface DataSource {
|
|
|
287
332
|
s3DataSource: S3DataSource | undefined;
|
|
288
333
|
}
|
|
289
334
|
/**
|
|
335
|
+
* @public
|
|
290
336
|
* <p>A list of parameters that specify the input channels, type of input data, and where it
|
|
291
337
|
* is located.</p>
|
|
292
338
|
*/
|
|
@@ -304,6 +350,9 @@ export interface InputFileConfig {
|
|
|
304
350
|
*/
|
|
305
351
|
dataSource: DataSource | undefined;
|
|
306
352
|
}
|
|
353
|
+
/**
|
|
354
|
+
* @public
|
|
355
|
+
*/
|
|
307
356
|
export declare enum _InstanceType {
|
|
308
357
|
ML_C4_2XLARGE = "ml.c4.2xlarge",
|
|
309
358
|
ML_C4_4XLARGE = "ml.c4.4xlarge",
|
|
@@ -346,6 +395,7 @@ export declare enum _InstanceType {
|
|
|
346
395
|
ML_P4D_24XLARGE = "ml.p4d.24xlarge"
|
|
347
396
|
}
|
|
348
397
|
/**
|
|
398
|
+
* @public
|
|
349
399
|
* <p>Configures the resource instances to use while running the Amazon Braket hybrid job on
|
|
350
400
|
* Amazon Braket.</p>
|
|
351
401
|
*/
|
|
@@ -366,6 +416,7 @@ export interface InstanceConfig {
|
|
|
366
416
|
instanceCount?: number;
|
|
367
417
|
}
|
|
368
418
|
/**
|
|
419
|
+
* @public
|
|
369
420
|
* <p>Specifies the path to the S3 location where you want to store job artifacts and the
|
|
370
421
|
* encryption key used to store them.</p>
|
|
371
422
|
*/
|
|
@@ -382,6 +433,7 @@ export interface JobOutputDataConfig {
|
|
|
382
433
|
s3Path: string | undefined;
|
|
383
434
|
}
|
|
384
435
|
/**
|
|
436
|
+
* @public
|
|
385
437
|
* <p>Specifies limits for how long an Amazon Braket job can run. </p>
|
|
386
438
|
*/
|
|
387
439
|
export interface JobStoppingCondition {
|
|
@@ -390,6 +442,9 @@ export interface JobStoppingCondition {
|
|
|
390
442
|
*/
|
|
391
443
|
maxRuntimeInSeconds?: number;
|
|
392
444
|
}
|
|
445
|
+
/**
|
|
446
|
+
* @public
|
|
447
|
+
*/
|
|
393
448
|
export interface CreateJobRequest {
|
|
394
449
|
/**
|
|
395
450
|
* <p>A unique token that guarantees that the call to this API is idempotent.</p>
|
|
@@ -450,6 +505,9 @@ export interface CreateJobRequest {
|
|
|
450
505
|
*/
|
|
451
506
|
tags?: Record<string, string>;
|
|
452
507
|
}
|
|
508
|
+
/**
|
|
509
|
+
* @public
|
|
510
|
+
*/
|
|
453
511
|
export interface CreateJobResponse {
|
|
454
512
|
/**
|
|
455
513
|
* <p>The ARN of the Amazon Braket job created.</p>
|
|
@@ -457,6 +515,7 @@ export interface CreateJobResponse {
|
|
|
457
515
|
jobArn: string | undefined;
|
|
458
516
|
}
|
|
459
517
|
/**
|
|
518
|
+
* @public
|
|
460
519
|
* <p>The specified device has been retired.</p>
|
|
461
520
|
*/
|
|
462
521
|
export declare class DeviceRetiredException extends __BaseException {
|
|
@@ -468,6 +527,7 @@ export declare class DeviceRetiredException extends __BaseException {
|
|
|
468
527
|
constructor(opts: __ExceptionOptionType<DeviceRetiredException, __BaseException>);
|
|
469
528
|
}
|
|
470
529
|
/**
|
|
530
|
+
* @public
|
|
471
531
|
* <p>The request failed because a service quota is exceeded.</p>
|
|
472
532
|
*/
|
|
473
533
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
@@ -478,12 +538,18 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
478
538
|
*/
|
|
479
539
|
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
480
540
|
}
|
|
541
|
+
/**
|
|
542
|
+
* @public
|
|
543
|
+
*/
|
|
481
544
|
export interface GetJobRequest {
|
|
482
545
|
/**
|
|
483
546
|
* <p>The ARN of the job to retrieve.</p>
|
|
484
547
|
*/
|
|
485
548
|
jobArn: string | undefined;
|
|
486
549
|
}
|
|
550
|
+
/**
|
|
551
|
+
* @public
|
|
552
|
+
*/
|
|
487
553
|
export declare enum JobEventType {
|
|
488
554
|
CANCELLED = "CANCELLED",
|
|
489
555
|
COMPLETED = "COMPLETED",
|
|
@@ -498,6 +564,7 @@ export declare enum JobEventType {
|
|
|
498
564
|
WAITING_FOR_PRIORITY = "WAITING_FOR_PRIORITY"
|
|
499
565
|
}
|
|
500
566
|
/**
|
|
567
|
+
* @public
|
|
501
568
|
* <p>Details about the type and time events occurred related to the Amazon Braket job.</p>
|
|
502
569
|
*/
|
|
503
570
|
export interface JobEventDetails {
|
|
@@ -514,6 +581,9 @@ export interface JobEventDetails {
|
|
|
514
581
|
*/
|
|
515
582
|
message?: string;
|
|
516
583
|
}
|
|
584
|
+
/**
|
|
585
|
+
* @public
|
|
586
|
+
*/
|
|
517
587
|
export declare enum JobPrimaryStatus {
|
|
518
588
|
CANCELLED = "CANCELLED",
|
|
519
589
|
CANCELLING = "CANCELLING",
|
|
@@ -522,6 +592,9 @@ export declare enum JobPrimaryStatus {
|
|
|
522
592
|
QUEUED = "QUEUED",
|
|
523
593
|
RUNNING = "RUNNING"
|
|
524
594
|
}
|
|
595
|
+
/**
|
|
596
|
+
* @public
|
|
597
|
+
*/
|
|
525
598
|
export interface GetJobResponse {
|
|
526
599
|
/**
|
|
527
600
|
* <p>The status of the Amazon Braket job.</p>
|
|
@@ -609,6 +682,9 @@ export interface GetJobResponse {
|
|
|
609
682
|
*/
|
|
610
683
|
tags?: Record<string, string>;
|
|
611
684
|
}
|
|
685
|
+
/**
|
|
686
|
+
* @public
|
|
687
|
+
*/
|
|
612
688
|
export declare enum SearchJobsFilterOperator {
|
|
613
689
|
BETWEEN = "BETWEEN",
|
|
614
690
|
CONTAINS = "CONTAINS",
|
|
@@ -619,6 +695,7 @@ export declare enum SearchJobsFilterOperator {
|
|
|
619
695
|
LTE = "LTE"
|
|
620
696
|
}
|
|
621
697
|
/**
|
|
698
|
+
* @public
|
|
622
699
|
* <p>A filter used to search for Amazon Braket jobs.</p>
|
|
623
700
|
*/
|
|
624
701
|
export interface SearchJobsFilter {
|
|
@@ -635,6 +712,9 @@ export interface SearchJobsFilter {
|
|
|
635
712
|
*/
|
|
636
713
|
operator: SearchJobsFilterOperator | string | undefined;
|
|
637
714
|
}
|
|
715
|
+
/**
|
|
716
|
+
* @public
|
|
717
|
+
*/
|
|
638
718
|
export interface SearchJobsRequest {
|
|
639
719
|
/**
|
|
640
720
|
* <p>A token used for pagination of results returned in the response. Use the token returned
|
|
@@ -651,6 +731,7 @@ export interface SearchJobsRequest {
|
|
|
651
731
|
filters: SearchJobsFilter[] | undefined;
|
|
652
732
|
}
|
|
653
733
|
/**
|
|
734
|
+
* @public
|
|
654
735
|
* <p>Provides summary information about an Amazon Braket job.</p>
|
|
655
736
|
*/
|
|
656
737
|
export interface JobSummary {
|
|
@@ -689,6 +770,9 @@ export interface JobSummary {
|
|
|
689
770
|
*/
|
|
690
771
|
tags?: Record<string, string>;
|
|
691
772
|
}
|
|
773
|
+
/**
|
|
774
|
+
* @public
|
|
775
|
+
*/
|
|
692
776
|
export interface SearchJobsResponse {
|
|
693
777
|
/**
|
|
694
778
|
* <p>An array of <code>JobSummary</code> objects for devices that match the specified filter
|
|
@@ -702,18 +786,27 @@ export interface SearchJobsResponse {
|
|
|
702
786
|
*/
|
|
703
787
|
nextToken?: string;
|
|
704
788
|
}
|
|
789
|
+
/**
|
|
790
|
+
* @public
|
|
791
|
+
*/
|
|
705
792
|
export interface ListTagsForResourceRequest {
|
|
706
793
|
/**
|
|
707
794
|
* <p>Specify the <code>resourceArn</code> for the resource whose tags to display.</p>
|
|
708
795
|
*/
|
|
709
796
|
resourceArn: string | undefined;
|
|
710
797
|
}
|
|
798
|
+
/**
|
|
799
|
+
* @public
|
|
800
|
+
*/
|
|
711
801
|
export interface ListTagsForResourceResponse {
|
|
712
802
|
/**
|
|
713
803
|
* <p>Displays the key, value pairs of tags associated with this resource.</p>
|
|
714
804
|
*/
|
|
715
805
|
tags?: Record<string, string>;
|
|
716
806
|
}
|
|
807
|
+
/**
|
|
808
|
+
* @public
|
|
809
|
+
*/
|
|
717
810
|
export interface CancelQuantumTaskRequest {
|
|
718
811
|
/**
|
|
719
812
|
* <p>The ARN of the task to cancel.</p>
|
|
@@ -724,6 +817,9 @@ export interface CancelQuantumTaskRequest {
|
|
|
724
817
|
*/
|
|
725
818
|
clientToken?: string;
|
|
726
819
|
}
|
|
820
|
+
/**
|
|
821
|
+
* @public
|
|
822
|
+
*/
|
|
727
823
|
export interface CancelQuantumTaskResponse {
|
|
728
824
|
/**
|
|
729
825
|
* <p>The ARN of the task.</p>
|
|
@@ -734,6 +830,9 @@ export interface CancelQuantumTaskResponse {
|
|
|
734
830
|
*/
|
|
735
831
|
cancellationStatus: CancellationStatus | string | undefined;
|
|
736
832
|
}
|
|
833
|
+
/**
|
|
834
|
+
* @public
|
|
835
|
+
*/
|
|
737
836
|
export interface CreateQuantumTaskRequest {
|
|
738
837
|
/**
|
|
739
838
|
* <p>The client token associated with the request.</p>
|
|
@@ -772,6 +871,9 @@ export interface CreateQuantumTaskRequest {
|
|
|
772
871
|
*/
|
|
773
872
|
jobToken?: string;
|
|
774
873
|
}
|
|
874
|
+
/**
|
|
875
|
+
* @public
|
|
876
|
+
*/
|
|
775
877
|
export interface CreateQuantumTaskResponse {
|
|
776
878
|
/**
|
|
777
879
|
* <p>The ARN of the task created by the request.</p>
|
|
@@ -779,6 +881,7 @@ export interface CreateQuantumTaskResponse {
|
|
|
779
881
|
quantumTaskArn: string | undefined;
|
|
780
882
|
}
|
|
781
883
|
/**
|
|
884
|
+
* @public
|
|
782
885
|
* <p>The specified device is currently offline.</p>
|
|
783
886
|
*/
|
|
784
887
|
export declare class DeviceOfflineException extends __BaseException {
|
|
@@ -789,12 +892,18 @@ export declare class DeviceOfflineException extends __BaseException {
|
|
|
789
892
|
*/
|
|
790
893
|
constructor(opts: __ExceptionOptionType<DeviceOfflineException, __BaseException>);
|
|
791
894
|
}
|
|
895
|
+
/**
|
|
896
|
+
* @public
|
|
897
|
+
*/
|
|
792
898
|
export interface GetQuantumTaskRequest {
|
|
793
899
|
/**
|
|
794
900
|
* <p>the ARN of the task to retrieve.</p>
|
|
795
901
|
*/
|
|
796
902
|
quantumTaskArn: string | undefined;
|
|
797
903
|
}
|
|
904
|
+
/**
|
|
905
|
+
* @public
|
|
906
|
+
*/
|
|
798
907
|
export declare enum QuantumTaskStatus {
|
|
799
908
|
CANCELLED = "CANCELLED",
|
|
800
909
|
CANCELLING = "CANCELLING",
|
|
@@ -804,6 +913,9 @@ export declare enum QuantumTaskStatus {
|
|
|
804
913
|
QUEUED = "QUEUED",
|
|
805
914
|
RUNNING = "RUNNING"
|
|
806
915
|
}
|
|
916
|
+
/**
|
|
917
|
+
* @public
|
|
918
|
+
*/
|
|
807
919
|
export interface GetQuantumTaskResponse {
|
|
808
920
|
/**
|
|
809
921
|
* <p>The ARN of the task.</p>
|
|
@@ -854,6 +966,9 @@ export interface GetQuantumTaskResponse {
|
|
|
854
966
|
*/
|
|
855
967
|
jobArn?: string;
|
|
856
968
|
}
|
|
969
|
+
/**
|
|
970
|
+
* @public
|
|
971
|
+
*/
|
|
857
972
|
export declare enum SearchQuantumTasksFilterOperator {
|
|
858
973
|
BETWEEN = "BETWEEN",
|
|
859
974
|
EQUAL = "EQUAL",
|
|
@@ -863,6 +978,7 @@ export declare enum SearchQuantumTasksFilterOperator {
|
|
|
863
978
|
LTE = "LTE"
|
|
864
979
|
}
|
|
865
980
|
/**
|
|
981
|
+
* @public
|
|
866
982
|
* <p>A filter to use to search for tasks.</p>
|
|
867
983
|
*/
|
|
868
984
|
export interface SearchQuantumTasksFilter {
|
|
@@ -879,6 +995,9 @@ export interface SearchQuantumTasksFilter {
|
|
|
879
995
|
*/
|
|
880
996
|
operator: SearchQuantumTasksFilterOperator | string | undefined;
|
|
881
997
|
}
|
|
998
|
+
/**
|
|
999
|
+
* @public
|
|
1000
|
+
*/
|
|
882
1001
|
export interface SearchQuantumTasksRequest {
|
|
883
1002
|
/**
|
|
884
1003
|
* <p>A token used for pagination of results returned in the response. Use the token returned
|
|
@@ -895,6 +1014,7 @@ export interface SearchQuantumTasksRequest {
|
|
|
895
1014
|
filters: SearchQuantumTasksFilter[] | undefined;
|
|
896
1015
|
}
|
|
897
1016
|
/**
|
|
1017
|
+
* @public
|
|
898
1018
|
* <p>Includes information about a quantum task.</p>
|
|
899
1019
|
*/
|
|
900
1020
|
export interface QuantumTaskSummary {
|
|
@@ -935,6 +1055,9 @@ export interface QuantumTaskSummary {
|
|
|
935
1055
|
*/
|
|
936
1056
|
tags?: Record<string, string>;
|
|
937
1057
|
}
|
|
1058
|
+
/**
|
|
1059
|
+
* @public
|
|
1060
|
+
*/
|
|
938
1061
|
export interface SearchQuantumTasksResponse {
|
|
939
1062
|
/**
|
|
940
1063
|
* <p>An array of <code>QuantumTaskSummary</code> objects for tasks that match the specified
|
|
@@ -948,6 +1071,9 @@ export interface SearchQuantumTasksResponse {
|
|
|
948
1071
|
*/
|
|
949
1072
|
nextToken?: string;
|
|
950
1073
|
}
|
|
1074
|
+
/**
|
|
1075
|
+
* @public
|
|
1076
|
+
*/
|
|
951
1077
|
export interface TagResourceRequest {
|
|
952
1078
|
/**
|
|
953
1079
|
* <p>Specify the <code>resourceArn</code> of the resource to which a tag will be
|
|
@@ -959,8 +1085,14 @@ export interface TagResourceRequest {
|
|
|
959
1085
|
*/
|
|
960
1086
|
tags: Record<string, string> | undefined;
|
|
961
1087
|
}
|
|
1088
|
+
/**
|
|
1089
|
+
* @public
|
|
1090
|
+
*/
|
|
962
1091
|
export interface TagResourceResponse {
|
|
963
1092
|
}
|
|
1093
|
+
/**
|
|
1094
|
+
* @public
|
|
1095
|
+
*/
|
|
964
1096
|
export interface UntagResourceRequest {
|
|
965
1097
|
/**
|
|
966
1098
|
* <p>Specify the <code>resourceArn</code> for the resource from which to remove the
|
|
@@ -972,6 +1104,9 @@ export interface UntagResourceRequest {
|
|
|
972
1104
|
*/
|
|
973
1105
|
tagKeys: string[] | undefined;
|
|
974
1106
|
}
|
|
1107
|
+
/**
|
|
1108
|
+
* @public
|
|
1109
|
+
*/
|
|
975
1110
|
export interface UntagResourceResponse {
|
|
976
1111
|
}
|
|
977
1112
|
/**
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { SearchDevicesCommandInput, SearchDevicesCommandOutput } from "../commands/SearchDevicesCommand";
|
|
3
3
|
import { BraketPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateSearchDevices(config: BraketPaginationConfiguration, input: SearchDevicesCommandInput, ...additionalArguments: any): Paginator<SearchDevicesCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { SearchJobsCommandInput, SearchJobsCommandOutput } from "../commands/SearchJobsCommand";
|
|
3
3
|
import { BraketPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateSearchJobs(config: BraketPaginationConfiguration, input: SearchJobsCommandInput, ...additionalArguments: any): Paginator<SearchJobsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { SearchQuantumTasksCommandInput, SearchQuantumTasksCommandOutput } from "../commands/SearchQuantumTasksCommand";
|
|
3
3
|
import { BraketPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateSearchQuantumTasks(config: BraketPaginationConfiguration, input: SearchQuantumTasksCommandInput, ...additionalArguments: any): Paginator<SearchQuantumTasksCommandOutput>;
|
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.
|
|
4
|
+
"version": "3.297.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.297.0",
|
|
24
24
|
"@aws-sdk/config-resolver": "3.296.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.297.0",
|
|
26
26
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
27
27
|
"@aws-sdk/hash-node": "3.296.0",
|
|
28
28
|
"@aws-sdk/invalid-dependency": "3.296.0",
|