@aws-sdk/client-braket 3.47.1 → 3.50.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 (32) hide show
  1. package/CHANGELOG.md +32 -0
  2. package/package.json +39 -33
  3. package/dist-types/ts3.4/Braket.d.ts +0 -70
  4. package/dist-types/ts3.4/BraketClient.d.ts +0 -86
  5. package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +0 -17
  6. package/dist-types/ts3.4/commands/CancelQuantumTaskCommand.d.ts +0 -17
  7. package/dist-types/ts3.4/commands/CreateJobCommand.d.ts +0 -17
  8. package/dist-types/ts3.4/commands/CreateQuantumTaskCommand.d.ts +0 -17
  9. package/dist-types/ts3.4/commands/GetDeviceCommand.d.ts +0 -17
  10. package/dist-types/ts3.4/commands/GetJobCommand.d.ts +0 -17
  11. package/dist-types/ts3.4/commands/GetQuantumTaskCommand.d.ts +0 -17
  12. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -17
  13. package/dist-types/ts3.4/commands/SearchDevicesCommand.d.ts +0 -17
  14. package/dist-types/ts3.4/commands/SearchJobsCommand.d.ts +0 -17
  15. package/dist-types/ts3.4/commands/SearchQuantumTasksCommand.d.ts +0 -17
  16. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -17
  17. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -17
  18. package/dist-types/ts3.4/commands/index.d.ts +0 -13
  19. package/dist-types/ts3.4/endpoints.d.ts +0 -2
  20. package/dist-types/ts3.4/index.d.ts +0 -5
  21. package/dist-types/ts3.4/models/index.d.ts +0 -1
  22. package/dist-types/ts3.4/models/models_0.d.ts +0 -749
  23. package/dist-types/ts3.4/pagination/Interfaces.d.ts +0 -6
  24. package/dist-types/ts3.4/pagination/SearchDevicesPaginator.d.ts +0 -4
  25. package/dist-types/ts3.4/pagination/SearchJobsPaginator.d.ts +0 -4
  26. package/dist-types/ts3.4/pagination/SearchQuantumTasksPaginator.d.ts +0 -4
  27. package/dist-types/ts3.4/pagination/index.d.ts +0 -4
  28. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -41
  29. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -38
  30. package/dist-types/ts3.4/runtimeConfig.d.ts +0 -38
  31. package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -37
  32. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -11
@@ -1,749 +0,0 @@
1
- import { LazyJsonString as __LazyJsonString } from "@aws-sdk/smithy-client";
2
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
3
-
4
- export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
5
- name: "AccessDeniedException";
6
- $fault: "client";
7
- message?: string;
8
- }
9
-
10
- export interface ContainerImage {
11
-
12
- uri: string | undefined;
13
- }
14
- export declare namespace ContainerImage {
15
-
16
- const filterSensitiveLog: (obj: ContainerImage) => any;
17
- }
18
- export declare enum CompressionType {
19
- GZIP = "GZIP",
20
- NONE = "NONE"
21
- }
22
-
23
- export interface ScriptModeConfig {
24
-
25
- entryPoint: string | undefined;
26
-
27
- s3Uri: string | undefined;
28
-
29
- compressionType?: CompressionType | string;
30
- }
31
- export declare namespace ScriptModeConfig {
32
-
33
- const filterSensitiveLog: (obj: ScriptModeConfig) => any;
34
- }
35
-
36
- export interface AlgorithmSpecification {
37
-
38
- scriptModeConfig?: ScriptModeConfig;
39
-
40
- containerImage?: ContainerImage;
41
- }
42
- export declare namespace AlgorithmSpecification {
43
-
44
- const filterSensitiveLog: (obj: AlgorithmSpecification) => any;
45
- }
46
- export interface GetDeviceRequest {
47
-
48
- deviceArn: string | undefined;
49
- }
50
- export declare namespace GetDeviceRequest {
51
-
52
- const filterSensitiveLog: (obj: GetDeviceRequest) => any;
53
- }
54
- export declare enum DeviceStatus {
55
- OFFLINE = "OFFLINE",
56
- ONLINE = "ONLINE",
57
- RETIRED = "RETIRED"
58
- }
59
- export declare enum DeviceType {
60
- QPU = "QPU",
61
- SIMULATOR = "SIMULATOR"
62
- }
63
- export interface GetDeviceResponse {
64
-
65
- deviceArn: string | undefined;
66
-
67
- deviceName: string | undefined;
68
-
69
- providerName: string | undefined;
70
-
71
- deviceType: DeviceType | string | undefined;
72
-
73
- deviceStatus: DeviceStatus | string | undefined;
74
-
75
- deviceCapabilities: __LazyJsonString | string | undefined;
76
- }
77
- export declare namespace GetDeviceResponse {
78
-
79
- const filterSensitiveLog: (obj: GetDeviceResponse) => any;
80
- }
81
-
82
- export interface InternalServiceException extends __SmithyException, $MetadataBearer {
83
- name: "InternalServiceException";
84
- $fault: "server";
85
- message?: string;
86
- }
87
-
88
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
89
- name: "ResourceNotFoundException";
90
- $fault: "client";
91
- message?: string;
92
- }
93
-
94
- export interface ThrottlingException extends __SmithyException, $MetadataBearer {
95
- name: "ThrottlingException";
96
- $fault: "client";
97
- message?: string;
98
- }
99
-
100
- export interface ValidationException extends __SmithyException, $MetadataBearer {
101
- name: "ValidationException";
102
- $fault: "client";
103
- message?: string;
104
- }
105
-
106
- export interface SearchDevicesFilter {
107
-
108
- name: string | undefined;
109
-
110
- values: string[] | undefined;
111
- }
112
- export declare namespace SearchDevicesFilter {
113
-
114
- const filterSensitiveLog: (obj: SearchDevicesFilter) => any;
115
- }
116
- export interface SearchDevicesRequest {
117
-
118
- nextToken?: string;
119
-
120
- maxResults?: number;
121
-
122
- filters: SearchDevicesFilter[] | undefined;
123
- }
124
- export declare namespace SearchDevicesRequest {
125
-
126
- const filterSensitiveLog: (obj: SearchDevicesRequest) => any;
127
- }
128
-
129
- export interface DeviceSummary {
130
-
131
- deviceArn: string | undefined;
132
-
133
- deviceName: string | undefined;
134
-
135
- providerName: string | undefined;
136
-
137
- deviceType: DeviceType | string | undefined;
138
-
139
- deviceStatus: DeviceStatus | string | undefined;
140
- }
141
- export declare namespace DeviceSummary {
142
-
143
- const filterSensitiveLog: (obj: DeviceSummary) => any;
144
- }
145
- export interface SearchDevicesResponse {
146
-
147
- devices: DeviceSummary[] | undefined;
148
-
149
- nextToken?: string;
150
- }
151
- export declare namespace SearchDevicesResponse {
152
-
153
- const filterSensitiveLog: (obj: SearchDevicesResponse) => any;
154
- }
155
- export interface CancelJobRequest {
156
-
157
- jobArn: string | undefined;
158
- }
159
- export declare namespace CancelJobRequest {
160
-
161
- const filterSensitiveLog: (obj: CancelJobRequest) => any;
162
- }
163
- export declare enum CancellationStatus {
164
- CANCELLED = "CANCELLED",
165
- CANCELLING = "CANCELLING"
166
- }
167
- export interface CancelJobResponse {
168
-
169
- jobArn: string | undefined;
170
-
171
- cancellationStatus: CancellationStatus | string | undefined;
172
- }
173
- export declare namespace CancelJobResponse {
174
-
175
- const filterSensitiveLog: (obj: CancelJobResponse) => any;
176
- }
177
-
178
- export interface ConflictException extends __SmithyException, $MetadataBearer {
179
- name: "ConflictException";
180
- $fault: "client";
181
- message?: string;
182
- }
183
-
184
- export interface JobCheckpointConfig {
185
-
186
- localPath?: string;
187
-
188
- s3Uri: string | undefined;
189
- }
190
- export declare namespace JobCheckpointConfig {
191
-
192
- const filterSensitiveLog: (obj: JobCheckpointConfig) => any;
193
- }
194
-
195
- export interface DeviceConfig {
196
-
197
- device: string | undefined;
198
- }
199
- export declare namespace DeviceConfig {
200
-
201
- const filterSensitiveLog: (obj: DeviceConfig) => any;
202
- }
203
-
204
- export interface S3DataSource {
205
-
206
- s3Uri: string | undefined;
207
- }
208
- export declare namespace S3DataSource {
209
-
210
- const filterSensitiveLog: (obj: S3DataSource) => any;
211
- }
212
-
213
- export interface DataSource {
214
-
215
- s3DataSource: S3DataSource | undefined;
216
- }
217
- export declare namespace DataSource {
218
-
219
- const filterSensitiveLog: (obj: DataSource) => any;
220
- }
221
-
222
- export interface InputFileConfig {
223
-
224
- channelName: string | undefined;
225
-
226
- contentType?: string;
227
-
228
- dataSource: DataSource | undefined;
229
- }
230
- export declare namespace InputFileConfig {
231
-
232
- const filterSensitiveLog: (obj: InputFileConfig) => any;
233
- }
234
- export declare enum _InstanceType {
235
- ML_C4_2XLARGE = "ml.c4.2xlarge",
236
- ML_C4_4XLARGE = "ml.c4.4xlarge",
237
- ML_C4_8XLARGE = "ml.c4.8xlarge",
238
- ML_C4_XLARGE = "ml.c4.xlarge",
239
- ML_C5N_18XLARGE = "ml.c5n.18xlarge",
240
- ML_C5N_2XLARGE = "ml.c5n.2xlarge",
241
- ML_C5N_4XLARGE = "ml.c5n.4xlarge",
242
- ML_C5N_9XLARGE = "ml.c5n.9xlarge",
243
- ML_C5N_XLARGE = "ml.c5n.xlarge",
244
- ML_C5_18XLARGE = "ml.c5.18xlarge",
245
- ML_C5_2XLARGE = "ml.c5.2xlarge",
246
- ML_C5_4XLARGE = "ml.c5.4xlarge",
247
- ML_C5_9XLARGE = "ml.c5.9xlarge",
248
- ML_C5_XLARGE = "ml.c5.xlarge",
249
- ML_G4DN_12XLARGE = "ml.g4dn.12xlarge",
250
- ML_G4DN_16XLARGE = "ml.g4dn.16xlarge",
251
- ML_G4DN_2XLARGE = "ml.g4dn.2xlarge",
252
- ML_G4DN_4XLARGE = "ml.g4dn.4xlarge",
253
- ML_G4DN_8XLARGE = "ml.g4dn.8xlarge",
254
- ML_G4DN_XLARGE = "ml.g4dn.xlarge",
255
- ML_M4_10XLARGE = "ml.m4.10xlarge",
256
- ML_M4_16XLARGE = "ml.m4.16xlarge",
257
- ML_M4_2XLARGE = "ml.m4.2xlarge",
258
- ML_M4_4XLARGE = "ml.m4.4xlarge",
259
- ML_M4_XLARGE = "ml.m4.xlarge",
260
- ML_M5_12XLARGE = "ml.m5.12xlarge",
261
- ML_M5_24XLARGE = "ml.m5.24xlarge",
262
- ML_M5_2XLARGE = "ml.m5.2xlarge",
263
- ML_M5_4XLARGE = "ml.m5.4xlarge",
264
- ML_M5_LARGE = "ml.m5.large",
265
- ML_M5_XLARGE = "ml.m5.xlarge",
266
- ML_P2_16XLARGE = "ml.p2.16xlarge",
267
- ML_P2_8XLARGE = "ml.p2.8xlarge",
268
- ML_P2_XLARGE = "ml.p2.xlarge",
269
- ML_P3DN_24XLARGE = "ml.p3dn.24xlarge",
270
- ML_P3_16XLARGE = "ml.p3.16xlarge",
271
- ML_P3_2XLARGE = "ml.p3.2xlarge",
272
- ML_P3_8XLARGE = "ml.p3.8xlarge",
273
- ML_P4D_24XLARGE = "ml.p4d.24xlarge"
274
- }
275
-
276
- export interface InstanceConfig {
277
-
278
- instanceType: _InstanceType | string | undefined;
279
-
280
- volumeSizeInGb: number | undefined;
281
- }
282
- export declare namespace InstanceConfig {
283
-
284
- const filterSensitiveLog: (obj: InstanceConfig) => any;
285
- }
286
-
287
- export interface JobOutputDataConfig {
288
-
289
- kmsKeyId?: string;
290
-
291
- s3Path: string | undefined;
292
- }
293
- export declare namespace JobOutputDataConfig {
294
-
295
- const filterSensitiveLog: (obj: JobOutputDataConfig) => any;
296
- }
297
-
298
- export interface JobStoppingCondition {
299
-
300
- maxRuntimeInSeconds?: number;
301
- }
302
- export declare namespace JobStoppingCondition {
303
-
304
- const filterSensitiveLog: (obj: JobStoppingCondition) => any;
305
- }
306
- export interface CreateJobRequest {
307
-
308
- clientToken?: string;
309
-
310
- algorithmSpecification: AlgorithmSpecification | undefined;
311
-
312
- inputDataConfig?: InputFileConfig[];
313
-
314
- outputDataConfig: JobOutputDataConfig | undefined;
315
-
316
- checkpointConfig?: JobCheckpointConfig;
317
-
318
- jobName: string | undefined;
319
-
320
- roleArn: string | undefined;
321
-
322
- stoppingCondition?: JobStoppingCondition;
323
-
324
- instanceConfig: InstanceConfig | undefined;
325
-
326
- hyperParameters?: {
327
- [key: string]: string;
328
- };
329
-
330
- deviceConfig: DeviceConfig | undefined;
331
-
332
- tags?: {
333
- [key: string]: string;
334
- };
335
- }
336
- export declare namespace CreateJobRequest {
337
-
338
- const filterSensitiveLog: (obj: CreateJobRequest) => any;
339
- }
340
- export interface CreateJobResponse {
341
-
342
- jobArn: string | undefined;
343
- }
344
- export declare namespace CreateJobResponse {
345
-
346
- const filterSensitiveLog: (obj: CreateJobResponse) => any;
347
- }
348
-
349
- export interface DeviceRetiredException extends __SmithyException, $MetadataBearer {
350
- name: "DeviceRetiredException";
351
- $fault: "client";
352
- message?: string;
353
- }
354
-
355
- export interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
356
- name: "ServiceQuotaExceededException";
357
- $fault: "client";
358
- message?: string;
359
- }
360
- export interface GetJobRequest {
361
-
362
- jobArn: string | undefined;
363
- }
364
- export declare namespace GetJobRequest {
365
-
366
- const filterSensitiveLog: (obj: GetJobRequest) => any;
367
- }
368
- export declare enum JobEventType {
369
- CANCELLED = "CANCELLED",
370
- COMPLETED = "COMPLETED",
371
- DEPRIORITIZED_DUE_TO_INACTIVITY = "DEPRIORITIZED_DUE_TO_INACTIVITY",
372
- DOWNLOADING_DATA = "DOWNLOADING_DATA",
373
- FAILED = "FAILED",
374
- MAX_RUNTIME_EXCEEDED = "MAX_RUNTIME_EXCEEDED",
375
- QUEUED_FOR_EXECUTION = "QUEUED_FOR_EXECUTION",
376
- RUNNING = "RUNNING",
377
- STARTING_INSTANCE = "STARTING_INSTANCE",
378
- UPLOADING_RESULTS = "UPLOADING_RESULTS",
379
- WAITING_FOR_PRIORITY = "WAITING_FOR_PRIORITY"
380
- }
381
-
382
- export interface JobEventDetails {
383
-
384
- eventType?: JobEventType | string;
385
-
386
- timeOfEvent?: Date;
387
-
388
- message?: string;
389
- }
390
- export declare namespace JobEventDetails {
391
-
392
- const filterSensitiveLog: (obj: JobEventDetails) => any;
393
- }
394
- export declare enum JobPrimaryStatus {
395
- CANCELLED = "CANCELLED",
396
- CANCELLING = "CANCELLING",
397
- COMPLETED = "COMPLETED",
398
- FAILED = "FAILED",
399
- QUEUED = "QUEUED",
400
- RUNNING = "RUNNING"
401
- }
402
- export interface GetJobResponse {
403
-
404
- status: JobPrimaryStatus | string | undefined;
405
-
406
- jobArn: string | undefined;
407
-
408
- roleArn: string | undefined;
409
-
410
- failureReason?: string;
411
-
412
- jobName: string | undefined;
413
-
414
- hyperParameters?: {
415
- [key: string]: string;
416
- };
417
-
418
- inputDataConfig?: InputFileConfig[];
419
-
420
- outputDataConfig: JobOutputDataConfig | undefined;
421
-
422
- stoppingCondition?: JobStoppingCondition;
423
-
424
- checkpointConfig?: JobCheckpointConfig;
425
-
426
- algorithmSpecification: AlgorithmSpecification | undefined;
427
-
428
- instanceConfig: InstanceConfig | undefined;
429
-
430
- createdAt: Date | undefined;
431
-
432
- startedAt?: Date;
433
-
434
- endedAt?: Date;
435
-
436
- billableDuration?: number;
437
-
438
- deviceConfig?: DeviceConfig;
439
-
440
- events?: JobEventDetails[];
441
-
442
- tags?: {
443
- [key: string]: string;
444
- };
445
- }
446
- export declare namespace GetJobResponse {
447
-
448
- const filterSensitiveLog: (obj: GetJobResponse) => any;
449
- }
450
- export declare enum SearchJobsFilterOperator {
451
- BETWEEN = "BETWEEN",
452
- CONTAINS = "CONTAINS",
453
- EQUAL = "EQUAL",
454
- GT = "GT",
455
- GTE = "GTE",
456
- LT = "LT",
457
- LTE = "LTE"
458
- }
459
-
460
- export interface SearchJobsFilter {
461
-
462
- name: string | undefined;
463
-
464
- values: string[] | undefined;
465
-
466
- operator: SearchJobsFilterOperator | string | undefined;
467
- }
468
- export declare namespace SearchJobsFilter {
469
-
470
- const filterSensitiveLog: (obj: SearchJobsFilter) => any;
471
- }
472
- export interface SearchJobsRequest {
473
-
474
- nextToken?: string;
475
-
476
- maxResults?: number;
477
-
478
- filters: SearchJobsFilter[] | undefined;
479
- }
480
- export declare namespace SearchJobsRequest {
481
-
482
- const filterSensitiveLog: (obj: SearchJobsRequest) => any;
483
- }
484
-
485
- export interface JobSummary {
486
-
487
- status: JobPrimaryStatus | string | undefined;
488
-
489
- jobArn: string | undefined;
490
-
491
- jobName: string | undefined;
492
-
493
- device: string | undefined;
494
-
495
- createdAt: Date | undefined;
496
-
497
- startedAt?: Date;
498
-
499
- endedAt?: Date;
500
-
501
- tags?: {
502
- [key: string]: string;
503
- };
504
- }
505
- export declare namespace JobSummary {
506
-
507
- const filterSensitiveLog: (obj: JobSummary) => any;
508
- }
509
- export interface SearchJobsResponse {
510
-
511
- jobs: JobSummary[] | undefined;
512
-
513
- nextToken?: string;
514
- }
515
- export declare namespace SearchJobsResponse {
516
-
517
- const filterSensitiveLog: (obj: SearchJobsResponse) => any;
518
- }
519
- export interface ListTagsForResourceRequest {
520
-
521
- resourceArn: string | undefined;
522
- }
523
- export declare namespace ListTagsForResourceRequest {
524
-
525
- const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
526
- }
527
- export interface ListTagsForResourceResponse {
528
-
529
- tags?: {
530
- [key: string]: string;
531
- };
532
- }
533
- export declare namespace ListTagsForResourceResponse {
534
-
535
- const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
536
- }
537
- export interface CancelQuantumTaskRequest {
538
-
539
- quantumTaskArn: string | undefined;
540
-
541
- clientToken?: string;
542
- }
543
- export declare namespace CancelQuantumTaskRequest {
544
-
545
- const filterSensitiveLog: (obj: CancelQuantumTaskRequest) => any;
546
- }
547
- export interface CancelQuantumTaskResponse {
548
-
549
- quantumTaskArn: string | undefined;
550
-
551
- cancellationStatus: CancellationStatus | string | undefined;
552
- }
553
- export declare namespace CancelQuantumTaskResponse {
554
-
555
- const filterSensitiveLog: (obj: CancelQuantumTaskResponse) => any;
556
- }
557
- export interface CreateQuantumTaskRequest {
558
-
559
- clientToken?: string;
560
-
561
- deviceArn: string | undefined;
562
-
563
- deviceParameters?: __LazyJsonString | string;
564
-
565
- shots: number | undefined;
566
-
567
- outputS3Bucket: string | undefined;
568
-
569
- outputS3KeyPrefix: string | undefined;
570
-
571
- action: __LazyJsonString | string | undefined;
572
-
573
- tags?: {
574
- [key: string]: string;
575
- };
576
-
577
- jobToken?: string;
578
- }
579
- export declare namespace CreateQuantumTaskRequest {
580
-
581
- const filterSensitiveLog: (obj: CreateQuantumTaskRequest) => any;
582
- }
583
- export interface CreateQuantumTaskResponse {
584
-
585
- quantumTaskArn: string | undefined;
586
- }
587
- export declare namespace CreateQuantumTaskResponse {
588
-
589
- const filterSensitiveLog: (obj: CreateQuantumTaskResponse) => any;
590
- }
591
-
592
- export interface DeviceOfflineException extends __SmithyException, $MetadataBearer {
593
- name: "DeviceOfflineException";
594
- $fault: "client";
595
- message?: string;
596
- }
597
- export interface GetQuantumTaskRequest {
598
-
599
- quantumTaskArn: string | undefined;
600
- }
601
- export declare namespace GetQuantumTaskRequest {
602
-
603
- const filterSensitiveLog: (obj: GetQuantumTaskRequest) => any;
604
- }
605
- export declare enum QuantumTaskStatus {
606
- CANCELLED = "CANCELLED",
607
- CANCELLING = "CANCELLING",
608
- COMPLETED = "COMPLETED",
609
- CREATED = "CREATED",
610
- FAILED = "FAILED",
611
- QUEUED = "QUEUED",
612
- RUNNING = "RUNNING"
613
- }
614
- export interface GetQuantumTaskResponse {
615
-
616
- quantumTaskArn: string | undefined;
617
-
618
- status: QuantumTaskStatus | string | undefined;
619
-
620
- failureReason?: string;
621
-
622
- deviceArn: string | undefined;
623
-
624
- deviceParameters: __LazyJsonString | string | undefined;
625
-
626
- shots: number | undefined;
627
-
628
- outputS3Bucket: string | undefined;
629
-
630
- outputS3Directory: string | undefined;
631
-
632
- createdAt: Date | undefined;
633
-
634
- endedAt?: Date;
635
-
636
- tags?: {
637
- [key: string]: string;
638
- };
639
-
640
- jobArn?: string;
641
- }
642
- export declare namespace GetQuantumTaskResponse {
643
-
644
- const filterSensitiveLog: (obj: GetQuantumTaskResponse) => any;
645
- }
646
- export declare enum SearchQuantumTasksFilterOperator {
647
- BETWEEN = "BETWEEN",
648
- EQUAL = "EQUAL",
649
- GT = "GT",
650
- GTE = "GTE",
651
- LT = "LT",
652
- LTE = "LTE"
653
- }
654
-
655
- export interface SearchQuantumTasksFilter {
656
-
657
- name: string | undefined;
658
-
659
- values: string[] | undefined;
660
-
661
- operator: SearchQuantumTasksFilterOperator | string | undefined;
662
- }
663
- export declare namespace SearchQuantumTasksFilter {
664
-
665
- const filterSensitiveLog: (obj: SearchQuantumTasksFilter) => any;
666
- }
667
- export interface SearchQuantumTasksRequest {
668
-
669
- nextToken?: string;
670
-
671
- maxResults?: number;
672
-
673
- filters: SearchQuantumTasksFilter[] | undefined;
674
- }
675
- export declare namespace SearchQuantumTasksRequest {
676
-
677
- const filterSensitiveLog: (obj: SearchQuantumTasksRequest) => any;
678
- }
679
-
680
- export interface QuantumTaskSummary {
681
-
682
- quantumTaskArn: string | undefined;
683
-
684
- status: QuantumTaskStatus | string | undefined;
685
-
686
- deviceArn: string | undefined;
687
-
688
- shots: number | undefined;
689
-
690
- outputS3Bucket: string | undefined;
691
-
692
- outputS3Directory: string | undefined;
693
-
694
- createdAt: Date | undefined;
695
-
696
- endedAt?: Date;
697
-
698
- tags?: {
699
- [key: string]: string;
700
- };
701
- }
702
- export declare namespace QuantumTaskSummary {
703
-
704
- const filterSensitiveLog: (obj: QuantumTaskSummary) => any;
705
- }
706
- export interface SearchQuantumTasksResponse {
707
-
708
- quantumTasks: QuantumTaskSummary[] | undefined;
709
-
710
- nextToken?: string;
711
- }
712
- export declare namespace SearchQuantumTasksResponse {
713
-
714
- const filterSensitiveLog: (obj: SearchQuantumTasksResponse) => any;
715
- }
716
- export interface TagResourceRequest {
717
-
718
- resourceArn: string | undefined;
719
-
720
- tags: {
721
- [key: string]: string;
722
- } | undefined;
723
- }
724
- export declare namespace TagResourceRequest {
725
-
726
- const filterSensitiveLog: (obj: TagResourceRequest) => any;
727
- }
728
- export interface TagResourceResponse {
729
- }
730
- export declare namespace TagResourceResponse {
731
-
732
- const filterSensitiveLog: (obj: TagResourceResponse) => any;
733
- }
734
- export interface UntagResourceRequest {
735
-
736
- resourceArn: string | undefined;
737
-
738
- tagKeys: string[] | undefined;
739
- }
740
- export declare namespace UntagResourceRequest {
741
-
742
- const filterSensitiveLog: (obj: UntagResourceRequest) => any;
743
- }
744
- export interface UntagResourceResponse {
745
- }
746
- export declare namespace UntagResourceResponse {
747
-
748
- const filterSensitiveLog: (obj: UntagResourceResponse) => any;
749
- }