@aws-sdk/client-omics 3.381.0 → 3.385.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/models/models_0.d.ts +836 -0
- package/package.json +5 -5
|
@@ -6,12 +6,14 @@ import { OmicsServiceException as __BaseException } from "./OmicsServiceExceptio
|
|
|
6
6
|
*/
|
|
7
7
|
export interface AbortMultipartReadSetUploadRequest {
|
|
8
8
|
/**
|
|
9
|
+
* @public
|
|
9
10
|
* <p>
|
|
10
11
|
* The sequence store ID for the store involved in the multipart upload.
|
|
11
12
|
* </p>
|
|
12
13
|
*/
|
|
13
14
|
sequenceStoreId: string | undefined;
|
|
14
15
|
/**
|
|
16
|
+
* @public
|
|
15
17
|
* <p>
|
|
16
18
|
* The ID for the multipart upload.
|
|
17
19
|
* </p>
|
|
@@ -159,14 +161,17 @@ export type ReadSetActivationJobStatus = (typeof ReadSetActivationJobStatus)[key
|
|
|
159
161
|
*/
|
|
160
162
|
export interface ActivateReadSetFilter {
|
|
161
163
|
/**
|
|
164
|
+
* @public
|
|
162
165
|
* <p>The filter's status.</p>
|
|
163
166
|
*/
|
|
164
167
|
status?: ReadSetActivationJobStatus | string;
|
|
165
168
|
/**
|
|
169
|
+
* @public
|
|
166
170
|
* <p>The filter's start date.</p>
|
|
167
171
|
*/
|
|
168
172
|
createdAfter?: Date;
|
|
169
173
|
/**
|
|
174
|
+
* @public
|
|
170
175
|
* <p>The filter's end date.</p>
|
|
171
176
|
*/
|
|
172
177
|
createdBefore?: Date;
|
|
@@ -177,22 +182,27 @@ export interface ActivateReadSetFilter {
|
|
|
177
182
|
*/
|
|
178
183
|
export interface ActivateReadSetJobItem {
|
|
179
184
|
/**
|
|
185
|
+
* @public
|
|
180
186
|
* <p>The job's ID.</p>
|
|
181
187
|
*/
|
|
182
188
|
id: string | undefined;
|
|
183
189
|
/**
|
|
190
|
+
* @public
|
|
184
191
|
* <p>The job's sequence store ID.</p>
|
|
185
192
|
*/
|
|
186
193
|
sequenceStoreId: string | undefined;
|
|
187
194
|
/**
|
|
195
|
+
* @public
|
|
188
196
|
* <p>The job's status.</p>
|
|
189
197
|
*/
|
|
190
198
|
status: ReadSetActivationJobStatus | string | undefined;
|
|
191
199
|
/**
|
|
200
|
+
* @public
|
|
192
201
|
* <p>When the job was created.</p>
|
|
193
202
|
*/
|
|
194
203
|
creationTime: Date | undefined;
|
|
195
204
|
/**
|
|
205
|
+
* @public
|
|
196
206
|
* <p>When the job completed.</p>
|
|
197
207
|
*/
|
|
198
208
|
completionTime?: Date;
|
|
@@ -217,14 +227,17 @@ export type ReadSetActivationJobItemStatus = (typeof ReadSetActivationJobItemSta
|
|
|
217
227
|
*/
|
|
218
228
|
export interface ActivateReadSetSourceItem {
|
|
219
229
|
/**
|
|
230
|
+
* @public
|
|
220
231
|
* <p>The source's read set ID.</p>
|
|
221
232
|
*/
|
|
222
233
|
readSetId: string | undefined;
|
|
223
234
|
/**
|
|
235
|
+
* @public
|
|
224
236
|
* <p>The source's status.</p>
|
|
225
237
|
*/
|
|
226
238
|
status: ReadSetActivationJobItemStatus | string | undefined;
|
|
227
239
|
/**
|
|
240
|
+
* @public
|
|
228
241
|
* <p>The source's status message.</p>
|
|
229
242
|
*/
|
|
230
243
|
statusMessage?: string;
|
|
@@ -269,10 +282,12 @@ export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
|
|
|
269
282
|
*/
|
|
270
283
|
export interface AnnotationImportItemDetail {
|
|
271
284
|
/**
|
|
285
|
+
* @public
|
|
272
286
|
* <p>The source file's location in Amazon S3.</p>
|
|
273
287
|
*/
|
|
274
288
|
source: string | undefined;
|
|
275
289
|
/**
|
|
290
|
+
* @public
|
|
276
291
|
* <p>The item's job status.</p>
|
|
277
292
|
*/
|
|
278
293
|
jobStatus: JobStatus | string | undefined;
|
|
@@ -283,6 +298,7 @@ export interface AnnotationImportItemDetail {
|
|
|
283
298
|
*/
|
|
284
299
|
export interface AnnotationImportItemSource {
|
|
285
300
|
/**
|
|
301
|
+
* @public
|
|
286
302
|
* <p>The source file's location in Amazon S3.</p>
|
|
287
303
|
*/
|
|
288
304
|
source: string | undefined;
|
|
@@ -292,6 +308,7 @@ export interface AnnotationImportItemSource {
|
|
|
292
308
|
*/
|
|
293
309
|
export interface CancelAnnotationImportRequest {
|
|
294
310
|
/**
|
|
311
|
+
* @public
|
|
295
312
|
* <p>The job's ID.</p>
|
|
296
313
|
*/
|
|
297
314
|
jobId: string | undefined;
|
|
@@ -306,6 +323,7 @@ export interface CancelAnnotationImportResponse {
|
|
|
306
323
|
*/
|
|
307
324
|
export interface GetAnnotationImportRequest {
|
|
308
325
|
/**
|
|
326
|
+
* @public
|
|
309
327
|
* <p>The job's ID.</p>
|
|
310
328
|
*/
|
|
311
329
|
jobId: string | undefined;
|
|
@@ -316,38 +334,47 @@ export interface GetAnnotationImportRequest {
|
|
|
316
334
|
*/
|
|
317
335
|
export interface ReadOptions {
|
|
318
336
|
/**
|
|
337
|
+
* @public
|
|
319
338
|
* <p>The file's field separator.</p>
|
|
320
339
|
*/
|
|
321
340
|
sep?: string;
|
|
322
341
|
/**
|
|
342
|
+
* @public
|
|
323
343
|
* <p>The file's encoding.</p>
|
|
324
344
|
*/
|
|
325
345
|
encoding?: string;
|
|
326
346
|
/**
|
|
347
|
+
* @public
|
|
327
348
|
* <p>The file's quote character.</p>
|
|
328
349
|
*/
|
|
329
350
|
quote?: string;
|
|
330
351
|
/**
|
|
352
|
+
* @public
|
|
331
353
|
* <p>Whether all values need to be quoted, or just those that contain quotes.</p>
|
|
332
354
|
*/
|
|
333
355
|
quoteAll?: boolean;
|
|
334
356
|
/**
|
|
357
|
+
* @public
|
|
335
358
|
* <p>A character for escaping quotes in the file.</p>
|
|
336
359
|
*/
|
|
337
360
|
escape?: string;
|
|
338
361
|
/**
|
|
362
|
+
* @public
|
|
339
363
|
* <p>Whether quotes need to be escaped in the file.</p>
|
|
340
364
|
*/
|
|
341
365
|
escapeQuotes?: boolean;
|
|
342
366
|
/**
|
|
367
|
+
* @public
|
|
343
368
|
* <p>The file's comment character.</p>
|
|
344
369
|
*/
|
|
345
370
|
comment?: string;
|
|
346
371
|
/**
|
|
372
|
+
* @public
|
|
347
373
|
* <p>Whether the file has a header row.</p>
|
|
348
374
|
*/
|
|
349
375
|
header?: boolean;
|
|
350
376
|
/**
|
|
377
|
+
* @public
|
|
351
378
|
* <p>A line separator for the file.</p>
|
|
352
379
|
*/
|
|
353
380
|
lineSep?: string;
|
|
@@ -358,6 +385,7 @@ export interface ReadOptions {
|
|
|
358
385
|
*/
|
|
359
386
|
export interface TsvOptions {
|
|
360
387
|
/**
|
|
388
|
+
* @public
|
|
361
389
|
* <p>The file's read options.</p>
|
|
362
390
|
*/
|
|
363
391
|
readOptions?: ReadOptions;
|
|
@@ -368,10 +396,12 @@ export interface TsvOptions {
|
|
|
368
396
|
*/
|
|
369
397
|
export interface VcfOptions {
|
|
370
398
|
/**
|
|
399
|
+
* @public
|
|
371
400
|
* <p>The file's ignore qual field setting.</p>
|
|
372
401
|
*/
|
|
373
402
|
ignoreQualField?: boolean;
|
|
374
403
|
/**
|
|
404
|
+
* @public
|
|
375
405
|
* <p>The file's ignore filter field setting.</p>
|
|
376
406
|
*/
|
|
377
407
|
ignoreFilterField?: boolean;
|
|
@@ -386,6 +416,7 @@ export type FormatOptions = FormatOptions.TsvOptionsMember | FormatOptions.VcfOp
|
|
|
386
416
|
*/
|
|
387
417
|
export declare namespace FormatOptions {
|
|
388
418
|
/**
|
|
419
|
+
* @public
|
|
389
420
|
* <p>Options for a TSV file.</p>
|
|
390
421
|
*/
|
|
391
422
|
interface TsvOptionsMember {
|
|
@@ -394,6 +425,7 @@ export declare namespace FormatOptions {
|
|
|
394
425
|
$unknown?: never;
|
|
395
426
|
}
|
|
396
427
|
/**
|
|
428
|
+
* @public
|
|
397
429
|
* <p>Options for a VCF file.</p>
|
|
398
430
|
*/
|
|
399
431
|
interface VcfOptionsMember {
|
|
@@ -401,6 +433,9 @@ export declare namespace FormatOptions {
|
|
|
401
433
|
vcfOptions: VcfOptions;
|
|
402
434
|
$unknown?: never;
|
|
403
435
|
}
|
|
436
|
+
/**
|
|
437
|
+
* @public
|
|
438
|
+
*/
|
|
404
439
|
interface $UnknownMember {
|
|
405
440
|
tsvOptions?: never;
|
|
406
441
|
vcfOptions?: never;
|
|
@@ -418,50 +453,62 @@ export declare namespace FormatOptions {
|
|
|
418
453
|
*/
|
|
419
454
|
export interface GetAnnotationImportResponse {
|
|
420
455
|
/**
|
|
456
|
+
* @public
|
|
421
457
|
* <p>The job's ID.</p>
|
|
422
458
|
*/
|
|
423
459
|
id: string | undefined;
|
|
424
460
|
/**
|
|
461
|
+
* @public
|
|
425
462
|
* <p>The job's destination annotation store.</p>
|
|
426
463
|
*/
|
|
427
464
|
destinationName: string | undefined;
|
|
428
465
|
/**
|
|
466
|
+
* @public
|
|
429
467
|
* <p>The job's service role ARN.</p>
|
|
430
468
|
*/
|
|
431
469
|
roleArn: string | undefined;
|
|
432
470
|
/**
|
|
471
|
+
* @public
|
|
433
472
|
* <p>The job's status.</p>
|
|
434
473
|
*/
|
|
435
474
|
status: JobStatus | string | undefined;
|
|
436
475
|
/**
|
|
476
|
+
* @public
|
|
437
477
|
* <p>The job's status message.</p>
|
|
438
478
|
*/
|
|
439
479
|
statusMessage: string | undefined;
|
|
440
480
|
/**
|
|
481
|
+
* @public
|
|
441
482
|
* <p>When the job was created.</p>
|
|
442
483
|
*/
|
|
443
484
|
creationTime: Date | undefined;
|
|
444
485
|
/**
|
|
486
|
+
* @public
|
|
445
487
|
* <p>When the job was updated.</p>
|
|
446
488
|
*/
|
|
447
489
|
updateTime: Date | undefined;
|
|
448
490
|
/**
|
|
491
|
+
* @public
|
|
449
492
|
* <p>When the job completed.</p>
|
|
450
493
|
*/
|
|
451
494
|
completionTime: Date | undefined;
|
|
452
495
|
/**
|
|
496
|
+
* @public
|
|
453
497
|
* <p>The job's imported items.</p>
|
|
454
498
|
*/
|
|
455
499
|
items: AnnotationImportItemDetail[] | undefined;
|
|
456
500
|
/**
|
|
501
|
+
* @public
|
|
457
502
|
* <p>The job's left normalization setting.</p>
|
|
458
503
|
*/
|
|
459
504
|
runLeftNormalization: boolean | undefined;
|
|
460
505
|
/**
|
|
506
|
+
* @public
|
|
461
507
|
* <p>Formatting options for a file.</p>
|
|
462
508
|
*/
|
|
463
509
|
formatOptions: FormatOptions | undefined;
|
|
464
510
|
/**
|
|
511
|
+
* @public
|
|
465
512
|
* <p>
|
|
466
513
|
* The annotation schema generated by the parsed annotation data.
|
|
467
514
|
* </p>
|
|
@@ -474,10 +521,12 @@ export interface GetAnnotationImportResponse {
|
|
|
474
521
|
*/
|
|
475
522
|
export interface ListAnnotationImportJobsFilter {
|
|
476
523
|
/**
|
|
524
|
+
* @public
|
|
477
525
|
* <p>A status to filter on.</p>
|
|
478
526
|
*/
|
|
479
527
|
status?: JobStatus | string;
|
|
480
528
|
/**
|
|
529
|
+
* @public
|
|
481
530
|
* <p>A store name to filter on.</p>
|
|
482
531
|
*/
|
|
483
532
|
storeName?: string;
|
|
@@ -487,18 +536,22 @@ export interface ListAnnotationImportJobsFilter {
|
|
|
487
536
|
*/
|
|
488
537
|
export interface ListAnnotationImportJobsRequest {
|
|
489
538
|
/**
|
|
539
|
+
* @public
|
|
490
540
|
* <p>The maximum number of jobs to return in one page of results.</p>
|
|
491
541
|
*/
|
|
492
542
|
maxResults?: number;
|
|
493
543
|
/**
|
|
544
|
+
* @public
|
|
494
545
|
* <p>IDs of annotation import jobs to retrieve.</p>
|
|
495
546
|
*/
|
|
496
547
|
ids?: string[];
|
|
497
548
|
/**
|
|
549
|
+
* @public
|
|
498
550
|
* <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
|
|
499
551
|
*/
|
|
500
552
|
nextToken?: string;
|
|
501
553
|
/**
|
|
554
|
+
* @public
|
|
502
555
|
* <p>A filter to apply to the list.</p>
|
|
503
556
|
*/
|
|
504
557
|
filter?: ListAnnotationImportJobsFilter;
|
|
@@ -509,38 +562,47 @@ export interface ListAnnotationImportJobsRequest {
|
|
|
509
562
|
*/
|
|
510
563
|
export interface AnnotationImportJobItem {
|
|
511
564
|
/**
|
|
565
|
+
* @public
|
|
512
566
|
* <p>The job's ID.</p>
|
|
513
567
|
*/
|
|
514
568
|
id: string | undefined;
|
|
515
569
|
/**
|
|
570
|
+
* @public
|
|
516
571
|
* <p>The job's destination annotation store.</p>
|
|
517
572
|
*/
|
|
518
573
|
destinationName: string | undefined;
|
|
519
574
|
/**
|
|
575
|
+
* @public
|
|
520
576
|
* <p>The job's service role ARN.</p>
|
|
521
577
|
*/
|
|
522
578
|
roleArn: string | undefined;
|
|
523
579
|
/**
|
|
580
|
+
* @public
|
|
524
581
|
* <p>The job's status.</p>
|
|
525
582
|
*/
|
|
526
583
|
status: JobStatus | string | undefined;
|
|
527
584
|
/**
|
|
585
|
+
* @public
|
|
528
586
|
* <p>When the job was created.</p>
|
|
529
587
|
*/
|
|
530
588
|
creationTime: Date | undefined;
|
|
531
589
|
/**
|
|
590
|
+
* @public
|
|
532
591
|
* <p>When the job was updated.</p>
|
|
533
592
|
*/
|
|
534
593
|
updateTime: Date | undefined;
|
|
535
594
|
/**
|
|
595
|
+
* @public
|
|
536
596
|
* <p>When the job completed.</p>
|
|
537
597
|
*/
|
|
538
598
|
completionTime?: Date;
|
|
539
599
|
/**
|
|
600
|
+
* @public
|
|
540
601
|
* <p>The job's left normalization setting.</p>
|
|
541
602
|
*/
|
|
542
603
|
runLeftNormalization?: boolean;
|
|
543
604
|
/**
|
|
605
|
+
* @public
|
|
544
606
|
* <p>
|
|
545
607
|
* The annotation schema generated by the parsed annotation data.
|
|
546
608
|
* </p>
|
|
@@ -552,10 +614,12 @@ export interface AnnotationImportJobItem {
|
|
|
552
614
|
*/
|
|
553
615
|
export interface ListAnnotationImportJobsResponse {
|
|
554
616
|
/**
|
|
617
|
+
* @public
|
|
555
618
|
* <p>A list of jobs.</p>
|
|
556
619
|
*/
|
|
557
620
|
annotationImportJobs?: AnnotationImportJobItem[];
|
|
558
621
|
/**
|
|
622
|
+
* @public
|
|
559
623
|
* <p>A pagination token that's included if more results are available.</p>
|
|
560
624
|
*/
|
|
561
625
|
nextToken?: string;
|
|
@@ -565,26 +629,32 @@ export interface ListAnnotationImportJobsResponse {
|
|
|
565
629
|
*/
|
|
566
630
|
export interface StartAnnotationImportRequest {
|
|
567
631
|
/**
|
|
632
|
+
* @public
|
|
568
633
|
* <p>A destination annotation store for the job.</p>
|
|
569
634
|
*/
|
|
570
635
|
destinationName: string | undefined;
|
|
571
636
|
/**
|
|
637
|
+
* @public
|
|
572
638
|
* <p>A service role for the job.</p>
|
|
573
639
|
*/
|
|
574
640
|
roleArn: string | undefined;
|
|
575
641
|
/**
|
|
642
|
+
* @public
|
|
576
643
|
* <p>Items to import.</p>
|
|
577
644
|
*/
|
|
578
645
|
items: AnnotationImportItemSource[] | undefined;
|
|
579
646
|
/**
|
|
647
|
+
* @public
|
|
580
648
|
* <p>Formatting options for the annotation file.</p>
|
|
581
649
|
*/
|
|
582
650
|
formatOptions?: FormatOptions;
|
|
583
651
|
/**
|
|
652
|
+
* @public
|
|
584
653
|
* <p>The job's left normalization setting.</p>
|
|
585
654
|
*/
|
|
586
655
|
runLeftNormalization?: boolean;
|
|
587
656
|
/**
|
|
657
|
+
* @public
|
|
588
658
|
* <p>
|
|
589
659
|
* The annotation schema generated by the parsed annotation data.
|
|
590
660
|
* </p>
|
|
@@ -596,6 +666,7 @@ export interface StartAnnotationImportRequest {
|
|
|
596
666
|
*/
|
|
597
667
|
export interface StartAnnotationImportResponse {
|
|
598
668
|
/**
|
|
669
|
+
* @public
|
|
599
670
|
* <p>The job's ID.</p>
|
|
600
671
|
*/
|
|
601
672
|
jobId: string | undefined;
|
|
@@ -622,12 +693,16 @@ export type ReferenceItem = ReferenceItem.ReferenceArnMember | ReferenceItem.$Un
|
|
|
622
693
|
*/
|
|
623
694
|
export declare namespace ReferenceItem {
|
|
624
695
|
/**
|
|
696
|
+
* @public
|
|
625
697
|
* <p>The reference's ARN.</p>
|
|
626
698
|
*/
|
|
627
699
|
interface ReferenceArnMember {
|
|
628
700
|
referenceArn: string;
|
|
629
701
|
$unknown?: never;
|
|
630
702
|
}
|
|
703
|
+
/**
|
|
704
|
+
* @public
|
|
705
|
+
*/
|
|
631
706
|
interface $UnknownMember {
|
|
632
707
|
referenceArn?: never;
|
|
633
708
|
$unknown: [string, any];
|
|
@@ -658,10 +733,12 @@ export type EncryptionType = (typeof EncryptionType)[keyof typeof EncryptionType
|
|
|
658
733
|
*/
|
|
659
734
|
export interface SseConfig {
|
|
660
735
|
/**
|
|
736
|
+
* @public
|
|
661
737
|
* <p>The encryption type.</p>
|
|
662
738
|
*/
|
|
663
739
|
type: EncryptionType | string | undefined;
|
|
664
740
|
/**
|
|
741
|
+
* @public
|
|
665
742
|
* <p>An encryption key ARN.</p>
|
|
666
743
|
*/
|
|
667
744
|
keyArn?: string;
|
|
@@ -782,14 +859,17 @@ export type SchemaValueType = (typeof SchemaValueType)[keyof typeof SchemaValueT
|
|
|
782
859
|
*/
|
|
783
860
|
export interface TsvStoreOptions {
|
|
784
861
|
/**
|
|
862
|
+
* @public
|
|
785
863
|
* <p>The store's annotation type.</p>
|
|
786
864
|
*/
|
|
787
865
|
annotationType?: AnnotationType | string;
|
|
788
866
|
/**
|
|
867
|
+
* @public
|
|
789
868
|
* <p>The store's header key to column name mapping.</p>
|
|
790
869
|
*/
|
|
791
870
|
formatToHeader?: Record<string, string>;
|
|
792
871
|
/**
|
|
872
|
+
* @public
|
|
793
873
|
* <p>The store's schema.</p>
|
|
794
874
|
*/
|
|
795
875
|
schema?: Record<string, SchemaValueType | string>[];
|
|
@@ -804,12 +884,16 @@ export type StoreOptions = StoreOptions.TsvStoreOptionsMember | StoreOptions.$Un
|
|
|
804
884
|
*/
|
|
805
885
|
export declare namespace StoreOptions {
|
|
806
886
|
/**
|
|
887
|
+
* @public
|
|
807
888
|
* <p>File settings for a TSV store.</p>
|
|
808
889
|
*/
|
|
809
890
|
interface TsvStoreOptionsMember {
|
|
810
891
|
tsvStoreOptions: TsvStoreOptions;
|
|
811
892
|
$unknown?: never;
|
|
812
893
|
}
|
|
894
|
+
/**
|
|
895
|
+
* @public
|
|
896
|
+
*/
|
|
813
897
|
interface $UnknownMember {
|
|
814
898
|
tsvStoreOptions?: never;
|
|
815
899
|
$unknown: [string, any];
|
|
@@ -825,30 +909,37 @@ export declare namespace StoreOptions {
|
|
|
825
909
|
*/
|
|
826
910
|
export interface CreateAnnotationStoreRequest {
|
|
827
911
|
/**
|
|
912
|
+
* @public
|
|
828
913
|
* <p>The genome reference for the store's annotations.</p>
|
|
829
914
|
*/
|
|
830
915
|
reference?: ReferenceItem;
|
|
831
916
|
/**
|
|
917
|
+
* @public
|
|
832
918
|
* <p>A name for the store.</p>
|
|
833
919
|
*/
|
|
834
920
|
name?: string;
|
|
835
921
|
/**
|
|
922
|
+
* @public
|
|
836
923
|
* <p>A description for the store.</p>
|
|
837
924
|
*/
|
|
838
925
|
description?: string;
|
|
839
926
|
/**
|
|
927
|
+
* @public
|
|
840
928
|
* <p>Tags for the store.</p>
|
|
841
929
|
*/
|
|
842
930
|
tags?: Record<string, string>;
|
|
843
931
|
/**
|
|
932
|
+
* @public
|
|
844
933
|
* <p>Server-side encryption (SSE) settings for the store.</p>
|
|
845
934
|
*/
|
|
846
935
|
sseConfig?: SseConfig;
|
|
847
936
|
/**
|
|
937
|
+
* @public
|
|
848
938
|
* <p>The annotation file format of the store.</p>
|
|
849
939
|
*/
|
|
850
940
|
storeFormat: StoreFormat | string | undefined;
|
|
851
941
|
/**
|
|
942
|
+
* @public
|
|
852
943
|
* <p>File parsing options for the annotation store.</p>
|
|
853
944
|
*/
|
|
854
945
|
storeOptions?: StoreOptions;
|
|
@@ -888,30 +979,37 @@ export type StoreStatus = (typeof StoreStatus)[keyof typeof StoreStatus];
|
|
|
888
979
|
*/
|
|
889
980
|
export interface CreateAnnotationStoreResponse {
|
|
890
981
|
/**
|
|
982
|
+
* @public
|
|
891
983
|
* <p>The store's ID.</p>
|
|
892
984
|
*/
|
|
893
985
|
id: string | undefined;
|
|
894
986
|
/**
|
|
987
|
+
* @public
|
|
895
988
|
* <p>The store's genome reference. Required for all stores except TSV format with generic annotations.</p>
|
|
896
989
|
*/
|
|
897
990
|
reference?: ReferenceItem;
|
|
898
991
|
/**
|
|
992
|
+
* @public
|
|
899
993
|
* <p>The annotation file format of the store.</p>
|
|
900
994
|
*/
|
|
901
995
|
storeFormat?: StoreFormat | string;
|
|
902
996
|
/**
|
|
997
|
+
* @public
|
|
903
998
|
* <p>The store's file parsing options.</p>
|
|
904
999
|
*/
|
|
905
1000
|
storeOptions?: StoreOptions;
|
|
906
1001
|
/**
|
|
1002
|
+
* @public
|
|
907
1003
|
* <p>The store's status.</p>
|
|
908
1004
|
*/
|
|
909
1005
|
status: StoreStatus | string | undefined;
|
|
910
1006
|
/**
|
|
1007
|
+
* @public
|
|
911
1008
|
* <p>The store's name.</p>
|
|
912
1009
|
*/
|
|
913
1010
|
name: string | undefined;
|
|
914
1011
|
/**
|
|
1012
|
+
* @public
|
|
915
1013
|
* <p>When the store was created.</p>
|
|
916
1014
|
*/
|
|
917
1015
|
creationTime: Date | undefined;
|
|
@@ -921,10 +1019,12 @@ export interface CreateAnnotationStoreResponse {
|
|
|
921
1019
|
*/
|
|
922
1020
|
export interface DeleteAnnotationStoreRequest {
|
|
923
1021
|
/**
|
|
1022
|
+
* @public
|
|
924
1023
|
* <p>The store's name.</p>
|
|
925
1024
|
*/
|
|
926
1025
|
name: string | undefined;
|
|
927
1026
|
/**
|
|
1027
|
+
* @public
|
|
928
1028
|
* <p>Whether to force deletion.</p>
|
|
929
1029
|
*/
|
|
930
1030
|
force?: boolean;
|
|
@@ -934,6 +1034,7 @@ export interface DeleteAnnotationStoreRequest {
|
|
|
934
1034
|
*/
|
|
935
1035
|
export interface DeleteAnnotationStoreResponse {
|
|
936
1036
|
/**
|
|
1037
|
+
* @public
|
|
937
1038
|
* <p>The store's status.</p>
|
|
938
1039
|
*/
|
|
939
1040
|
status: StoreStatus | string | undefined;
|
|
@@ -943,6 +1044,7 @@ export interface DeleteAnnotationStoreResponse {
|
|
|
943
1044
|
*/
|
|
944
1045
|
export interface GetAnnotationStoreRequest {
|
|
945
1046
|
/**
|
|
1047
|
+
* @public
|
|
946
1048
|
* <p>The store's name.</p>
|
|
947
1049
|
*/
|
|
948
1050
|
name: string | undefined;
|
|
@@ -952,58 +1054,72 @@ export interface GetAnnotationStoreRequest {
|
|
|
952
1054
|
*/
|
|
953
1055
|
export interface GetAnnotationStoreResponse {
|
|
954
1056
|
/**
|
|
1057
|
+
* @public
|
|
955
1058
|
* <p>The store's ID.</p>
|
|
956
1059
|
*/
|
|
957
1060
|
id: string | undefined;
|
|
958
1061
|
/**
|
|
1062
|
+
* @public
|
|
959
1063
|
* <p>The store's genome reference.</p>
|
|
960
1064
|
*/
|
|
961
1065
|
reference: ReferenceItem | undefined;
|
|
962
1066
|
/**
|
|
1067
|
+
* @public
|
|
963
1068
|
* <p>The store's status.</p>
|
|
964
1069
|
*/
|
|
965
1070
|
status: StoreStatus | string | undefined;
|
|
966
1071
|
/**
|
|
1072
|
+
* @public
|
|
967
1073
|
* <p>The store's ARN.</p>
|
|
968
1074
|
*/
|
|
969
1075
|
storeArn: string | undefined;
|
|
970
1076
|
/**
|
|
1077
|
+
* @public
|
|
971
1078
|
* <p>The store's name.</p>
|
|
972
1079
|
*/
|
|
973
1080
|
name: string | undefined;
|
|
974
1081
|
/**
|
|
1082
|
+
* @public
|
|
975
1083
|
* <p>The store's description.</p>
|
|
976
1084
|
*/
|
|
977
1085
|
description: string | undefined;
|
|
978
1086
|
/**
|
|
1087
|
+
* @public
|
|
979
1088
|
* <p>The store's server-side encryption (SSE) settings.</p>
|
|
980
1089
|
*/
|
|
981
1090
|
sseConfig: SseConfig | undefined;
|
|
982
1091
|
/**
|
|
1092
|
+
* @public
|
|
983
1093
|
* <p>When the store was created.</p>
|
|
984
1094
|
*/
|
|
985
1095
|
creationTime: Date | undefined;
|
|
986
1096
|
/**
|
|
1097
|
+
* @public
|
|
987
1098
|
* <p>When the store was updated.</p>
|
|
988
1099
|
*/
|
|
989
1100
|
updateTime: Date | undefined;
|
|
990
1101
|
/**
|
|
1102
|
+
* @public
|
|
991
1103
|
* <p>The store's tags.</p>
|
|
992
1104
|
*/
|
|
993
1105
|
tags: Record<string, string> | undefined;
|
|
994
1106
|
/**
|
|
1107
|
+
* @public
|
|
995
1108
|
* <p>The store's parsing options.</p>
|
|
996
1109
|
*/
|
|
997
1110
|
storeOptions?: StoreOptions;
|
|
998
1111
|
/**
|
|
1112
|
+
* @public
|
|
999
1113
|
* <p>The store's annotation file format.</p>
|
|
1000
1114
|
*/
|
|
1001
1115
|
storeFormat?: StoreFormat | string;
|
|
1002
1116
|
/**
|
|
1117
|
+
* @public
|
|
1003
1118
|
* <p>A status message.</p>
|
|
1004
1119
|
*/
|
|
1005
1120
|
statusMessage: string | undefined;
|
|
1006
1121
|
/**
|
|
1122
|
+
* @public
|
|
1007
1123
|
* <p>The store's size in bytes.</p>
|
|
1008
1124
|
*/
|
|
1009
1125
|
storeSizeBytes: number | undefined;
|
|
@@ -1014,6 +1130,7 @@ export interface GetAnnotationStoreResponse {
|
|
|
1014
1130
|
*/
|
|
1015
1131
|
export interface ListAnnotationStoresFilter {
|
|
1016
1132
|
/**
|
|
1133
|
+
* @public
|
|
1017
1134
|
* <p>A status to filter on.</p>
|
|
1018
1135
|
*/
|
|
1019
1136
|
status?: StoreStatus | string;
|
|
@@ -1023,18 +1140,22 @@ export interface ListAnnotationStoresFilter {
|
|
|
1023
1140
|
*/
|
|
1024
1141
|
export interface ListAnnotationStoresRequest {
|
|
1025
1142
|
/**
|
|
1143
|
+
* @public
|
|
1026
1144
|
* <p>IDs of stores to list.</p>
|
|
1027
1145
|
*/
|
|
1028
1146
|
ids?: string[];
|
|
1029
1147
|
/**
|
|
1148
|
+
* @public
|
|
1030
1149
|
* <p>The maximum number of stores to return in one page of results.</p>
|
|
1031
1150
|
*/
|
|
1032
1151
|
maxResults?: number;
|
|
1033
1152
|
/**
|
|
1153
|
+
* @public
|
|
1034
1154
|
* <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
|
|
1035
1155
|
*/
|
|
1036
1156
|
nextToken?: string;
|
|
1037
1157
|
/**
|
|
1158
|
+
* @public
|
|
1038
1159
|
* <p>A filter to apply to the list.</p>
|
|
1039
1160
|
*/
|
|
1040
1161
|
filter?: ListAnnotationStoresFilter;
|
|
@@ -1045,50 +1166,62 @@ export interface ListAnnotationStoresRequest {
|
|
|
1045
1166
|
*/
|
|
1046
1167
|
export interface AnnotationStoreItem {
|
|
1047
1168
|
/**
|
|
1169
|
+
* @public
|
|
1048
1170
|
* <p>The store's ID.</p>
|
|
1049
1171
|
*/
|
|
1050
1172
|
id: string | undefined;
|
|
1051
1173
|
/**
|
|
1174
|
+
* @public
|
|
1052
1175
|
* <p>The store's genome reference.</p>
|
|
1053
1176
|
*/
|
|
1054
1177
|
reference: ReferenceItem | undefined;
|
|
1055
1178
|
/**
|
|
1179
|
+
* @public
|
|
1056
1180
|
* <p>The store's status.</p>
|
|
1057
1181
|
*/
|
|
1058
1182
|
status: StoreStatus | string | undefined;
|
|
1059
1183
|
/**
|
|
1184
|
+
* @public
|
|
1060
1185
|
* <p>The store's ARN.</p>
|
|
1061
1186
|
*/
|
|
1062
1187
|
storeArn: string | undefined;
|
|
1063
1188
|
/**
|
|
1189
|
+
* @public
|
|
1064
1190
|
* <p>The store's name.</p>
|
|
1065
1191
|
*/
|
|
1066
1192
|
name: string | undefined;
|
|
1067
1193
|
/**
|
|
1194
|
+
* @public
|
|
1068
1195
|
* <p>The store's file format.</p>
|
|
1069
1196
|
*/
|
|
1070
1197
|
storeFormat: StoreFormat | string | undefined;
|
|
1071
1198
|
/**
|
|
1199
|
+
* @public
|
|
1072
1200
|
* <p>The store's description.</p>
|
|
1073
1201
|
*/
|
|
1074
1202
|
description: string | undefined;
|
|
1075
1203
|
/**
|
|
1204
|
+
* @public
|
|
1076
1205
|
* <p>The store's server-side encryption (SSE) settings.</p>
|
|
1077
1206
|
*/
|
|
1078
1207
|
sseConfig: SseConfig | undefined;
|
|
1079
1208
|
/**
|
|
1209
|
+
* @public
|
|
1080
1210
|
* <p>The store's creation time.</p>
|
|
1081
1211
|
*/
|
|
1082
1212
|
creationTime: Date | undefined;
|
|
1083
1213
|
/**
|
|
1214
|
+
* @public
|
|
1084
1215
|
* <p>When the store was updated.</p>
|
|
1085
1216
|
*/
|
|
1086
1217
|
updateTime: Date | undefined;
|
|
1087
1218
|
/**
|
|
1219
|
+
* @public
|
|
1088
1220
|
* <p>The store's status message.</p>
|
|
1089
1221
|
*/
|
|
1090
1222
|
statusMessage: string | undefined;
|
|
1091
1223
|
/**
|
|
1224
|
+
* @public
|
|
1092
1225
|
* <p>The store's size in bytes.</p>
|
|
1093
1226
|
*/
|
|
1094
1227
|
storeSizeBytes: number | undefined;
|
|
@@ -1098,10 +1231,12 @@ export interface AnnotationStoreItem {
|
|
|
1098
1231
|
*/
|
|
1099
1232
|
export interface ListAnnotationStoresResponse {
|
|
1100
1233
|
/**
|
|
1234
|
+
* @public
|
|
1101
1235
|
* <p>A list of stores.</p>
|
|
1102
1236
|
*/
|
|
1103
1237
|
annotationStores?: AnnotationStoreItem[];
|
|
1104
1238
|
/**
|
|
1239
|
+
* @public
|
|
1105
1240
|
* <p>A pagination token that's included if more results are available.</p>
|
|
1106
1241
|
*/
|
|
1107
1242
|
nextToken?: string;
|
|
@@ -1111,10 +1246,12 @@ export interface ListAnnotationStoresResponse {
|
|
|
1111
1246
|
*/
|
|
1112
1247
|
export interface UpdateAnnotationStoreRequest {
|
|
1113
1248
|
/**
|
|
1249
|
+
* @public
|
|
1114
1250
|
* <p>A name for the store.</p>
|
|
1115
1251
|
*/
|
|
1116
1252
|
name: string | undefined;
|
|
1117
1253
|
/**
|
|
1254
|
+
* @public
|
|
1118
1255
|
* <p>A description for the store.</p>
|
|
1119
1256
|
*/
|
|
1120
1257
|
description?: string;
|
|
@@ -1124,38 +1261,47 @@ export interface UpdateAnnotationStoreRequest {
|
|
|
1124
1261
|
*/
|
|
1125
1262
|
export interface UpdateAnnotationStoreResponse {
|
|
1126
1263
|
/**
|
|
1264
|
+
* @public
|
|
1127
1265
|
* <p>The store's ID.</p>
|
|
1128
1266
|
*/
|
|
1129
1267
|
id: string | undefined;
|
|
1130
1268
|
/**
|
|
1269
|
+
* @public
|
|
1131
1270
|
* <p>The store's genome reference.</p>
|
|
1132
1271
|
*/
|
|
1133
1272
|
reference: ReferenceItem | undefined;
|
|
1134
1273
|
/**
|
|
1274
|
+
* @public
|
|
1135
1275
|
* <p>The store's status.</p>
|
|
1136
1276
|
*/
|
|
1137
1277
|
status: StoreStatus | string | undefined;
|
|
1138
1278
|
/**
|
|
1279
|
+
* @public
|
|
1139
1280
|
* <p>The store's name.</p>
|
|
1140
1281
|
*/
|
|
1141
1282
|
name: string | undefined;
|
|
1142
1283
|
/**
|
|
1284
|
+
* @public
|
|
1143
1285
|
* <p>The store's description.</p>
|
|
1144
1286
|
*/
|
|
1145
1287
|
description: string | undefined;
|
|
1146
1288
|
/**
|
|
1289
|
+
* @public
|
|
1147
1290
|
* <p>When the store was created.</p>
|
|
1148
1291
|
*/
|
|
1149
1292
|
creationTime: Date | undefined;
|
|
1150
1293
|
/**
|
|
1294
|
+
* @public
|
|
1151
1295
|
* <p>When the store was updated.</p>
|
|
1152
1296
|
*/
|
|
1153
1297
|
updateTime: Date | undefined;
|
|
1154
1298
|
/**
|
|
1299
|
+
* @public
|
|
1155
1300
|
* <p>Parsing options for the store.</p>
|
|
1156
1301
|
*/
|
|
1157
1302
|
storeOptions?: StoreOptions;
|
|
1158
1303
|
/**
|
|
1304
|
+
* @public
|
|
1159
1305
|
* <p>The annotation file format of the store.</p>
|
|
1160
1306
|
*/
|
|
1161
1307
|
storeFormat?: StoreFormat | string;
|
|
@@ -1165,10 +1311,12 @@ export interface UpdateAnnotationStoreResponse {
|
|
|
1165
1311
|
*/
|
|
1166
1312
|
export interface BatchDeleteReadSetRequest {
|
|
1167
1313
|
/**
|
|
1314
|
+
* @public
|
|
1168
1315
|
* <p>The read sets' IDs.</p>
|
|
1169
1316
|
*/
|
|
1170
1317
|
ids: string[] | undefined;
|
|
1171
1318
|
/**
|
|
1319
|
+
* @public
|
|
1172
1320
|
* <p>The read sets' sequence store ID.</p>
|
|
1173
1321
|
*/
|
|
1174
1322
|
sequenceStoreId: string | undefined;
|
|
@@ -1179,14 +1327,17 @@ export interface BatchDeleteReadSetRequest {
|
|
|
1179
1327
|
*/
|
|
1180
1328
|
export interface ReadSetBatchError {
|
|
1181
1329
|
/**
|
|
1330
|
+
* @public
|
|
1182
1331
|
* <p>The error's ID.</p>
|
|
1183
1332
|
*/
|
|
1184
1333
|
id: string | undefined;
|
|
1185
1334
|
/**
|
|
1335
|
+
* @public
|
|
1186
1336
|
* <p>The error's code.</p>
|
|
1187
1337
|
*/
|
|
1188
1338
|
code: string | undefined;
|
|
1189
1339
|
/**
|
|
1340
|
+
* @public
|
|
1190
1341
|
* <p>The error's message.</p>
|
|
1191
1342
|
*/
|
|
1192
1343
|
message: string | undefined;
|
|
@@ -1196,6 +1347,7 @@ export interface ReadSetBatchError {
|
|
|
1196
1347
|
*/
|
|
1197
1348
|
export interface BatchDeleteReadSetResponse {
|
|
1198
1349
|
/**
|
|
1350
|
+
* @public
|
|
1199
1351
|
* <p>Errors returned by individual delete operations.</p>
|
|
1200
1352
|
*/
|
|
1201
1353
|
errors?: ReadSetBatchError[];
|
|
@@ -1205,6 +1357,7 @@ export interface BatchDeleteReadSetResponse {
|
|
|
1205
1357
|
*/
|
|
1206
1358
|
export interface CancelRunRequest {
|
|
1207
1359
|
/**
|
|
1360
|
+
* @public
|
|
1208
1361
|
* <p>The run's ID.</p>
|
|
1209
1362
|
*/
|
|
1210
1363
|
id: string | undefined;
|
|
@@ -1214,6 +1367,7 @@ export interface CancelRunRequest {
|
|
|
1214
1367
|
*/
|
|
1215
1368
|
export interface CancelVariantImportRequest {
|
|
1216
1369
|
/**
|
|
1370
|
+
* @public
|
|
1217
1371
|
* <p>The job's ID.</p>
|
|
1218
1372
|
*/
|
|
1219
1373
|
jobId: string | undefined;
|
|
@@ -1243,18 +1397,21 @@ export type ReadSetPartSource = (typeof ReadSetPartSource)[keyof typeof ReadSetP
|
|
|
1243
1397
|
*/
|
|
1244
1398
|
export interface CompleteReadSetUploadPartListItem {
|
|
1245
1399
|
/**
|
|
1400
|
+
* @public
|
|
1246
1401
|
* <p>
|
|
1247
1402
|
* A number identifying the part in a read set upload.
|
|
1248
1403
|
* </p>
|
|
1249
1404
|
*/
|
|
1250
1405
|
partNumber: number | undefined;
|
|
1251
1406
|
/**
|
|
1407
|
+
* @public
|
|
1252
1408
|
* <p>
|
|
1253
1409
|
* The source file of the part being uploaded.
|
|
1254
1410
|
* </p>
|
|
1255
1411
|
*/
|
|
1256
1412
|
partSource: ReadSetPartSource | string | undefined;
|
|
1257
1413
|
/**
|
|
1414
|
+
* @public
|
|
1258
1415
|
* <p>
|
|
1259
1416
|
* A unique identifier used to confirm that parts are being added to the correct upload.
|
|
1260
1417
|
* </p>
|
|
@@ -1266,18 +1423,21 @@ export interface CompleteReadSetUploadPartListItem {
|
|
|
1266
1423
|
*/
|
|
1267
1424
|
export interface CompleteMultipartReadSetUploadRequest {
|
|
1268
1425
|
/**
|
|
1426
|
+
* @public
|
|
1269
1427
|
* <p>
|
|
1270
1428
|
* The sequence store ID for the store involved in the multipart upload.
|
|
1271
1429
|
* </p>
|
|
1272
1430
|
*/
|
|
1273
1431
|
sequenceStoreId: string | undefined;
|
|
1274
1432
|
/**
|
|
1433
|
+
* @public
|
|
1275
1434
|
* <p>
|
|
1276
1435
|
* The ID for the multipart upload.
|
|
1277
1436
|
* </p>
|
|
1278
1437
|
*/
|
|
1279
1438
|
uploadId: string | undefined;
|
|
1280
1439
|
/**
|
|
1440
|
+
* @public
|
|
1281
1441
|
* <p>
|
|
1282
1442
|
* The individual uploads or parts of a multipart upload.
|
|
1283
1443
|
* </p>
|
|
@@ -1289,6 +1449,7 @@ export interface CompleteMultipartReadSetUploadRequest {
|
|
|
1289
1449
|
*/
|
|
1290
1450
|
export interface CompleteMultipartReadSetUploadResponse {
|
|
1291
1451
|
/**
|
|
1452
|
+
* @public
|
|
1292
1453
|
* <p>
|
|
1293
1454
|
* The read set ID created for an uploaded read set.
|
|
1294
1455
|
* </p>
|
|
@@ -1313,60 +1474,70 @@ export type FileType = (typeof FileType)[keyof typeof FileType];
|
|
|
1313
1474
|
*/
|
|
1314
1475
|
export interface CreateMultipartReadSetUploadRequest {
|
|
1315
1476
|
/**
|
|
1477
|
+
* @public
|
|
1316
1478
|
* <p>
|
|
1317
1479
|
* The sequence store ID for the store that is the destination of the multipart uploads.
|
|
1318
1480
|
* </p>
|
|
1319
1481
|
*/
|
|
1320
1482
|
sequenceStoreId: string | undefined;
|
|
1321
1483
|
/**
|
|
1484
|
+
* @public
|
|
1322
1485
|
* <p>
|
|
1323
1486
|
* An idempotency token that can be used to avoid triggering multiple multipart uploads.
|
|
1324
1487
|
* </p>
|
|
1325
1488
|
*/
|
|
1326
1489
|
clientToken?: string;
|
|
1327
1490
|
/**
|
|
1491
|
+
* @public
|
|
1328
1492
|
* <p>
|
|
1329
1493
|
* The type of file being uploaded.
|
|
1330
1494
|
* </p>
|
|
1331
1495
|
*/
|
|
1332
1496
|
sourceFileType: FileType | string | undefined;
|
|
1333
1497
|
/**
|
|
1498
|
+
* @public
|
|
1334
1499
|
* <p>
|
|
1335
1500
|
* The source's subject ID.
|
|
1336
1501
|
* </p>
|
|
1337
1502
|
*/
|
|
1338
1503
|
subjectId: string | undefined;
|
|
1339
1504
|
/**
|
|
1505
|
+
* @public
|
|
1340
1506
|
* <p>
|
|
1341
1507
|
* The source's sample ID.
|
|
1342
1508
|
* </p>
|
|
1343
1509
|
*/
|
|
1344
1510
|
sampleId: string | undefined;
|
|
1345
1511
|
/**
|
|
1512
|
+
* @public
|
|
1346
1513
|
* <p>
|
|
1347
1514
|
* Where the source originated.
|
|
1348
1515
|
* </p>
|
|
1349
1516
|
*/
|
|
1350
1517
|
generatedFrom?: string;
|
|
1351
1518
|
/**
|
|
1519
|
+
* @public
|
|
1352
1520
|
* <p>
|
|
1353
1521
|
* The ARN of the reference.
|
|
1354
1522
|
* </p>
|
|
1355
1523
|
*/
|
|
1356
1524
|
referenceArn: string | undefined;
|
|
1357
1525
|
/**
|
|
1526
|
+
* @public
|
|
1358
1527
|
* <p>
|
|
1359
1528
|
* The name of the read set.
|
|
1360
1529
|
* </p>
|
|
1361
1530
|
*/
|
|
1362
1531
|
name: string | undefined;
|
|
1363
1532
|
/**
|
|
1533
|
+
* @public
|
|
1364
1534
|
* <p>
|
|
1365
1535
|
* The description of the read set.
|
|
1366
1536
|
* </p>
|
|
1367
1537
|
*/
|
|
1368
1538
|
description?: string;
|
|
1369
1539
|
/**
|
|
1540
|
+
* @public
|
|
1370
1541
|
* <p>
|
|
1371
1542
|
* Any tags to add to the read set.
|
|
1372
1543
|
* </p>
|
|
@@ -1378,66 +1549,77 @@ export interface CreateMultipartReadSetUploadRequest {
|
|
|
1378
1549
|
*/
|
|
1379
1550
|
export interface CreateMultipartReadSetUploadResponse {
|
|
1380
1551
|
/**
|
|
1552
|
+
* @public
|
|
1381
1553
|
* <p>
|
|
1382
1554
|
* The sequence store ID for the store that the read set will be created in.
|
|
1383
1555
|
* </p>
|
|
1384
1556
|
*/
|
|
1385
1557
|
sequenceStoreId: string | undefined;
|
|
1386
1558
|
/**
|
|
1559
|
+
* @public
|
|
1387
1560
|
* <p>
|
|
1388
1561
|
* he ID for the initiated multipart upload.
|
|
1389
1562
|
* </p>
|
|
1390
1563
|
*/
|
|
1391
1564
|
uploadId: string | undefined;
|
|
1392
1565
|
/**
|
|
1566
|
+
* @public
|
|
1393
1567
|
* <p>
|
|
1394
1568
|
* The file type of the read set source.
|
|
1395
1569
|
* </p>
|
|
1396
1570
|
*/
|
|
1397
1571
|
sourceFileType: FileType | string | undefined;
|
|
1398
1572
|
/**
|
|
1573
|
+
* @public
|
|
1399
1574
|
* <p>
|
|
1400
1575
|
* The source's subject ID.
|
|
1401
1576
|
* </p>
|
|
1402
1577
|
*/
|
|
1403
1578
|
subjectId: string | undefined;
|
|
1404
1579
|
/**
|
|
1580
|
+
* @public
|
|
1405
1581
|
* <p>
|
|
1406
1582
|
* The source's sample ID.
|
|
1407
1583
|
* </p>
|
|
1408
1584
|
*/
|
|
1409
1585
|
sampleId: string | undefined;
|
|
1410
1586
|
/**
|
|
1587
|
+
* @public
|
|
1411
1588
|
* <p>
|
|
1412
1589
|
* The source of the read set.
|
|
1413
1590
|
* </p>
|
|
1414
1591
|
*/
|
|
1415
1592
|
generatedFrom?: string;
|
|
1416
1593
|
/**
|
|
1594
|
+
* @public
|
|
1417
1595
|
* <p>
|
|
1418
1596
|
* The read set source's reference ARN.
|
|
1419
1597
|
* </p>
|
|
1420
1598
|
*/
|
|
1421
1599
|
referenceArn: string | undefined;
|
|
1422
1600
|
/**
|
|
1601
|
+
* @public
|
|
1423
1602
|
* <p>
|
|
1424
1603
|
* The name of the read set.
|
|
1425
1604
|
* </p>
|
|
1426
1605
|
*/
|
|
1427
1606
|
name?: string;
|
|
1428
1607
|
/**
|
|
1608
|
+
* @public
|
|
1429
1609
|
* <p>
|
|
1430
1610
|
* The description of the read set.
|
|
1431
1611
|
* </p>
|
|
1432
1612
|
*/
|
|
1433
1613
|
description?: string;
|
|
1434
1614
|
/**
|
|
1615
|
+
* @public
|
|
1435
1616
|
* <p>
|
|
1436
1617
|
* The tags to add to the read set.
|
|
1437
1618
|
* </p>
|
|
1438
1619
|
*/
|
|
1439
1620
|
tags?: Record<string, string>;
|
|
1440
1621
|
/**
|
|
1622
|
+
* @public
|
|
1441
1623
|
* <p>
|
|
1442
1624
|
* The creation time of the multipart upload.
|
|
1443
1625
|
* </p>
|
|
@@ -1449,22 +1631,27 @@ export interface CreateMultipartReadSetUploadResponse {
|
|
|
1449
1631
|
*/
|
|
1450
1632
|
export interface CreateReferenceStoreRequest {
|
|
1451
1633
|
/**
|
|
1634
|
+
* @public
|
|
1452
1635
|
* <p>A name for the store.</p>
|
|
1453
1636
|
*/
|
|
1454
1637
|
name: string | undefined;
|
|
1455
1638
|
/**
|
|
1639
|
+
* @public
|
|
1456
1640
|
* <p>A description for the store.</p>
|
|
1457
1641
|
*/
|
|
1458
1642
|
description?: string;
|
|
1459
1643
|
/**
|
|
1644
|
+
* @public
|
|
1460
1645
|
* <p>Server-side encryption (SSE) settings for the store.</p>
|
|
1461
1646
|
*/
|
|
1462
1647
|
sseConfig?: SseConfig;
|
|
1463
1648
|
/**
|
|
1649
|
+
* @public
|
|
1464
1650
|
* <p>Tags for the store.</p>
|
|
1465
1651
|
*/
|
|
1466
1652
|
tags?: Record<string, string>;
|
|
1467
1653
|
/**
|
|
1654
|
+
* @public
|
|
1468
1655
|
* <p>To ensure that requests don't run multiple times, specify a unique token for each request.</p>
|
|
1469
1656
|
*/
|
|
1470
1657
|
clientToken?: string;
|
|
@@ -1474,26 +1661,32 @@ export interface CreateReferenceStoreRequest {
|
|
|
1474
1661
|
*/
|
|
1475
1662
|
export interface CreateReferenceStoreResponse {
|
|
1476
1663
|
/**
|
|
1664
|
+
* @public
|
|
1477
1665
|
* <p>The store's ID.</p>
|
|
1478
1666
|
*/
|
|
1479
1667
|
id: string | undefined;
|
|
1480
1668
|
/**
|
|
1669
|
+
* @public
|
|
1481
1670
|
* <p>The store's ARN.</p>
|
|
1482
1671
|
*/
|
|
1483
1672
|
arn: string | undefined;
|
|
1484
1673
|
/**
|
|
1674
|
+
* @public
|
|
1485
1675
|
* <p>The store's name.</p>
|
|
1486
1676
|
*/
|
|
1487
1677
|
name?: string;
|
|
1488
1678
|
/**
|
|
1679
|
+
* @public
|
|
1489
1680
|
* <p>The store's description.</p>
|
|
1490
1681
|
*/
|
|
1491
1682
|
description?: string;
|
|
1492
1683
|
/**
|
|
1684
|
+
* @public
|
|
1493
1685
|
* <p>The store's SSE settings.</p>
|
|
1494
1686
|
*/
|
|
1495
1687
|
sseConfig?: SseConfig;
|
|
1496
1688
|
/**
|
|
1689
|
+
* @public
|
|
1497
1690
|
* <p>When the store was created.</p>
|
|
1498
1691
|
*/
|
|
1499
1692
|
creationTime: Date | undefined;
|
|
@@ -1503,30 +1696,37 @@ export interface CreateReferenceStoreResponse {
|
|
|
1503
1696
|
*/
|
|
1504
1697
|
export interface CreateRunGroupRequest {
|
|
1505
1698
|
/**
|
|
1699
|
+
* @public
|
|
1506
1700
|
* <p>A name for the group.</p>
|
|
1507
1701
|
*/
|
|
1508
1702
|
name?: string;
|
|
1509
1703
|
/**
|
|
1704
|
+
* @public
|
|
1510
1705
|
* <p>The maximum number of CPUs to use in the group.</p>
|
|
1511
1706
|
*/
|
|
1512
1707
|
maxCpus?: number;
|
|
1513
1708
|
/**
|
|
1709
|
+
* @public
|
|
1514
1710
|
* <p>The maximum number of concurrent runs for the group.</p>
|
|
1515
1711
|
*/
|
|
1516
1712
|
maxRuns?: number;
|
|
1517
1713
|
/**
|
|
1714
|
+
* @public
|
|
1518
1715
|
* <p>A maximum run time for the group in minutes.</p>
|
|
1519
1716
|
*/
|
|
1520
1717
|
maxDuration?: number;
|
|
1521
1718
|
/**
|
|
1719
|
+
* @public
|
|
1522
1720
|
* <p>Tags for the group.</p>
|
|
1523
1721
|
*/
|
|
1524
1722
|
tags?: Record<string, string>;
|
|
1525
1723
|
/**
|
|
1724
|
+
* @public
|
|
1526
1725
|
* <p>To ensure that requests don't run multiple times, specify a unique ID for each request.</p>
|
|
1527
1726
|
*/
|
|
1528
1727
|
requestId?: string;
|
|
1529
1728
|
/**
|
|
1729
|
+
* @public
|
|
1530
1730
|
* <p>
|
|
1531
1731
|
* The maximum GPUs that can be used by a run group.
|
|
1532
1732
|
* </p>
|
|
@@ -1538,14 +1738,17 @@ export interface CreateRunGroupRequest {
|
|
|
1538
1738
|
*/
|
|
1539
1739
|
export interface CreateRunGroupResponse {
|
|
1540
1740
|
/**
|
|
1741
|
+
* @public
|
|
1541
1742
|
* <p>The group's ARN.</p>
|
|
1542
1743
|
*/
|
|
1543
1744
|
arn?: string;
|
|
1544
1745
|
/**
|
|
1746
|
+
* @public
|
|
1545
1747
|
* <p>The group's ID.</p>
|
|
1546
1748
|
*/
|
|
1547
1749
|
id?: string;
|
|
1548
1750
|
/**
|
|
1751
|
+
* @public
|
|
1549
1752
|
* <p>Tags for the run group.</p>
|
|
1550
1753
|
*/
|
|
1551
1754
|
tags?: Record<string, string>;
|
|
@@ -1555,26 +1758,32 @@ export interface CreateRunGroupResponse {
|
|
|
1555
1758
|
*/
|
|
1556
1759
|
export interface CreateSequenceStoreRequest {
|
|
1557
1760
|
/**
|
|
1761
|
+
* @public
|
|
1558
1762
|
* <p>A name for the store.</p>
|
|
1559
1763
|
*/
|
|
1560
1764
|
name: string | undefined;
|
|
1561
1765
|
/**
|
|
1766
|
+
* @public
|
|
1562
1767
|
* <p>A description for the store.</p>
|
|
1563
1768
|
*/
|
|
1564
1769
|
description?: string;
|
|
1565
1770
|
/**
|
|
1771
|
+
* @public
|
|
1566
1772
|
* <p>Server-side encryption (SSE) settings for the store.</p>
|
|
1567
1773
|
*/
|
|
1568
1774
|
sseConfig?: SseConfig;
|
|
1569
1775
|
/**
|
|
1776
|
+
* @public
|
|
1570
1777
|
* <p>Tags for the store.</p>
|
|
1571
1778
|
*/
|
|
1572
1779
|
tags?: Record<string, string>;
|
|
1573
1780
|
/**
|
|
1781
|
+
* @public
|
|
1574
1782
|
* <p>To ensure that requests don't run multiple times, specify a unique token for each request.</p>
|
|
1575
1783
|
*/
|
|
1576
1784
|
clientToken?: string;
|
|
1577
1785
|
/**
|
|
1786
|
+
* @public
|
|
1578
1787
|
* <p>
|
|
1579
1788
|
* An S3 location that is used to store files that have failed a direct upload.
|
|
1580
1789
|
* </p>
|
|
@@ -1586,30 +1795,37 @@ export interface CreateSequenceStoreRequest {
|
|
|
1586
1795
|
*/
|
|
1587
1796
|
export interface CreateSequenceStoreResponse {
|
|
1588
1797
|
/**
|
|
1798
|
+
* @public
|
|
1589
1799
|
* <p>The store's ID.</p>
|
|
1590
1800
|
*/
|
|
1591
1801
|
id: string | undefined;
|
|
1592
1802
|
/**
|
|
1803
|
+
* @public
|
|
1593
1804
|
* <p>The store's ARN.</p>
|
|
1594
1805
|
*/
|
|
1595
1806
|
arn: string | undefined;
|
|
1596
1807
|
/**
|
|
1808
|
+
* @public
|
|
1597
1809
|
* <p>The store's name.</p>
|
|
1598
1810
|
*/
|
|
1599
1811
|
name?: string;
|
|
1600
1812
|
/**
|
|
1813
|
+
* @public
|
|
1601
1814
|
* <p>The store's description.</p>
|
|
1602
1815
|
*/
|
|
1603
1816
|
description?: string;
|
|
1604
1817
|
/**
|
|
1818
|
+
* @public
|
|
1605
1819
|
* <p>The store's SSE settings.</p>
|
|
1606
1820
|
*/
|
|
1607
1821
|
sseConfig?: SseConfig;
|
|
1608
1822
|
/**
|
|
1823
|
+
* @public
|
|
1609
1824
|
* <p>When the store was created.</p>
|
|
1610
1825
|
*/
|
|
1611
1826
|
creationTime: Date | undefined;
|
|
1612
1827
|
/**
|
|
1828
|
+
* @public
|
|
1613
1829
|
* <p>
|
|
1614
1830
|
* An S3 location that is used to store files that have failed a direct upload.
|
|
1615
1831
|
* </p>
|
|
@@ -1621,22 +1837,27 @@ export interface CreateSequenceStoreResponse {
|
|
|
1621
1837
|
*/
|
|
1622
1838
|
export interface CreateVariantStoreRequest {
|
|
1623
1839
|
/**
|
|
1840
|
+
* @public
|
|
1624
1841
|
* <p>The genome reference for the store's variants.</p>
|
|
1625
1842
|
*/
|
|
1626
1843
|
reference: ReferenceItem | undefined;
|
|
1627
1844
|
/**
|
|
1845
|
+
* @public
|
|
1628
1846
|
* <p>A name for the store.</p>
|
|
1629
1847
|
*/
|
|
1630
1848
|
name?: string;
|
|
1631
1849
|
/**
|
|
1850
|
+
* @public
|
|
1632
1851
|
* <p>A description for the store.</p>
|
|
1633
1852
|
*/
|
|
1634
1853
|
description?: string;
|
|
1635
1854
|
/**
|
|
1855
|
+
* @public
|
|
1636
1856
|
* <p>Tags for the store.</p>
|
|
1637
1857
|
*/
|
|
1638
1858
|
tags?: Record<string, string>;
|
|
1639
1859
|
/**
|
|
1860
|
+
* @public
|
|
1640
1861
|
* <p>Server-side encryption (SSE) settings for the store.</p>
|
|
1641
1862
|
*/
|
|
1642
1863
|
sseConfig?: SseConfig;
|
|
@@ -1646,22 +1867,27 @@ export interface CreateVariantStoreRequest {
|
|
|
1646
1867
|
*/
|
|
1647
1868
|
export interface CreateVariantStoreResponse {
|
|
1648
1869
|
/**
|
|
1870
|
+
* @public
|
|
1649
1871
|
* <p>The store's ID.</p>
|
|
1650
1872
|
*/
|
|
1651
1873
|
id: string | undefined;
|
|
1652
1874
|
/**
|
|
1875
|
+
* @public
|
|
1653
1876
|
* <p>The store's genome reference.</p>
|
|
1654
1877
|
*/
|
|
1655
1878
|
reference?: ReferenceItem;
|
|
1656
1879
|
/**
|
|
1880
|
+
* @public
|
|
1657
1881
|
* <p>The store's status.</p>
|
|
1658
1882
|
*/
|
|
1659
1883
|
status: StoreStatus | string | undefined;
|
|
1660
1884
|
/**
|
|
1885
|
+
* @public
|
|
1661
1886
|
* <p>The store's name.</p>
|
|
1662
1887
|
*/
|
|
1663
1888
|
name: string | undefined;
|
|
1664
1889
|
/**
|
|
1890
|
+
* @public
|
|
1665
1891
|
* <p>When the store was created.</p>
|
|
1666
1892
|
*/
|
|
1667
1893
|
creationTime: Date | undefined;
|
|
@@ -1685,10 +1911,12 @@ export type WorkflowEngine = (typeof WorkflowEngine)[keyof typeof WorkflowEngine
|
|
|
1685
1911
|
*/
|
|
1686
1912
|
export interface WorkflowParameter {
|
|
1687
1913
|
/**
|
|
1914
|
+
* @public
|
|
1688
1915
|
* <p>The parameter's description.</p>
|
|
1689
1916
|
*/
|
|
1690
1917
|
description?: string;
|
|
1691
1918
|
/**
|
|
1919
|
+
* @public
|
|
1692
1920
|
* <p>Whether the parameter is optional.</p>
|
|
1693
1921
|
*/
|
|
1694
1922
|
optional?: boolean;
|
|
@@ -1698,46 +1926,57 @@ export interface WorkflowParameter {
|
|
|
1698
1926
|
*/
|
|
1699
1927
|
export interface CreateWorkflowRequest {
|
|
1700
1928
|
/**
|
|
1929
|
+
* @public
|
|
1701
1930
|
* <p>A name for the workflow.</p>
|
|
1702
1931
|
*/
|
|
1703
1932
|
name?: string;
|
|
1704
1933
|
/**
|
|
1934
|
+
* @public
|
|
1705
1935
|
* <p>A description for the workflow.</p>
|
|
1706
1936
|
*/
|
|
1707
1937
|
description?: string;
|
|
1708
1938
|
/**
|
|
1939
|
+
* @public
|
|
1709
1940
|
* <p>An engine for the workflow.</p>
|
|
1710
1941
|
*/
|
|
1711
1942
|
engine?: WorkflowEngine | string;
|
|
1712
1943
|
/**
|
|
1944
|
+
* @public
|
|
1713
1945
|
* <p>A ZIP archive for the workflow.</p>
|
|
1714
1946
|
*/
|
|
1715
1947
|
definitionZip?: Uint8Array;
|
|
1716
1948
|
/**
|
|
1949
|
+
* @public
|
|
1717
1950
|
* <p>The URI of a definition for the workflow.</p>
|
|
1718
1951
|
*/
|
|
1719
1952
|
definitionUri?: string;
|
|
1720
1953
|
/**
|
|
1954
|
+
* @public
|
|
1721
1955
|
* <p>The path of the main definition file for the workflow.</p>
|
|
1722
1956
|
*/
|
|
1723
1957
|
main?: string;
|
|
1724
1958
|
/**
|
|
1959
|
+
* @public
|
|
1725
1960
|
* <p>A parameter template for the workflow.</p>
|
|
1726
1961
|
*/
|
|
1727
1962
|
parameterTemplate?: Record<string, WorkflowParameter>;
|
|
1728
1963
|
/**
|
|
1964
|
+
* @public
|
|
1729
1965
|
* <p>A storage capacity for the workflow in gigabytes.</p>
|
|
1730
1966
|
*/
|
|
1731
1967
|
storageCapacity?: number;
|
|
1732
1968
|
/**
|
|
1969
|
+
* @public
|
|
1733
1970
|
* <p>Tags for the workflow.</p>
|
|
1734
1971
|
*/
|
|
1735
1972
|
tags?: Record<string, string>;
|
|
1736
1973
|
/**
|
|
1974
|
+
* @public
|
|
1737
1975
|
* <p>To ensure that requests don't run multiple times, specify a unique ID for each request.</p>
|
|
1738
1976
|
*/
|
|
1739
1977
|
requestId?: string;
|
|
1740
1978
|
/**
|
|
1979
|
+
* @public
|
|
1741
1980
|
* <p>
|
|
1742
1981
|
* The computational accelerator specified to run the workflow.
|
|
1743
1982
|
* </p>
|
|
@@ -1765,18 +2004,22 @@ export type WorkflowStatus = (typeof WorkflowStatus)[keyof typeof WorkflowStatus
|
|
|
1765
2004
|
*/
|
|
1766
2005
|
export interface CreateWorkflowResponse {
|
|
1767
2006
|
/**
|
|
2007
|
+
* @public
|
|
1768
2008
|
* <p>The workflow's ARN.</p>
|
|
1769
2009
|
*/
|
|
1770
2010
|
arn?: string;
|
|
1771
2011
|
/**
|
|
2012
|
+
* @public
|
|
1772
2013
|
* <p>The workflow's ID.</p>
|
|
1773
2014
|
*/
|
|
1774
2015
|
id?: string;
|
|
1775
2016
|
/**
|
|
2017
|
+
* @public
|
|
1776
2018
|
* <p>The workflow's status.</p>
|
|
1777
2019
|
*/
|
|
1778
2020
|
status?: WorkflowStatus | string;
|
|
1779
2021
|
/**
|
|
2022
|
+
* @public
|
|
1780
2023
|
* <p>The workflow's tags.</p>
|
|
1781
2024
|
*/
|
|
1782
2025
|
tags?: Record<string, string>;
|
|
@@ -1798,10 +2041,12 @@ export type CreationType = (typeof CreationType)[keyof typeof CreationType];
|
|
|
1798
2041
|
*/
|
|
1799
2042
|
export interface DeleteReferenceRequest {
|
|
1800
2043
|
/**
|
|
2044
|
+
* @public
|
|
1801
2045
|
* <p>The reference's ID.</p>
|
|
1802
2046
|
*/
|
|
1803
2047
|
id: string | undefined;
|
|
1804
2048
|
/**
|
|
2049
|
+
* @public
|
|
1805
2050
|
* <p>The reference's store ID.</p>
|
|
1806
2051
|
*/
|
|
1807
2052
|
referenceStoreId: string | undefined;
|
|
@@ -1816,6 +2061,7 @@ export interface DeleteReferenceResponse {
|
|
|
1816
2061
|
*/
|
|
1817
2062
|
export interface DeleteReferenceStoreRequest {
|
|
1818
2063
|
/**
|
|
2064
|
+
* @public
|
|
1819
2065
|
* <p>The store's ID.</p>
|
|
1820
2066
|
*/
|
|
1821
2067
|
id: string | undefined;
|
|
@@ -1830,6 +2076,7 @@ export interface DeleteReferenceStoreResponse {
|
|
|
1830
2076
|
*/
|
|
1831
2077
|
export interface DeleteRunRequest {
|
|
1832
2078
|
/**
|
|
2079
|
+
* @public
|
|
1833
2080
|
* <p>The run's ID.</p>
|
|
1834
2081
|
*/
|
|
1835
2082
|
id: string | undefined;
|
|
@@ -1839,6 +2086,7 @@ export interface DeleteRunRequest {
|
|
|
1839
2086
|
*/
|
|
1840
2087
|
export interface DeleteRunGroupRequest {
|
|
1841
2088
|
/**
|
|
2089
|
+
* @public
|
|
1842
2090
|
* <p>The run group's ID.</p>
|
|
1843
2091
|
*/
|
|
1844
2092
|
id: string | undefined;
|
|
@@ -1848,6 +2096,7 @@ export interface DeleteRunGroupRequest {
|
|
|
1848
2096
|
*/
|
|
1849
2097
|
export interface DeleteSequenceStoreRequest {
|
|
1850
2098
|
/**
|
|
2099
|
+
* @public
|
|
1851
2100
|
* <p>The sequence store's ID.</p>
|
|
1852
2101
|
*/
|
|
1853
2102
|
id: string | undefined;
|
|
@@ -1862,10 +2111,12 @@ export interface DeleteSequenceStoreResponse {
|
|
|
1862
2111
|
*/
|
|
1863
2112
|
export interface DeleteVariantStoreRequest {
|
|
1864
2113
|
/**
|
|
2114
|
+
* @public
|
|
1865
2115
|
* <p>The store's name.</p>
|
|
1866
2116
|
*/
|
|
1867
2117
|
name: string | undefined;
|
|
1868
2118
|
/**
|
|
2119
|
+
* @public
|
|
1869
2120
|
* <p>Whether to force deletion.</p>
|
|
1870
2121
|
*/
|
|
1871
2122
|
force?: boolean;
|
|
@@ -1875,6 +2126,7 @@ export interface DeleteVariantStoreRequest {
|
|
|
1875
2126
|
*/
|
|
1876
2127
|
export interface DeleteVariantStoreResponse {
|
|
1877
2128
|
/**
|
|
2129
|
+
* @public
|
|
1878
2130
|
* <p>The store's status.</p>
|
|
1879
2131
|
*/
|
|
1880
2132
|
status: StoreStatus | string | undefined;
|
|
@@ -1884,6 +2136,7 @@ export interface DeleteVariantStoreResponse {
|
|
|
1884
2136
|
*/
|
|
1885
2137
|
export interface DeleteWorkflowRequest {
|
|
1886
2138
|
/**
|
|
2139
|
+
* @public
|
|
1887
2140
|
* <p>The workflow's ID.</p>
|
|
1888
2141
|
*/
|
|
1889
2142
|
id: string | undefined;
|
|
@@ -1894,6 +2147,7 @@ export interface DeleteWorkflowRequest {
|
|
|
1894
2147
|
*/
|
|
1895
2148
|
export interface ExportReadSet {
|
|
1896
2149
|
/**
|
|
2150
|
+
* @public
|
|
1897
2151
|
* <p>The set's ID.</p>
|
|
1898
2152
|
*/
|
|
1899
2153
|
readSetId: string | undefined;
|
|
@@ -1918,14 +2172,17 @@ export type ReadSetExportJobItemStatus = (typeof ReadSetExportJobItemStatus)[key
|
|
|
1918
2172
|
*/
|
|
1919
2173
|
export interface ExportReadSetDetail {
|
|
1920
2174
|
/**
|
|
2175
|
+
* @public
|
|
1921
2176
|
* <p>The set's ID.</p>
|
|
1922
2177
|
*/
|
|
1923
2178
|
id: string | undefined;
|
|
1924
2179
|
/**
|
|
2180
|
+
* @public
|
|
1925
2181
|
* <p>The set's status.</p>
|
|
1926
2182
|
*/
|
|
1927
2183
|
status: ReadSetExportJobItemStatus | string | undefined;
|
|
1928
2184
|
/**
|
|
2185
|
+
* @public
|
|
1929
2186
|
* <p>The set's status message.</p>
|
|
1930
2187
|
*/
|
|
1931
2188
|
statusMessage?: string;
|
|
@@ -1953,14 +2210,17 @@ export type ReadSetExportJobStatus = (typeof ReadSetExportJobStatus)[keyof typeo
|
|
|
1953
2210
|
*/
|
|
1954
2211
|
export interface ExportReadSetFilter {
|
|
1955
2212
|
/**
|
|
2213
|
+
* @public
|
|
1956
2214
|
* <p>A status to filter on.</p>
|
|
1957
2215
|
*/
|
|
1958
2216
|
status?: ReadSetExportJobStatus | string;
|
|
1959
2217
|
/**
|
|
2218
|
+
* @public
|
|
1960
2219
|
* <p>The filter's start date.</p>
|
|
1961
2220
|
*/
|
|
1962
2221
|
createdAfter?: Date;
|
|
1963
2222
|
/**
|
|
2223
|
+
* @public
|
|
1964
2224
|
* <p>The filter's end date.</p>
|
|
1965
2225
|
*/
|
|
1966
2226
|
createdBefore?: Date;
|
|
@@ -1971,26 +2231,32 @@ export interface ExportReadSetFilter {
|
|
|
1971
2231
|
*/
|
|
1972
2232
|
export interface ExportReadSetJobDetail {
|
|
1973
2233
|
/**
|
|
2234
|
+
* @public
|
|
1974
2235
|
* <p>The job's ID.</p>
|
|
1975
2236
|
*/
|
|
1976
2237
|
id: string | undefined;
|
|
1977
2238
|
/**
|
|
2239
|
+
* @public
|
|
1978
2240
|
* <p>The job's sequence store ID.</p>
|
|
1979
2241
|
*/
|
|
1980
2242
|
sequenceStoreId: string | undefined;
|
|
1981
2243
|
/**
|
|
2244
|
+
* @public
|
|
1982
2245
|
* <p>The job's destination in Amazon S3.</p>
|
|
1983
2246
|
*/
|
|
1984
2247
|
destination: string | undefined;
|
|
1985
2248
|
/**
|
|
2249
|
+
* @public
|
|
1986
2250
|
* <p>The job's status.</p>
|
|
1987
2251
|
*/
|
|
1988
2252
|
status: ReadSetExportJobStatus | string | undefined;
|
|
1989
2253
|
/**
|
|
2254
|
+
* @public
|
|
1990
2255
|
* <p>When the job was created.</p>
|
|
1991
2256
|
*/
|
|
1992
2257
|
creationTime: Date | undefined;
|
|
1993
2258
|
/**
|
|
2259
|
+
* @public
|
|
1994
2260
|
* <p>When the job completed.</p>
|
|
1995
2261
|
*/
|
|
1996
2262
|
completionTime?: Date;
|
|
@@ -2001,14 +2267,17 @@ export interface ExportReadSetJobDetail {
|
|
|
2001
2267
|
*/
|
|
2002
2268
|
export interface FileInformation {
|
|
2003
2269
|
/**
|
|
2270
|
+
* @public
|
|
2004
2271
|
* <p>The file's total parts.</p>
|
|
2005
2272
|
*/
|
|
2006
2273
|
totalParts?: number;
|
|
2007
2274
|
/**
|
|
2275
|
+
* @public
|
|
2008
2276
|
* <p>The file's part size.</p>
|
|
2009
2277
|
*/
|
|
2010
2278
|
partSize?: number;
|
|
2011
2279
|
/**
|
|
2280
|
+
* @public
|
|
2012
2281
|
* <p>The file's content length.</p>
|
|
2013
2282
|
*/
|
|
2014
2283
|
contentLength?: number;
|
|
@@ -2031,18 +2300,22 @@ export type ReadSetFile = (typeof ReadSetFile)[keyof typeof ReadSetFile];
|
|
|
2031
2300
|
*/
|
|
2032
2301
|
export interface GetReadSetRequest {
|
|
2033
2302
|
/**
|
|
2303
|
+
* @public
|
|
2034
2304
|
* <p>The read set's ID.</p>
|
|
2035
2305
|
*/
|
|
2036
2306
|
id: string | undefined;
|
|
2037
2307
|
/**
|
|
2308
|
+
* @public
|
|
2038
2309
|
* <p>The read set's sequence store ID.</p>
|
|
2039
2310
|
*/
|
|
2040
2311
|
sequenceStoreId: string | undefined;
|
|
2041
2312
|
/**
|
|
2313
|
+
* @public
|
|
2042
2314
|
* <p>The file to retrieve.</p>
|
|
2043
2315
|
*/
|
|
2044
2316
|
file?: ReadSetFile | string;
|
|
2045
2317
|
/**
|
|
2318
|
+
* @public
|
|
2046
2319
|
* <p>The part number to retrieve.</p>
|
|
2047
2320
|
*/
|
|
2048
2321
|
partNumber: number | undefined;
|
|
@@ -2052,6 +2325,7 @@ export interface GetReadSetRequest {
|
|
|
2052
2325
|
*/
|
|
2053
2326
|
export interface GetReadSetResponse {
|
|
2054
2327
|
/**
|
|
2328
|
+
* @public
|
|
2055
2329
|
* <p>The read set file payload.</p>
|
|
2056
2330
|
*/
|
|
2057
2331
|
payload?: StreamingBlobTypes;
|
|
@@ -2074,10 +2348,12 @@ export declare class RangeNotSatisfiableException extends __BaseException {
|
|
|
2074
2348
|
*/
|
|
2075
2349
|
export interface GetReadSetActivationJobRequest {
|
|
2076
2350
|
/**
|
|
2351
|
+
* @public
|
|
2077
2352
|
* <p>The job's ID.</p>
|
|
2078
2353
|
*/
|
|
2079
2354
|
id: string | undefined;
|
|
2080
2355
|
/**
|
|
2356
|
+
* @public
|
|
2081
2357
|
* <p>The job's sequence store ID.</p>
|
|
2082
2358
|
*/
|
|
2083
2359
|
sequenceStoreId: string | undefined;
|
|
@@ -2087,30 +2363,37 @@ export interface GetReadSetActivationJobRequest {
|
|
|
2087
2363
|
*/
|
|
2088
2364
|
export interface GetReadSetActivationJobResponse {
|
|
2089
2365
|
/**
|
|
2366
|
+
* @public
|
|
2090
2367
|
* <p>The job's ID.</p>
|
|
2091
2368
|
*/
|
|
2092
2369
|
id: string | undefined;
|
|
2093
2370
|
/**
|
|
2371
|
+
* @public
|
|
2094
2372
|
* <p>The job's sequence store ID.</p>
|
|
2095
2373
|
*/
|
|
2096
2374
|
sequenceStoreId: string | undefined;
|
|
2097
2375
|
/**
|
|
2376
|
+
* @public
|
|
2098
2377
|
* <p>The job's status.</p>
|
|
2099
2378
|
*/
|
|
2100
2379
|
status: ReadSetActivationJobStatus | string | undefined;
|
|
2101
2380
|
/**
|
|
2381
|
+
* @public
|
|
2102
2382
|
* <p>The job's status message.</p>
|
|
2103
2383
|
*/
|
|
2104
2384
|
statusMessage?: string;
|
|
2105
2385
|
/**
|
|
2386
|
+
* @public
|
|
2106
2387
|
* <p>When the job was created.</p>
|
|
2107
2388
|
*/
|
|
2108
2389
|
creationTime: Date | undefined;
|
|
2109
2390
|
/**
|
|
2391
|
+
* @public
|
|
2110
2392
|
* <p>When the job completed.</p>
|
|
2111
2393
|
*/
|
|
2112
2394
|
completionTime?: Date;
|
|
2113
2395
|
/**
|
|
2396
|
+
* @public
|
|
2114
2397
|
* <p>The job's source files.</p>
|
|
2115
2398
|
*/
|
|
2116
2399
|
sources?: ActivateReadSetSourceItem[];
|
|
@@ -2120,10 +2403,12 @@ export interface GetReadSetActivationJobResponse {
|
|
|
2120
2403
|
*/
|
|
2121
2404
|
export interface GetReadSetExportJobRequest {
|
|
2122
2405
|
/**
|
|
2406
|
+
* @public
|
|
2123
2407
|
* <p>The job's sequence store ID.</p>
|
|
2124
2408
|
*/
|
|
2125
2409
|
sequenceStoreId: string | undefined;
|
|
2126
2410
|
/**
|
|
2411
|
+
* @public
|
|
2127
2412
|
* <p>The job's ID.</p>
|
|
2128
2413
|
*/
|
|
2129
2414
|
id: string | undefined;
|
|
@@ -2133,34 +2418,42 @@ export interface GetReadSetExportJobRequest {
|
|
|
2133
2418
|
*/
|
|
2134
2419
|
export interface GetReadSetExportJobResponse {
|
|
2135
2420
|
/**
|
|
2421
|
+
* @public
|
|
2136
2422
|
* <p>The job's ID.</p>
|
|
2137
2423
|
*/
|
|
2138
2424
|
id: string | undefined;
|
|
2139
2425
|
/**
|
|
2426
|
+
* @public
|
|
2140
2427
|
* <p>The job's sequence store ID.</p>
|
|
2141
2428
|
*/
|
|
2142
2429
|
sequenceStoreId: string | undefined;
|
|
2143
2430
|
/**
|
|
2431
|
+
* @public
|
|
2144
2432
|
* <p>The job's destination in Amazon S3.</p>
|
|
2145
2433
|
*/
|
|
2146
2434
|
destination: string | undefined;
|
|
2147
2435
|
/**
|
|
2436
|
+
* @public
|
|
2148
2437
|
* <p>The job's status.</p>
|
|
2149
2438
|
*/
|
|
2150
2439
|
status: ReadSetExportJobStatus | string | undefined;
|
|
2151
2440
|
/**
|
|
2441
|
+
* @public
|
|
2152
2442
|
* <p>The job's status message.</p>
|
|
2153
2443
|
*/
|
|
2154
2444
|
statusMessage?: string;
|
|
2155
2445
|
/**
|
|
2446
|
+
* @public
|
|
2156
2447
|
* <p>When the job was created.</p>
|
|
2157
2448
|
*/
|
|
2158
2449
|
creationTime: Date | undefined;
|
|
2159
2450
|
/**
|
|
2451
|
+
* @public
|
|
2160
2452
|
* <p>When the job completed.</p>
|
|
2161
2453
|
*/
|
|
2162
2454
|
completionTime?: Date;
|
|
2163
2455
|
/**
|
|
2456
|
+
* @public
|
|
2164
2457
|
* <p>The job's read sets.</p>
|
|
2165
2458
|
*/
|
|
2166
2459
|
readSets?: ExportReadSetDetail[];
|
|
@@ -2170,10 +2463,12 @@ export interface GetReadSetExportJobResponse {
|
|
|
2170
2463
|
*/
|
|
2171
2464
|
export interface GetReadSetImportJobRequest {
|
|
2172
2465
|
/**
|
|
2466
|
+
* @public
|
|
2173
2467
|
* <p>The job's ID.</p>
|
|
2174
2468
|
*/
|
|
2175
2469
|
id: string | undefined;
|
|
2176
2470
|
/**
|
|
2471
|
+
* @public
|
|
2177
2472
|
* <p>The job's sequence store ID.</p>
|
|
2178
2473
|
*/
|
|
2179
2474
|
sequenceStoreId: string | undefined;
|
|
@@ -2184,10 +2479,12 @@ export interface GetReadSetImportJobRequest {
|
|
|
2184
2479
|
*/
|
|
2185
2480
|
export interface SourceFiles {
|
|
2186
2481
|
/**
|
|
2482
|
+
* @public
|
|
2187
2483
|
* <p>The location of the first file in Amazon S3.</p>
|
|
2188
2484
|
*/
|
|
2189
2485
|
source1: string | undefined;
|
|
2190
2486
|
/**
|
|
2487
|
+
* @public
|
|
2191
2488
|
* <p>The location of the second file in Amazon S3.</p>
|
|
2192
2489
|
*/
|
|
2193
2490
|
source2?: string;
|
|
@@ -2212,46 +2509,57 @@ export type ReadSetImportJobItemStatus = (typeof ReadSetImportJobItemStatus)[key
|
|
|
2212
2509
|
*/
|
|
2213
2510
|
export interface ImportReadSetSourceItem {
|
|
2214
2511
|
/**
|
|
2512
|
+
* @public
|
|
2215
2513
|
* <p>The source files' location in Amazon S3.</p>
|
|
2216
2514
|
*/
|
|
2217
2515
|
sourceFiles: SourceFiles | undefined;
|
|
2218
2516
|
/**
|
|
2517
|
+
* @public
|
|
2219
2518
|
* <p>The source's file type.</p>
|
|
2220
2519
|
*/
|
|
2221
2520
|
sourceFileType: FileType | string | undefined;
|
|
2222
2521
|
/**
|
|
2522
|
+
* @public
|
|
2223
2523
|
* <p>The source's status.</p>
|
|
2224
2524
|
*/
|
|
2225
2525
|
status: ReadSetImportJobItemStatus | string | undefined;
|
|
2226
2526
|
/**
|
|
2527
|
+
* @public
|
|
2227
2528
|
* <p>The source's status message.</p>
|
|
2228
2529
|
*/
|
|
2229
2530
|
statusMessage?: string;
|
|
2230
2531
|
/**
|
|
2532
|
+
* @public
|
|
2231
2533
|
* <p>The source's subject ID.</p>
|
|
2232
2534
|
*/
|
|
2233
2535
|
subjectId: string | undefined;
|
|
2234
2536
|
/**
|
|
2537
|
+
* @public
|
|
2235
2538
|
* <p>The source's sample ID.</p>
|
|
2236
2539
|
*/
|
|
2237
2540
|
sampleId: string | undefined;
|
|
2238
2541
|
/**
|
|
2542
|
+
* @public
|
|
2239
2543
|
* <p>Where the source originated.</p>
|
|
2240
2544
|
*/
|
|
2241
2545
|
generatedFrom?: string;
|
|
2242
2546
|
/**
|
|
2547
|
+
* @public
|
|
2243
2548
|
* <p>The source's genome reference ARN.</p>
|
|
2244
2549
|
*/
|
|
2245
2550
|
referenceArn?: string;
|
|
2246
2551
|
/**
|
|
2552
|
+
* @public
|
|
2247
2553
|
* <p>The source's name.</p>
|
|
2248
2554
|
*/
|
|
2249
2555
|
name?: string;
|
|
2250
2556
|
/**
|
|
2557
|
+
* @public
|
|
2251
2558
|
* <p>The source's description.</p>
|
|
2252
2559
|
*/
|
|
2253
2560
|
description?: string;
|
|
2254
2561
|
/**
|
|
2562
|
+
* @public
|
|
2255
2563
|
* <p>The source's tags.</p>
|
|
2256
2564
|
*/
|
|
2257
2565
|
tags?: Record<string, string>;
|
|
@@ -2278,34 +2586,42 @@ export type ReadSetImportJobStatus = (typeof ReadSetImportJobStatus)[keyof typeo
|
|
|
2278
2586
|
*/
|
|
2279
2587
|
export interface GetReadSetImportJobResponse {
|
|
2280
2588
|
/**
|
|
2589
|
+
* @public
|
|
2281
2590
|
* <p>The job's ID.</p>
|
|
2282
2591
|
*/
|
|
2283
2592
|
id: string | undefined;
|
|
2284
2593
|
/**
|
|
2594
|
+
* @public
|
|
2285
2595
|
* <p>The job's sequence store ID.</p>
|
|
2286
2596
|
*/
|
|
2287
2597
|
sequenceStoreId: string | undefined;
|
|
2288
2598
|
/**
|
|
2599
|
+
* @public
|
|
2289
2600
|
* <p>The job's service role ARN.</p>
|
|
2290
2601
|
*/
|
|
2291
2602
|
roleArn: string | undefined;
|
|
2292
2603
|
/**
|
|
2604
|
+
* @public
|
|
2293
2605
|
* <p>The job's status.</p>
|
|
2294
2606
|
*/
|
|
2295
2607
|
status: ReadSetImportJobStatus | string | undefined;
|
|
2296
2608
|
/**
|
|
2609
|
+
* @public
|
|
2297
2610
|
* <p>The job's status message.</p>
|
|
2298
2611
|
*/
|
|
2299
2612
|
statusMessage?: string;
|
|
2300
2613
|
/**
|
|
2614
|
+
* @public
|
|
2301
2615
|
* <p>When the job was created.</p>
|
|
2302
2616
|
*/
|
|
2303
2617
|
creationTime: Date | undefined;
|
|
2304
2618
|
/**
|
|
2619
|
+
* @public
|
|
2305
2620
|
* <p>When the job completed.</p>
|
|
2306
2621
|
*/
|
|
2307
2622
|
completionTime?: Date;
|
|
2308
2623
|
/**
|
|
2624
|
+
* @public
|
|
2309
2625
|
* <p>The job's source files.</p>
|
|
2310
2626
|
*/
|
|
2311
2627
|
sources: ImportReadSetSourceItem[] | undefined;
|
|
@@ -2315,10 +2631,12 @@ export interface GetReadSetImportJobResponse {
|
|
|
2315
2631
|
*/
|
|
2316
2632
|
export interface GetReadSetMetadataRequest {
|
|
2317
2633
|
/**
|
|
2634
|
+
* @public
|
|
2318
2635
|
* <p>The read set's ID.</p>
|
|
2319
2636
|
*/
|
|
2320
2637
|
id: string | undefined;
|
|
2321
2638
|
/**
|
|
2639
|
+
* @public
|
|
2322
2640
|
* <p>The read set's sequence store ID.</p>
|
|
2323
2641
|
*/
|
|
2324
2642
|
sequenceStoreId: string | undefined;
|
|
@@ -2329,14 +2647,17 @@ export interface GetReadSetMetadataRequest {
|
|
|
2329
2647
|
*/
|
|
2330
2648
|
export interface ReadSetFiles {
|
|
2331
2649
|
/**
|
|
2650
|
+
* @public
|
|
2332
2651
|
* <p>The location of the first file in Amazon S3.</p>
|
|
2333
2652
|
*/
|
|
2334
2653
|
source1?: FileInformation;
|
|
2335
2654
|
/**
|
|
2655
|
+
* @public
|
|
2336
2656
|
* <p>The location of the second file in Amazon S3.</p>
|
|
2337
2657
|
*/
|
|
2338
2658
|
source2?: FileInformation;
|
|
2339
2659
|
/**
|
|
2660
|
+
* @public
|
|
2340
2661
|
* <p>The files' index.</p>
|
|
2341
2662
|
*/
|
|
2342
2663
|
index?: FileInformation;
|
|
@@ -2347,18 +2668,22 @@ export interface ReadSetFiles {
|
|
|
2347
2668
|
*/
|
|
2348
2669
|
export interface SequenceInformation {
|
|
2349
2670
|
/**
|
|
2671
|
+
* @public
|
|
2350
2672
|
* <p>The sequence's total read count.</p>
|
|
2351
2673
|
*/
|
|
2352
2674
|
totalReadCount?: number;
|
|
2353
2675
|
/**
|
|
2676
|
+
* @public
|
|
2354
2677
|
* <p>The sequence's total base count.</p>
|
|
2355
2678
|
*/
|
|
2356
2679
|
totalBaseCount?: number;
|
|
2357
2680
|
/**
|
|
2681
|
+
* @public
|
|
2358
2682
|
* <p>Where the sequence originated.</p>
|
|
2359
2683
|
*/
|
|
2360
2684
|
generatedFrom?: string;
|
|
2361
2685
|
/**
|
|
2686
|
+
* @public
|
|
2362
2687
|
* <p>The sequence's alignment setting.</p>
|
|
2363
2688
|
*/
|
|
2364
2689
|
alignment?: string;
|
|
@@ -2385,64 +2710,79 @@ export type ReadSetStatus = (typeof ReadSetStatus)[keyof typeof ReadSetStatus];
|
|
|
2385
2710
|
*/
|
|
2386
2711
|
export interface GetReadSetMetadataResponse {
|
|
2387
2712
|
/**
|
|
2713
|
+
* @public
|
|
2388
2714
|
* <p>The read set's ID.</p>
|
|
2389
2715
|
*/
|
|
2390
2716
|
id: string | undefined;
|
|
2391
2717
|
/**
|
|
2718
|
+
* @public
|
|
2392
2719
|
* <p>The read set's ARN.</p>
|
|
2393
2720
|
*/
|
|
2394
2721
|
arn: string | undefined;
|
|
2395
2722
|
/**
|
|
2723
|
+
* @public
|
|
2396
2724
|
* <p>The read set's sequence store ID.</p>
|
|
2397
2725
|
*/
|
|
2398
2726
|
sequenceStoreId: string | undefined;
|
|
2399
2727
|
/**
|
|
2728
|
+
* @public
|
|
2400
2729
|
* <p>The read set's subject ID.</p>
|
|
2401
2730
|
*/
|
|
2402
2731
|
subjectId?: string;
|
|
2403
2732
|
/**
|
|
2733
|
+
* @public
|
|
2404
2734
|
* <p>The read set's sample ID.</p>
|
|
2405
2735
|
*/
|
|
2406
2736
|
sampleId?: string;
|
|
2407
2737
|
/**
|
|
2738
|
+
* @public
|
|
2408
2739
|
* <p>The read set's status.</p>
|
|
2409
2740
|
*/
|
|
2410
2741
|
status: ReadSetStatus | string | undefined;
|
|
2411
2742
|
/**
|
|
2743
|
+
* @public
|
|
2412
2744
|
* <p>The read set's name.</p>
|
|
2413
2745
|
*/
|
|
2414
2746
|
name?: string;
|
|
2415
2747
|
/**
|
|
2748
|
+
* @public
|
|
2416
2749
|
* <p>The read set's description.</p>
|
|
2417
2750
|
*/
|
|
2418
2751
|
description?: string;
|
|
2419
2752
|
/**
|
|
2753
|
+
* @public
|
|
2420
2754
|
* <p>The read set's file type.</p>
|
|
2421
2755
|
*/
|
|
2422
2756
|
fileType: FileType | string | undefined;
|
|
2423
2757
|
/**
|
|
2758
|
+
* @public
|
|
2424
2759
|
* <p>When the read set was created.</p>
|
|
2425
2760
|
*/
|
|
2426
2761
|
creationTime: Date | undefined;
|
|
2427
2762
|
/**
|
|
2763
|
+
* @public
|
|
2428
2764
|
* <p>The read set's sequence information.</p>
|
|
2429
2765
|
*/
|
|
2430
2766
|
sequenceInformation?: SequenceInformation;
|
|
2431
2767
|
/**
|
|
2768
|
+
* @public
|
|
2432
2769
|
* <p>The read set's genome reference ARN.</p>
|
|
2433
2770
|
*/
|
|
2434
2771
|
referenceArn?: string;
|
|
2435
2772
|
/**
|
|
2773
|
+
* @public
|
|
2436
2774
|
* <p>The read set's files.</p>
|
|
2437
2775
|
*/
|
|
2438
2776
|
files?: ReadSetFiles;
|
|
2439
2777
|
/**
|
|
2778
|
+
* @public
|
|
2440
2779
|
* <p>
|
|
2441
2780
|
* The status message for a read set. It provides more detail as to why the read set has a status.
|
|
2442
2781
|
* </p>
|
|
2443
2782
|
*/
|
|
2444
2783
|
statusMessage?: string;
|
|
2445
2784
|
/**
|
|
2785
|
+
* @public
|
|
2446
2786
|
* <p>
|
|
2447
2787
|
* The creation type of the read set.
|
|
2448
2788
|
* </p>
|
|
@@ -2466,22 +2806,27 @@ export type ReferenceFile = (typeof ReferenceFile)[keyof typeof ReferenceFile];
|
|
|
2466
2806
|
*/
|
|
2467
2807
|
export interface GetReferenceRequest {
|
|
2468
2808
|
/**
|
|
2809
|
+
* @public
|
|
2469
2810
|
* <p>The reference's ID.</p>
|
|
2470
2811
|
*/
|
|
2471
2812
|
id: string | undefined;
|
|
2472
2813
|
/**
|
|
2814
|
+
* @public
|
|
2473
2815
|
* <p>The reference's store ID.</p>
|
|
2474
2816
|
*/
|
|
2475
2817
|
referenceStoreId: string | undefined;
|
|
2476
2818
|
/**
|
|
2819
|
+
* @public
|
|
2477
2820
|
* <p>The range to retrieve.</p>
|
|
2478
2821
|
*/
|
|
2479
2822
|
range?: string;
|
|
2480
2823
|
/**
|
|
2824
|
+
* @public
|
|
2481
2825
|
* <p>The part number to retrieve.</p>
|
|
2482
2826
|
*/
|
|
2483
2827
|
partNumber: number | undefined;
|
|
2484
2828
|
/**
|
|
2829
|
+
* @public
|
|
2485
2830
|
* <p>The file to retrieve.</p>
|
|
2486
2831
|
*/
|
|
2487
2832
|
file?: ReferenceFile | string;
|
|
@@ -2491,6 +2836,7 @@ export interface GetReferenceRequest {
|
|
|
2491
2836
|
*/
|
|
2492
2837
|
export interface GetReferenceResponse {
|
|
2493
2838
|
/**
|
|
2839
|
+
* @public
|
|
2494
2840
|
* <p>The reference file payload.</p>
|
|
2495
2841
|
*/
|
|
2496
2842
|
payload?: StreamingBlobTypes;
|
|
@@ -2500,10 +2846,12 @@ export interface GetReferenceResponse {
|
|
|
2500
2846
|
*/
|
|
2501
2847
|
export interface GetReferenceImportJobRequest {
|
|
2502
2848
|
/**
|
|
2849
|
+
* @public
|
|
2503
2850
|
* <p>The job's ID.</p>
|
|
2504
2851
|
*/
|
|
2505
2852
|
id: string | undefined;
|
|
2506
2853
|
/**
|
|
2854
|
+
* @public
|
|
2507
2855
|
* <p>The job's reference store ID.</p>
|
|
2508
2856
|
*/
|
|
2509
2857
|
referenceStoreId: string | undefined;
|
|
@@ -2528,26 +2876,32 @@ export type ReferenceImportJobItemStatus = (typeof ReferenceImportJobItemStatus)
|
|
|
2528
2876
|
*/
|
|
2529
2877
|
export interface ImportReferenceSourceItem {
|
|
2530
2878
|
/**
|
|
2879
|
+
* @public
|
|
2531
2880
|
* <p>The source file's location in Amazon S3.</p>
|
|
2532
2881
|
*/
|
|
2533
2882
|
sourceFile?: string;
|
|
2534
2883
|
/**
|
|
2884
|
+
* @public
|
|
2535
2885
|
* <p>The source's status.</p>
|
|
2536
2886
|
*/
|
|
2537
2887
|
status: ReferenceImportJobItemStatus | string | undefined;
|
|
2538
2888
|
/**
|
|
2889
|
+
* @public
|
|
2539
2890
|
* <p>The source's status message.</p>
|
|
2540
2891
|
*/
|
|
2541
2892
|
statusMessage?: string;
|
|
2542
2893
|
/**
|
|
2894
|
+
* @public
|
|
2543
2895
|
* <p>The source's name.</p>
|
|
2544
2896
|
*/
|
|
2545
2897
|
name?: string;
|
|
2546
2898
|
/**
|
|
2899
|
+
* @public
|
|
2547
2900
|
* <p>The source's description.</p>
|
|
2548
2901
|
*/
|
|
2549
2902
|
description?: string;
|
|
2550
2903
|
/**
|
|
2904
|
+
* @public
|
|
2551
2905
|
* <p>The source's tags.</p>
|
|
2552
2906
|
*/
|
|
2553
2907
|
tags?: Record<string, string>;
|
|
@@ -2574,34 +2928,42 @@ export type ReferenceImportJobStatus = (typeof ReferenceImportJobStatus)[keyof t
|
|
|
2574
2928
|
*/
|
|
2575
2929
|
export interface GetReferenceImportJobResponse {
|
|
2576
2930
|
/**
|
|
2931
|
+
* @public
|
|
2577
2932
|
* <p>The job's ID.</p>
|
|
2578
2933
|
*/
|
|
2579
2934
|
id: string | undefined;
|
|
2580
2935
|
/**
|
|
2936
|
+
* @public
|
|
2581
2937
|
* <p>The job's reference store ID.</p>
|
|
2582
2938
|
*/
|
|
2583
2939
|
referenceStoreId: string | undefined;
|
|
2584
2940
|
/**
|
|
2941
|
+
* @public
|
|
2585
2942
|
* <p>The job's service role ARN.</p>
|
|
2586
2943
|
*/
|
|
2587
2944
|
roleArn: string | undefined;
|
|
2588
2945
|
/**
|
|
2946
|
+
* @public
|
|
2589
2947
|
* <p>The job's status.</p>
|
|
2590
2948
|
*/
|
|
2591
2949
|
status: ReferenceImportJobStatus | string | undefined;
|
|
2592
2950
|
/**
|
|
2951
|
+
* @public
|
|
2593
2952
|
* <p>The job's status message.</p>
|
|
2594
2953
|
*/
|
|
2595
2954
|
statusMessage?: string;
|
|
2596
2955
|
/**
|
|
2956
|
+
* @public
|
|
2597
2957
|
* <p>When the job was created.</p>
|
|
2598
2958
|
*/
|
|
2599
2959
|
creationTime: Date | undefined;
|
|
2600
2960
|
/**
|
|
2961
|
+
* @public
|
|
2601
2962
|
* <p>When the job completed.</p>
|
|
2602
2963
|
*/
|
|
2603
2964
|
completionTime?: Date;
|
|
2604
2965
|
/**
|
|
2966
|
+
* @public
|
|
2605
2967
|
* <p>The job's source files.</p>
|
|
2606
2968
|
*/
|
|
2607
2969
|
sources: ImportReferenceSourceItem[] | undefined;
|
|
@@ -2611,10 +2973,12 @@ export interface GetReferenceImportJobResponse {
|
|
|
2611
2973
|
*/
|
|
2612
2974
|
export interface GetReferenceMetadataRequest {
|
|
2613
2975
|
/**
|
|
2976
|
+
* @public
|
|
2614
2977
|
* <p>The reference's ID.</p>
|
|
2615
2978
|
*/
|
|
2616
2979
|
id: string | undefined;
|
|
2617
2980
|
/**
|
|
2981
|
+
* @public
|
|
2618
2982
|
* <p>The reference's reference store ID.</p>
|
|
2619
2983
|
*/
|
|
2620
2984
|
referenceStoreId: string | undefined;
|
|
@@ -2625,10 +2989,12 @@ export interface GetReferenceMetadataRequest {
|
|
|
2625
2989
|
*/
|
|
2626
2990
|
export interface ReferenceFiles {
|
|
2627
2991
|
/**
|
|
2992
|
+
* @public
|
|
2628
2993
|
* <p>The source file's location in Amazon S3.</p>
|
|
2629
2994
|
*/
|
|
2630
2995
|
source?: FileInformation;
|
|
2631
2996
|
/**
|
|
2997
|
+
* @public
|
|
2632
2998
|
* <p>The files' index.</p>
|
|
2633
2999
|
*/
|
|
2634
3000
|
index?: FileInformation;
|
|
@@ -2651,42 +3017,52 @@ export type ReferenceStatus = (typeof ReferenceStatus)[keyof typeof ReferenceSta
|
|
|
2651
3017
|
*/
|
|
2652
3018
|
export interface GetReferenceMetadataResponse {
|
|
2653
3019
|
/**
|
|
3020
|
+
* @public
|
|
2654
3021
|
* <p>The reference's ID.</p>
|
|
2655
3022
|
*/
|
|
2656
3023
|
id: string | undefined;
|
|
2657
3024
|
/**
|
|
3025
|
+
* @public
|
|
2658
3026
|
* <p>The reference's ARN.</p>
|
|
2659
3027
|
*/
|
|
2660
3028
|
arn: string | undefined;
|
|
2661
3029
|
/**
|
|
3030
|
+
* @public
|
|
2662
3031
|
* <p>The reference's reference store ID.</p>
|
|
2663
3032
|
*/
|
|
2664
3033
|
referenceStoreId: string | undefined;
|
|
2665
3034
|
/**
|
|
3035
|
+
* @public
|
|
2666
3036
|
* <p>The reference's MD5 checksum.</p>
|
|
2667
3037
|
*/
|
|
2668
3038
|
md5: string | undefined;
|
|
2669
3039
|
/**
|
|
3040
|
+
* @public
|
|
2670
3041
|
* <p>The reference's status.</p>
|
|
2671
3042
|
*/
|
|
2672
3043
|
status?: ReferenceStatus | string;
|
|
2673
3044
|
/**
|
|
3045
|
+
* @public
|
|
2674
3046
|
* <p>The reference's name.</p>
|
|
2675
3047
|
*/
|
|
2676
3048
|
name?: string;
|
|
2677
3049
|
/**
|
|
3050
|
+
* @public
|
|
2678
3051
|
* <p>The reference's description.</p>
|
|
2679
3052
|
*/
|
|
2680
3053
|
description?: string;
|
|
2681
3054
|
/**
|
|
3055
|
+
* @public
|
|
2682
3056
|
* <p>When the reference was created.</p>
|
|
2683
3057
|
*/
|
|
2684
3058
|
creationTime: Date | undefined;
|
|
2685
3059
|
/**
|
|
3060
|
+
* @public
|
|
2686
3061
|
* <p>When the reference was updated.</p>
|
|
2687
3062
|
*/
|
|
2688
3063
|
updateTime: Date | undefined;
|
|
2689
3064
|
/**
|
|
3065
|
+
* @public
|
|
2690
3066
|
* <p>The reference's files.</p>
|
|
2691
3067
|
*/
|
|
2692
3068
|
files?: ReferenceFiles;
|
|
@@ -2696,6 +3072,7 @@ export interface GetReferenceMetadataResponse {
|
|
|
2696
3072
|
*/
|
|
2697
3073
|
export interface GetReferenceStoreRequest {
|
|
2698
3074
|
/**
|
|
3075
|
+
* @public
|
|
2699
3076
|
* <p>The store's ID.</p>
|
|
2700
3077
|
*/
|
|
2701
3078
|
id: string | undefined;
|
|
@@ -2705,26 +3082,32 @@ export interface GetReferenceStoreRequest {
|
|
|
2705
3082
|
*/
|
|
2706
3083
|
export interface GetReferenceStoreResponse {
|
|
2707
3084
|
/**
|
|
3085
|
+
* @public
|
|
2708
3086
|
* <p>The store's ID.</p>
|
|
2709
3087
|
*/
|
|
2710
3088
|
id: string | undefined;
|
|
2711
3089
|
/**
|
|
3090
|
+
* @public
|
|
2712
3091
|
* <p>The store's ARN.</p>
|
|
2713
3092
|
*/
|
|
2714
3093
|
arn: string | undefined;
|
|
2715
3094
|
/**
|
|
3095
|
+
* @public
|
|
2716
3096
|
* <p>The store's name.</p>
|
|
2717
3097
|
*/
|
|
2718
3098
|
name?: string;
|
|
2719
3099
|
/**
|
|
3100
|
+
* @public
|
|
2720
3101
|
* <p>The store's description.</p>
|
|
2721
3102
|
*/
|
|
2722
3103
|
description?: string;
|
|
2723
3104
|
/**
|
|
3105
|
+
* @public
|
|
2724
3106
|
* <p>The store's server-side encryption (SSE) settings.</p>
|
|
2725
3107
|
*/
|
|
2726
3108
|
sseConfig?: SseConfig;
|
|
2727
3109
|
/**
|
|
3110
|
+
* @public
|
|
2728
3111
|
* <p>When the store was created.</p>
|
|
2729
3112
|
*/
|
|
2730
3113
|
creationTime: Date | undefined;
|
|
@@ -2745,10 +3128,12 @@ export type RunExport = (typeof RunExport)[keyof typeof RunExport];
|
|
|
2745
3128
|
*/
|
|
2746
3129
|
export interface GetRunRequest {
|
|
2747
3130
|
/**
|
|
3131
|
+
* @public
|
|
2748
3132
|
* <p>The run's ID.</p>
|
|
2749
3133
|
*/
|
|
2750
3134
|
id: string | undefined;
|
|
2751
3135
|
/**
|
|
3136
|
+
* @public
|
|
2752
3137
|
* <p>The run's export format.</p>
|
|
2753
3138
|
*/
|
|
2754
3139
|
export?: (RunExport | string)[];
|
|
@@ -2802,98 +3187,122 @@ export type WorkflowType = (typeof WorkflowType)[keyof typeof WorkflowType];
|
|
|
2802
3187
|
*/
|
|
2803
3188
|
export interface GetRunResponse {
|
|
2804
3189
|
/**
|
|
3190
|
+
* @public
|
|
2805
3191
|
* <p>The run's ARN.</p>
|
|
2806
3192
|
*/
|
|
2807
3193
|
arn?: string;
|
|
2808
3194
|
/**
|
|
3195
|
+
* @public
|
|
2809
3196
|
* <p>The run's ID.</p>
|
|
2810
3197
|
*/
|
|
2811
3198
|
id?: string;
|
|
2812
3199
|
/**
|
|
3200
|
+
* @public
|
|
2813
3201
|
* <p>The run's status.</p>
|
|
2814
3202
|
*/
|
|
2815
3203
|
status?: RunStatus | string;
|
|
2816
3204
|
/**
|
|
3205
|
+
* @public
|
|
2817
3206
|
* <p>The run's workflow ID.</p>
|
|
2818
3207
|
*/
|
|
2819
3208
|
workflowId?: string;
|
|
2820
3209
|
/**
|
|
3210
|
+
* @public
|
|
2821
3211
|
* <p>The run's workflow type.</p>
|
|
2822
3212
|
*/
|
|
2823
3213
|
workflowType?: WorkflowType | string;
|
|
2824
3214
|
/**
|
|
3215
|
+
* @public
|
|
2825
3216
|
* <p>The run's ID.</p>
|
|
2826
3217
|
*/
|
|
2827
3218
|
runId?: string;
|
|
2828
3219
|
/**
|
|
3220
|
+
* @public
|
|
2829
3221
|
* <p>The run's service role ARN.</p>
|
|
2830
3222
|
*/
|
|
2831
3223
|
roleArn?: string;
|
|
2832
3224
|
/**
|
|
3225
|
+
* @public
|
|
2833
3226
|
* <p>The run's name.</p>
|
|
2834
3227
|
*/
|
|
2835
3228
|
name?: string;
|
|
2836
3229
|
/**
|
|
3230
|
+
* @public
|
|
2837
3231
|
* <p>The run's group ID.</p>
|
|
2838
3232
|
*/
|
|
2839
3233
|
runGroupId?: string;
|
|
2840
3234
|
/**
|
|
3235
|
+
* @public
|
|
2841
3236
|
* <p>The run's priority.</p>
|
|
2842
3237
|
*/
|
|
2843
3238
|
priority?: number;
|
|
2844
3239
|
/**
|
|
3240
|
+
* @public
|
|
2845
3241
|
* <p>The run's definition.</p>
|
|
2846
3242
|
*/
|
|
2847
3243
|
definition?: string;
|
|
2848
3244
|
/**
|
|
3245
|
+
* @public
|
|
2849
3246
|
* <p>The run's digest.</p>
|
|
2850
3247
|
*/
|
|
2851
3248
|
digest?: string;
|
|
2852
3249
|
/**
|
|
3250
|
+
* @public
|
|
2853
3251
|
* <p>The run's parameters.</p>
|
|
2854
3252
|
*/
|
|
2855
3253
|
parameters?: __DocumentType;
|
|
2856
3254
|
/**
|
|
3255
|
+
* @public
|
|
2857
3256
|
* <p>The run's storage capacity in gigabytes.</p>
|
|
2858
3257
|
*/
|
|
2859
3258
|
storageCapacity?: number;
|
|
2860
3259
|
/**
|
|
3260
|
+
* @public
|
|
2861
3261
|
* <p>The run's output URI.</p>
|
|
2862
3262
|
*/
|
|
2863
3263
|
outputUri?: string;
|
|
2864
3264
|
/**
|
|
3265
|
+
* @public
|
|
2865
3266
|
* <p>The run's log level.</p>
|
|
2866
3267
|
*/
|
|
2867
3268
|
logLevel?: RunLogLevel | string;
|
|
2868
3269
|
/**
|
|
3270
|
+
* @public
|
|
2869
3271
|
* <p>The run's resource digests.</p>
|
|
2870
3272
|
*/
|
|
2871
3273
|
resourceDigests?: Record<string, string>;
|
|
2872
3274
|
/**
|
|
3275
|
+
* @public
|
|
2873
3276
|
* <p>Who started the run.</p>
|
|
2874
3277
|
*/
|
|
2875
3278
|
startedBy?: string;
|
|
2876
3279
|
/**
|
|
3280
|
+
* @public
|
|
2877
3281
|
* <p>When the run was created.</p>
|
|
2878
3282
|
*/
|
|
2879
3283
|
creationTime?: Date;
|
|
2880
3284
|
/**
|
|
3285
|
+
* @public
|
|
2881
3286
|
* <p>When the run started.</p>
|
|
2882
3287
|
*/
|
|
2883
3288
|
startTime?: Date;
|
|
2884
3289
|
/**
|
|
3290
|
+
* @public
|
|
2885
3291
|
* <p>The run's stop time.</p>
|
|
2886
3292
|
*/
|
|
2887
3293
|
stopTime?: Date;
|
|
2888
3294
|
/**
|
|
3295
|
+
* @public
|
|
2889
3296
|
* <p>The run's status message.</p>
|
|
2890
3297
|
*/
|
|
2891
3298
|
statusMessage?: string;
|
|
2892
3299
|
/**
|
|
3300
|
+
* @public
|
|
2893
3301
|
* <p>The run's tags.</p>
|
|
2894
3302
|
*/
|
|
2895
3303
|
tags?: Record<string, string>;
|
|
2896
3304
|
/**
|
|
3305
|
+
* @public
|
|
2897
3306
|
* <p>
|
|
2898
3307
|
* The computational accelerator used to run the workflow.
|
|
2899
3308
|
* </p>
|
|
@@ -2905,6 +3314,7 @@ export interface GetRunResponse {
|
|
|
2905
3314
|
*/
|
|
2906
3315
|
export interface GetRunGroupRequest {
|
|
2907
3316
|
/**
|
|
3317
|
+
* @public
|
|
2908
3318
|
* <p>The group's ID.</p>
|
|
2909
3319
|
*/
|
|
2910
3320
|
id: string | undefined;
|
|
@@ -2914,38 +3324,47 @@ export interface GetRunGroupRequest {
|
|
|
2914
3324
|
*/
|
|
2915
3325
|
export interface GetRunGroupResponse {
|
|
2916
3326
|
/**
|
|
3327
|
+
* @public
|
|
2917
3328
|
* <p>The group's ARN.</p>
|
|
2918
3329
|
*/
|
|
2919
3330
|
arn?: string;
|
|
2920
3331
|
/**
|
|
3332
|
+
* @public
|
|
2921
3333
|
* <p>The group's ID.</p>
|
|
2922
3334
|
*/
|
|
2923
3335
|
id?: string;
|
|
2924
3336
|
/**
|
|
3337
|
+
* @public
|
|
2925
3338
|
* <p>The group's name.</p>
|
|
2926
3339
|
*/
|
|
2927
3340
|
name?: string;
|
|
2928
3341
|
/**
|
|
3342
|
+
* @public
|
|
2929
3343
|
* <p>The group's maximum number of CPUs to use.</p>
|
|
2930
3344
|
*/
|
|
2931
3345
|
maxCpus?: number;
|
|
2932
3346
|
/**
|
|
3347
|
+
* @public
|
|
2933
3348
|
* <p>The maximum number of concurrent runs for the group.</p>
|
|
2934
3349
|
*/
|
|
2935
3350
|
maxRuns?: number;
|
|
2936
3351
|
/**
|
|
3352
|
+
* @public
|
|
2937
3353
|
* <p>The group's maximum run time in minutes.</p>
|
|
2938
3354
|
*/
|
|
2939
3355
|
maxDuration?: number;
|
|
2940
3356
|
/**
|
|
3357
|
+
* @public
|
|
2941
3358
|
* <p>When the group was created.</p>
|
|
2942
3359
|
*/
|
|
2943
3360
|
creationTime?: Date;
|
|
2944
3361
|
/**
|
|
3362
|
+
* @public
|
|
2945
3363
|
* <p>The group's tags.</p>
|
|
2946
3364
|
*/
|
|
2947
3365
|
tags?: Record<string, string>;
|
|
2948
3366
|
/**
|
|
3367
|
+
* @public
|
|
2949
3368
|
* <p>
|
|
2950
3369
|
* The maximum GPUs that can be used by a run group.
|
|
2951
3370
|
* </p>
|
|
@@ -2957,10 +3376,12 @@ export interface GetRunGroupResponse {
|
|
|
2957
3376
|
*/
|
|
2958
3377
|
export interface GetRunTaskRequest {
|
|
2959
3378
|
/**
|
|
3379
|
+
* @public
|
|
2960
3380
|
* <p>The task's ID.</p>
|
|
2961
3381
|
*/
|
|
2962
3382
|
id: string | undefined;
|
|
2963
3383
|
/**
|
|
3384
|
+
* @public
|
|
2964
3385
|
* <p>The task's ID.</p>
|
|
2965
3386
|
*/
|
|
2966
3387
|
taskId: string | undefined;
|
|
@@ -2987,46 +3408,57 @@ export type TaskStatus = (typeof TaskStatus)[keyof typeof TaskStatus];
|
|
|
2987
3408
|
*/
|
|
2988
3409
|
export interface GetRunTaskResponse {
|
|
2989
3410
|
/**
|
|
3411
|
+
* @public
|
|
2990
3412
|
* <p>The task's ID.</p>
|
|
2991
3413
|
*/
|
|
2992
3414
|
taskId?: string;
|
|
2993
3415
|
/**
|
|
3416
|
+
* @public
|
|
2994
3417
|
* <p>The task's status.</p>
|
|
2995
3418
|
*/
|
|
2996
3419
|
status?: TaskStatus | string;
|
|
2997
3420
|
/**
|
|
3421
|
+
* @public
|
|
2998
3422
|
* <p>The task's name.</p>
|
|
2999
3423
|
*/
|
|
3000
3424
|
name?: string;
|
|
3001
3425
|
/**
|
|
3426
|
+
* @public
|
|
3002
3427
|
* <p>The task's CPU usage.</p>
|
|
3003
3428
|
*/
|
|
3004
3429
|
cpus?: number;
|
|
3005
3430
|
/**
|
|
3431
|
+
* @public
|
|
3006
3432
|
* <p>The task's memory use in gigabytes.</p>
|
|
3007
3433
|
*/
|
|
3008
3434
|
memory?: number;
|
|
3009
3435
|
/**
|
|
3436
|
+
* @public
|
|
3010
3437
|
* <p>When the task was created.</p>
|
|
3011
3438
|
*/
|
|
3012
3439
|
creationTime?: Date;
|
|
3013
3440
|
/**
|
|
3441
|
+
* @public
|
|
3014
3442
|
* <p>The task's start time.</p>
|
|
3015
3443
|
*/
|
|
3016
3444
|
startTime?: Date;
|
|
3017
3445
|
/**
|
|
3446
|
+
* @public
|
|
3018
3447
|
* <p>The task's stop time.</p>
|
|
3019
3448
|
*/
|
|
3020
3449
|
stopTime?: Date;
|
|
3021
3450
|
/**
|
|
3451
|
+
* @public
|
|
3022
3452
|
* <p>The task's status message.</p>
|
|
3023
3453
|
*/
|
|
3024
3454
|
statusMessage?: string;
|
|
3025
3455
|
/**
|
|
3456
|
+
* @public
|
|
3026
3457
|
* <p>The task's log stream.</p>
|
|
3027
3458
|
*/
|
|
3028
3459
|
logStream?: string;
|
|
3029
3460
|
/**
|
|
3461
|
+
* @public
|
|
3030
3462
|
* <p>
|
|
3031
3463
|
* The number of Graphics Processing Units (GPU) specified in the task.
|
|
3032
3464
|
* </p>
|
|
@@ -3038,6 +3470,7 @@ export interface GetRunTaskResponse {
|
|
|
3038
3470
|
*/
|
|
3039
3471
|
export interface GetSequenceStoreRequest {
|
|
3040
3472
|
/**
|
|
3473
|
+
* @public
|
|
3041
3474
|
* <p>The store's ID.</p>
|
|
3042
3475
|
*/
|
|
3043
3476
|
id: string | undefined;
|
|
@@ -3047,30 +3480,37 @@ export interface GetSequenceStoreRequest {
|
|
|
3047
3480
|
*/
|
|
3048
3481
|
export interface GetSequenceStoreResponse {
|
|
3049
3482
|
/**
|
|
3483
|
+
* @public
|
|
3050
3484
|
* <p>The store's ID.</p>
|
|
3051
3485
|
*/
|
|
3052
3486
|
id: string | undefined;
|
|
3053
3487
|
/**
|
|
3488
|
+
* @public
|
|
3054
3489
|
* <p>The store's ARN.</p>
|
|
3055
3490
|
*/
|
|
3056
3491
|
arn: string | undefined;
|
|
3057
3492
|
/**
|
|
3493
|
+
* @public
|
|
3058
3494
|
* <p>The store's name.</p>
|
|
3059
3495
|
*/
|
|
3060
3496
|
name?: string;
|
|
3061
3497
|
/**
|
|
3498
|
+
* @public
|
|
3062
3499
|
* <p>The store's description.</p>
|
|
3063
3500
|
*/
|
|
3064
3501
|
description?: string;
|
|
3065
3502
|
/**
|
|
3503
|
+
* @public
|
|
3066
3504
|
* <p>The store's server-side encryption (SSE) settings.</p>
|
|
3067
3505
|
*/
|
|
3068
3506
|
sseConfig?: SseConfig;
|
|
3069
3507
|
/**
|
|
3508
|
+
* @public
|
|
3070
3509
|
* <p>When the store was created.</p>
|
|
3071
3510
|
*/
|
|
3072
3511
|
creationTime: Date | undefined;
|
|
3073
3512
|
/**
|
|
3513
|
+
* @public
|
|
3074
3514
|
* <p>
|
|
3075
3515
|
* An S3 location that is used to store files that have failed a direct upload.
|
|
3076
3516
|
* </p>
|
|
@@ -3082,6 +3522,7 @@ export interface GetSequenceStoreResponse {
|
|
|
3082
3522
|
*/
|
|
3083
3523
|
export interface GetVariantImportRequest {
|
|
3084
3524
|
/**
|
|
3525
|
+
* @public
|
|
3085
3526
|
* <p>The job's ID.</p>
|
|
3086
3527
|
*/
|
|
3087
3528
|
jobId: string | undefined;
|
|
@@ -3092,14 +3533,17 @@ export interface GetVariantImportRequest {
|
|
|
3092
3533
|
*/
|
|
3093
3534
|
export interface VariantImportItemDetail {
|
|
3094
3535
|
/**
|
|
3536
|
+
* @public
|
|
3095
3537
|
* <p>The source file's location in Amazon S3.</p>
|
|
3096
3538
|
*/
|
|
3097
3539
|
source: string | undefined;
|
|
3098
3540
|
/**
|
|
3541
|
+
* @public
|
|
3099
3542
|
* <p>The item's job status.</p>
|
|
3100
3543
|
*/
|
|
3101
3544
|
jobStatus: JobStatus | string | undefined;
|
|
3102
3545
|
/**
|
|
3546
|
+
* @public
|
|
3103
3547
|
* <p> A message that provides additional context about a job </p>
|
|
3104
3548
|
*/
|
|
3105
3549
|
statusMessage?: string;
|
|
@@ -3109,46 +3553,57 @@ export interface VariantImportItemDetail {
|
|
|
3109
3553
|
*/
|
|
3110
3554
|
export interface GetVariantImportResponse {
|
|
3111
3555
|
/**
|
|
3556
|
+
* @public
|
|
3112
3557
|
* <p>The job's ID.</p>
|
|
3113
3558
|
*/
|
|
3114
3559
|
id: string | undefined;
|
|
3115
3560
|
/**
|
|
3561
|
+
* @public
|
|
3116
3562
|
* <p>The job's destination variant store.</p>
|
|
3117
3563
|
*/
|
|
3118
3564
|
destinationName: string | undefined;
|
|
3119
3565
|
/**
|
|
3566
|
+
* @public
|
|
3120
3567
|
* <p>The job's service role ARN.</p>
|
|
3121
3568
|
*/
|
|
3122
3569
|
roleArn: string | undefined;
|
|
3123
3570
|
/**
|
|
3571
|
+
* @public
|
|
3124
3572
|
* <p>The job's status.</p>
|
|
3125
3573
|
*/
|
|
3126
3574
|
status: JobStatus | string | undefined;
|
|
3127
3575
|
/**
|
|
3576
|
+
* @public
|
|
3128
3577
|
* <p>The job's status message.</p>
|
|
3129
3578
|
*/
|
|
3130
3579
|
statusMessage: string | undefined;
|
|
3131
3580
|
/**
|
|
3581
|
+
* @public
|
|
3132
3582
|
* <p>When the job was created.</p>
|
|
3133
3583
|
*/
|
|
3134
3584
|
creationTime: Date | undefined;
|
|
3135
3585
|
/**
|
|
3586
|
+
* @public
|
|
3136
3587
|
* <p>When the job was updated.</p>
|
|
3137
3588
|
*/
|
|
3138
3589
|
updateTime: Date | undefined;
|
|
3139
3590
|
/**
|
|
3591
|
+
* @public
|
|
3140
3592
|
* <p>When the job completed.</p>
|
|
3141
3593
|
*/
|
|
3142
3594
|
completionTime?: Date;
|
|
3143
3595
|
/**
|
|
3596
|
+
* @public
|
|
3144
3597
|
* <p>The job's items.</p>
|
|
3145
3598
|
*/
|
|
3146
3599
|
items: VariantImportItemDetail[] | undefined;
|
|
3147
3600
|
/**
|
|
3601
|
+
* @public
|
|
3148
3602
|
* <p>The job's left normalization setting.</p>
|
|
3149
3603
|
*/
|
|
3150
3604
|
runLeftNormalization: boolean | undefined;
|
|
3151
3605
|
/**
|
|
3606
|
+
* @public
|
|
3152
3607
|
* <p>
|
|
3153
3608
|
* The annotation schema generated by the parsed annotation data.
|
|
3154
3609
|
* </p>
|
|
@@ -3160,6 +3615,7 @@ export interface GetVariantImportResponse {
|
|
|
3160
3615
|
*/
|
|
3161
3616
|
export interface GetVariantStoreRequest {
|
|
3162
3617
|
/**
|
|
3618
|
+
* @public
|
|
3163
3619
|
* <p>The store's name.</p>
|
|
3164
3620
|
*/
|
|
3165
3621
|
name: string | undefined;
|
|
@@ -3169,50 +3625,62 @@ export interface GetVariantStoreRequest {
|
|
|
3169
3625
|
*/
|
|
3170
3626
|
export interface GetVariantStoreResponse {
|
|
3171
3627
|
/**
|
|
3628
|
+
* @public
|
|
3172
3629
|
* <p>The store's ID.</p>
|
|
3173
3630
|
*/
|
|
3174
3631
|
id: string | undefined;
|
|
3175
3632
|
/**
|
|
3633
|
+
* @public
|
|
3176
3634
|
* <p>The store's genome reference.</p>
|
|
3177
3635
|
*/
|
|
3178
3636
|
reference: ReferenceItem | undefined;
|
|
3179
3637
|
/**
|
|
3638
|
+
* @public
|
|
3180
3639
|
* <p>The store's status.</p>
|
|
3181
3640
|
*/
|
|
3182
3641
|
status: StoreStatus | string | undefined;
|
|
3183
3642
|
/**
|
|
3643
|
+
* @public
|
|
3184
3644
|
* <p>The store's ARN.</p>
|
|
3185
3645
|
*/
|
|
3186
3646
|
storeArn: string | undefined;
|
|
3187
3647
|
/**
|
|
3648
|
+
* @public
|
|
3188
3649
|
* <p>The store's name.</p>
|
|
3189
3650
|
*/
|
|
3190
3651
|
name: string | undefined;
|
|
3191
3652
|
/**
|
|
3653
|
+
* @public
|
|
3192
3654
|
* <p>The store's description.</p>
|
|
3193
3655
|
*/
|
|
3194
3656
|
description: string | undefined;
|
|
3195
3657
|
/**
|
|
3658
|
+
* @public
|
|
3196
3659
|
* <p>The store's server-side encryption (SSE) settings.</p>
|
|
3197
3660
|
*/
|
|
3198
3661
|
sseConfig: SseConfig | undefined;
|
|
3199
3662
|
/**
|
|
3663
|
+
* @public
|
|
3200
3664
|
* <p>When the store was created.</p>
|
|
3201
3665
|
*/
|
|
3202
3666
|
creationTime: Date | undefined;
|
|
3203
3667
|
/**
|
|
3668
|
+
* @public
|
|
3204
3669
|
* <p>When the store was updated.</p>
|
|
3205
3670
|
*/
|
|
3206
3671
|
updateTime: Date | undefined;
|
|
3207
3672
|
/**
|
|
3673
|
+
* @public
|
|
3208
3674
|
* <p>The store's tags.</p>
|
|
3209
3675
|
*/
|
|
3210
3676
|
tags: Record<string, string> | undefined;
|
|
3211
3677
|
/**
|
|
3678
|
+
* @public
|
|
3212
3679
|
* <p>The store's status message.</p>
|
|
3213
3680
|
*/
|
|
3214
3681
|
statusMessage: string | undefined;
|
|
3215
3682
|
/**
|
|
3683
|
+
* @public
|
|
3216
3684
|
* <p>The store's size in bytes.</p>
|
|
3217
3685
|
*/
|
|
3218
3686
|
storeSizeBytes: number | undefined;
|
|
@@ -3233,14 +3701,17 @@ export type WorkflowExport = (typeof WorkflowExport)[keyof typeof WorkflowExport
|
|
|
3233
3701
|
*/
|
|
3234
3702
|
export interface GetWorkflowRequest {
|
|
3235
3703
|
/**
|
|
3704
|
+
* @public
|
|
3236
3705
|
* <p>The workflow's ID.</p>
|
|
3237
3706
|
*/
|
|
3238
3707
|
id: string | undefined;
|
|
3239
3708
|
/**
|
|
3709
|
+
* @public
|
|
3240
3710
|
* <p>The workflow's type.</p>
|
|
3241
3711
|
*/
|
|
3242
3712
|
type?: WorkflowType | string;
|
|
3243
3713
|
/**
|
|
3714
|
+
* @public
|
|
3244
3715
|
* <p>The export format for the workflow.</p>
|
|
3245
3716
|
*/
|
|
3246
3717
|
export?: (WorkflowExport | string)[];
|
|
@@ -3250,72 +3721,89 @@ export interface GetWorkflowRequest {
|
|
|
3250
3721
|
*/
|
|
3251
3722
|
export interface GetWorkflowResponse {
|
|
3252
3723
|
/**
|
|
3724
|
+
* @public
|
|
3253
3725
|
* <p>The workflow's ARN.</p>
|
|
3254
3726
|
*/
|
|
3255
3727
|
arn?: string;
|
|
3256
3728
|
/**
|
|
3729
|
+
* @public
|
|
3257
3730
|
* <p>The workflow's ID.</p>
|
|
3258
3731
|
*/
|
|
3259
3732
|
id?: string;
|
|
3260
3733
|
/**
|
|
3734
|
+
* @public
|
|
3261
3735
|
* <p>The workflow's status.</p>
|
|
3262
3736
|
*/
|
|
3263
3737
|
status?: WorkflowStatus | string;
|
|
3264
3738
|
/**
|
|
3739
|
+
* @public
|
|
3265
3740
|
* <p>The workflow's type.</p>
|
|
3266
3741
|
*/
|
|
3267
3742
|
type?: WorkflowType | string;
|
|
3268
3743
|
/**
|
|
3744
|
+
* @public
|
|
3269
3745
|
* <p>The workflow's name.</p>
|
|
3270
3746
|
*/
|
|
3271
3747
|
name?: string;
|
|
3272
3748
|
/**
|
|
3749
|
+
* @public
|
|
3273
3750
|
* <p>The workflow's description.</p>
|
|
3274
3751
|
*/
|
|
3275
3752
|
description?: string;
|
|
3276
3753
|
/**
|
|
3754
|
+
* @public
|
|
3277
3755
|
* <p>The workflow's engine.</p>
|
|
3278
3756
|
*/
|
|
3279
3757
|
engine?: WorkflowEngine | string;
|
|
3280
3758
|
/**
|
|
3759
|
+
* @public
|
|
3281
3760
|
* <p>The workflow's definition.</p>
|
|
3282
3761
|
*/
|
|
3283
3762
|
definition?: string;
|
|
3284
3763
|
/**
|
|
3764
|
+
* @public
|
|
3285
3765
|
* <p>The path of the main definition file for the workflow.</p>
|
|
3286
3766
|
*/
|
|
3287
3767
|
main?: string;
|
|
3288
3768
|
/**
|
|
3769
|
+
* @public
|
|
3289
3770
|
* <p>The workflow's digest.</p>
|
|
3290
3771
|
*/
|
|
3291
3772
|
digest?: string;
|
|
3292
3773
|
/**
|
|
3774
|
+
* @public
|
|
3293
3775
|
* <p>The workflow's parameter template.</p>
|
|
3294
3776
|
*/
|
|
3295
3777
|
parameterTemplate?: Record<string, WorkflowParameter>;
|
|
3296
3778
|
/**
|
|
3779
|
+
* @public
|
|
3297
3780
|
* <p>The workflow's storage capacity in gigabytes.</p>
|
|
3298
3781
|
*/
|
|
3299
3782
|
storageCapacity?: number;
|
|
3300
3783
|
/**
|
|
3784
|
+
* @public
|
|
3301
3785
|
* <p>When the workflow was created.</p>
|
|
3302
3786
|
*/
|
|
3303
3787
|
creationTime?: Date;
|
|
3304
3788
|
/**
|
|
3789
|
+
* @public
|
|
3305
3790
|
* <p>The workflow's status message.</p>
|
|
3306
3791
|
*/
|
|
3307
3792
|
statusMessage?: string;
|
|
3308
3793
|
/**
|
|
3794
|
+
* @public
|
|
3309
3795
|
* <p>The workflow's tags.</p>
|
|
3310
3796
|
*/
|
|
3311
3797
|
tags?: Record<string, string>;
|
|
3312
3798
|
/**
|
|
3799
|
+
* @public
|
|
3313
3800
|
* <p>
|
|
3314
3801
|
* Gets metadata for workflow.
|
|
3315
3802
|
* </p>
|
|
3316
3803
|
*/
|
|
3317
3804
|
metadata?: Record<string, string>;
|
|
3318
3805
|
/**
|
|
3806
|
+
* @public
|
|
3319
3807
|
* <p>
|
|
3320
3808
|
* The computational accelerator specified to run the workflow. </p>
|
|
3321
3809
|
*/
|
|
@@ -3327,14 +3815,17 @@ export interface GetWorkflowResponse {
|
|
|
3327
3815
|
*/
|
|
3328
3816
|
export interface ImportReadSetFilter {
|
|
3329
3817
|
/**
|
|
3818
|
+
* @public
|
|
3330
3819
|
* <p>A status to filter on.</p>
|
|
3331
3820
|
*/
|
|
3332
3821
|
status?: ReadSetImportJobStatus | string;
|
|
3333
3822
|
/**
|
|
3823
|
+
* @public
|
|
3334
3824
|
* <p>The filter's start date.</p>
|
|
3335
3825
|
*/
|
|
3336
3826
|
createdAfter?: Date;
|
|
3337
3827
|
/**
|
|
3828
|
+
* @public
|
|
3338
3829
|
* <p>The filter's end date.</p>
|
|
3339
3830
|
*/
|
|
3340
3831
|
createdBefore?: Date;
|
|
@@ -3345,26 +3836,32 @@ export interface ImportReadSetFilter {
|
|
|
3345
3836
|
*/
|
|
3346
3837
|
export interface ImportReadSetJobItem {
|
|
3347
3838
|
/**
|
|
3839
|
+
* @public
|
|
3348
3840
|
* <p>The job's ID.</p>
|
|
3349
3841
|
*/
|
|
3350
3842
|
id: string | undefined;
|
|
3351
3843
|
/**
|
|
3844
|
+
* @public
|
|
3352
3845
|
* <p>The job's sequence store ID.</p>
|
|
3353
3846
|
*/
|
|
3354
3847
|
sequenceStoreId: string | undefined;
|
|
3355
3848
|
/**
|
|
3849
|
+
* @public
|
|
3356
3850
|
* <p>The job's service role ARN.</p>
|
|
3357
3851
|
*/
|
|
3358
3852
|
roleArn: string | undefined;
|
|
3359
3853
|
/**
|
|
3854
|
+
* @public
|
|
3360
3855
|
* <p>The job's status.</p>
|
|
3361
3856
|
*/
|
|
3362
3857
|
status: ReadSetImportJobStatus | string | undefined;
|
|
3363
3858
|
/**
|
|
3859
|
+
* @public
|
|
3364
3860
|
* <p>When the job was created.</p>
|
|
3365
3861
|
*/
|
|
3366
3862
|
creationTime: Date | undefined;
|
|
3367
3863
|
/**
|
|
3864
|
+
* @public
|
|
3368
3865
|
* <p>When the job completed.</p>
|
|
3369
3866
|
*/
|
|
3370
3867
|
completionTime?: Date;
|
|
@@ -3375,14 +3872,17 @@ export interface ImportReadSetJobItem {
|
|
|
3375
3872
|
*/
|
|
3376
3873
|
export interface ImportReferenceFilter {
|
|
3377
3874
|
/**
|
|
3875
|
+
* @public
|
|
3378
3876
|
* <p>A status to filter on.</p>
|
|
3379
3877
|
*/
|
|
3380
3878
|
status?: ReferenceImportJobStatus | string;
|
|
3381
3879
|
/**
|
|
3880
|
+
* @public
|
|
3382
3881
|
* <p>The filter's start date.</p>
|
|
3383
3882
|
*/
|
|
3384
3883
|
createdAfter?: Date;
|
|
3385
3884
|
/**
|
|
3885
|
+
* @public
|
|
3386
3886
|
* <p>The filter's end date.</p>
|
|
3387
3887
|
*/
|
|
3388
3888
|
createdBefore?: Date;
|
|
@@ -3393,26 +3893,32 @@ export interface ImportReferenceFilter {
|
|
|
3393
3893
|
*/
|
|
3394
3894
|
export interface ImportReferenceJobItem {
|
|
3395
3895
|
/**
|
|
3896
|
+
* @public
|
|
3396
3897
|
* <p>The job's ID.</p>
|
|
3397
3898
|
*/
|
|
3398
3899
|
id: string | undefined;
|
|
3399
3900
|
/**
|
|
3901
|
+
* @public
|
|
3400
3902
|
* <p>The job's reference store ID.</p>
|
|
3401
3903
|
*/
|
|
3402
3904
|
referenceStoreId: string | undefined;
|
|
3403
3905
|
/**
|
|
3906
|
+
* @public
|
|
3404
3907
|
* <p>The job's service role ARN.</p>
|
|
3405
3908
|
*/
|
|
3406
3909
|
roleArn: string | undefined;
|
|
3407
3910
|
/**
|
|
3911
|
+
* @public
|
|
3408
3912
|
* <p>The job's status.</p>
|
|
3409
3913
|
*/
|
|
3410
3914
|
status: ReferenceImportJobStatus | string | undefined;
|
|
3411
3915
|
/**
|
|
3916
|
+
* @public
|
|
3412
3917
|
* <p>When the job was created.</p>
|
|
3413
3918
|
*/
|
|
3414
3919
|
creationTime: Date | undefined;
|
|
3415
3920
|
/**
|
|
3921
|
+
* @public
|
|
3416
3922
|
* <p>When the job completed.</p>
|
|
3417
3923
|
*/
|
|
3418
3924
|
completionTime?: Date;
|
|
@@ -3422,18 +3928,21 @@ export interface ImportReferenceJobItem {
|
|
|
3422
3928
|
*/
|
|
3423
3929
|
export interface ListMultipartReadSetUploadsRequest {
|
|
3424
3930
|
/**
|
|
3931
|
+
* @public
|
|
3425
3932
|
* <p>
|
|
3426
3933
|
* The Sequence Store ID used for the multipart uploads.
|
|
3427
3934
|
* </p>
|
|
3428
3935
|
*/
|
|
3429
3936
|
sequenceStoreId: string | undefined;
|
|
3430
3937
|
/**
|
|
3938
|
+
* @public
|
|
3431
3939
|
* <p>
|
|
3432
3940
|
* The maximum number of multipart uploads returned in a page.
|
|
3433
3941
|
* </p>
|
|
3434
3942
|
*/
|
|
3435
3943
|
maxResults?: number;
|
|
3436
3944
|
/**
|
|
3945
|
+
* @public
|
|
3437
3946
|
* <p>
|
|
3438
3947
|
* Next token returned in the response of a previous ListMultipartReadSetUploads call. Used to get the next page of results.
|
|
3439
3948
|
* </p>
|
|
@@ -3448,66 +3957,77 @@ export interface ListMultipartReadSetUploadsRequest {
|
|
|
3448
3957
|
*/
|
|
3449
3958
|
export interface MultipartReadSetUploadListItem {
|
|
3450
3959
|
/**
|
|
3960
|
+
* @public
|
|
3451
3961
|
* <p>
|
|
3452
3962
|
* The sequence store ID used for the multipart upload.
|
|
3453
3963
|
* </p>
|
|
3454
3964
|
*/
|
|
3455
3965
|
sequenceStoreId: string | undefined;
|
|
3456
3966
|
/**
|
|
3967
|
+
* @public
|
|
3457
3968
|
* <p>
|
|
3458
3969
|
* The ID for the initiated multipart upload.
|
|
3459
3970
|
* </p>
|
|
3460
3971
|
*/
|
|
3461
3972
|
uploadId: string | undefined;
|
|
3462
3973
|
/**
|
|
3974
|
+
* @public
|
|
3463
3975
|
* <p>
|
|
3464
3976
|
* The type of file the read set originated from.
|
|
3465
3977
|
* </p>
|
|
3466
3978
|
*/
|
|
3467
3979
|
sourceFileType: FileType | string | undefined;
|
|
3468
3980
|
/**
|
|
3981
|
+
* @public
|
|
3469
3982
|
* <p>
|
|
3470
3983
|
* The read set source's subject ID.
|
|
3471
3984
|
* </p>
|
|
3472
3985
|
*/
|
|
3473
3986
|
subjectId: string | undefined;
|
|
3474
3987
|
/**
|
|
3988
|
+
* @public
|
|
3475
3989
|
* <p>
|
|
3476
3990
|
* The read set source's sample ID.
|
|
3477
3991
|
* </p>
|
|
3478
3992
|
*/
|
|
3479
3993
|
sampleId: string | undefined;
|
|
3480
3994
|
/**
|
|
3995
|
+
* @public
|
|
3481
3996
|
* <p>
|
|
3482
3997
|
* The source of an uploaded part.
|
|
3483
3998
|
* </p>
|
|
3484
3999
|
*/
|
|
3485
4000
|
generatedFrom: string | undefined;
|
|
3486
4001
|
/**
|
|
4002
|
+
* @public
|
|
3487
4003
|
* <p>
|
|
3488
4004
|
* The source's reference ARN.
|
|
3489
4005
|
* </p>
|
|
3490
4006
|
*/
|
|
3491
4007
|
referenceArn: string | undefined;
|
|
3492
4008
|
/**
|
|
4009
|
+
* @public
|
|
3493
4010
|
* <p>
|
|
3494
4011
|
* The name of a read set.
|
|
3495
4012
|
* </p>
|
|
3496
4013
|
*/
|
|
3497
4014
|
name?: string;
|
|
3498
4015
|
/**
|
|
4016
|
+
* @public
|
|
3499
4017
|
* <p>
|
|
3500
4018
|
* The description of a read set.
|
|
3501
4019
|
* </p>
|
|
3502
4020
|
*/
|
|
3503
4021
|
description?: string;
|
|
3504
4022
|
/**
|
|
4023
|
+
* @public
|
|
3505
4024
|
* <p>
|
|
3506
4025
|
* Any tags you wish to add to a read set.
|
|
3507
4026
|
* </p>
|
|
3508
4027
|
*/
|
|
3509
4028
|
tags?: Record<string, string>;
|
|
3510
4029
|
/**
|
|
4030
|
+
* @public
|
|
3511
4031
|
* <p>
|
|
3512
4032
|
* The time stamp for when a direct upload was created.
|
|
3513
4033
|
* </p>
|
|
@@ -3519,12 +4039,14 @@ export interface MultipartReadSetUploadListItem {
|
|
|
3519
4039
|
*/
|
|
3520
4040
|
export interface ListMultipartReadSetUploadsResponse {
|
|
3521
4041
|
/**
|
|
4042
|
+
* @public
|
|
3522
4043
|
* <p>
|
|
3523
4044
|
* Next token returned in the response of a previous ListMultipartReadSetUploads call. Used to get the next page of results.
|
|
3524
4045
|
* </p>
|
|
3525
4046
|
*/
|
|
3526
4047
|
nextToken?: string;
|
|
3527
4048
|
/**
|
|
4049
|
+
* @public
|
|
3528
4050
|
* <p>
|
|
3529
4051
|
* An array of multipart uploads.
|
|
3530
4052
|
* </p>
|
|
@@ -3536,18 +4058,22 @@ export interface ListMultipartReadSetUploadsResponse {
|
|
|
3536
4058
|
*/
|
|
3537
4059
|
export interface ListReadSetActivationJobsRequest {
|
|
3538
4060
|
/**
|
|
4061
|
+
* @public
|
|
3539
4062
|
* <p>The read set's sequence store ID.</p>
|
|
3540
4063
|
*/
|
|
3541
4064
|
sequenceStoreId: string | undefined;
|
|
3542
4065
|
/**
|
|
4066
|
+
* @public
|
|
3543
4067
|
* <p>The maximum number of read set activation jobs to return in one page of results.</p>
|
|
3544
4068
|
*/
|
|
3545
4069
|
maxResults?: number;
|
|
3546
4070
|
/**
|
|
4071
|
+
* @public
|
|
3547
4072
|
* <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
|
|
3548
4073
|
*/
|
|
3549
4074
|
nextToken?: string;
|
|
3550
4075
|
/**
|
|
4076
|
+
* @public
|
|
3551
4077
|
* <p>A filter to apply to the list.</p>
|
|
3552
4078
|
*/
|
|
3553
4079
|
filter?: ActivateReadSetFilter;
|
|
@@ -3557,10 +4083,12 @@ export interface ListReadSetActivationJobsRequest {
|
|
|
3557
4083
|
*/
|
|
3558
4084
|
export interface ListReadSetActivationJobsResponse {
|
|
3559
4085
|
/**
|
|
4086
|
+
* @public
|
|
3560
4087
|
* <p>A pagination token that's included if more results are available.</p>
|
|
3561
4088
|
*/
|
|
3562
4089
|
nextToken?: string;
|
|
3563
4090
|
/**
|
|
4091
|
+
* @public
|
|
3564
4092
|
* <p>A list of jobs.</p>
|
|
3565
4093
|
*/
|
|
3566
4094
|
activationJobs?: ActivateReadSetJobItem[];
|
|
@@ -3570,18 +4098,22 @@ export interface ListReadSetActivationJobsResponse {
|
|
|
3570
4098
|
*/
|
|
3571
4099
|
export interface ListReadSetExportJobsRequest {
|
|
3572
4100
|
/**
|
|
4101
|
+
* @public
|
|
3573
4102
|
* <p>The jobs' sequence store ID.</p>
|
|
3574
4103
|
*/
|
|
3575
4104
|
sequenceStoreId: string | undefined;
|
|
3576
4105
|
/**
|
|
4106
|
+
* @public
|
|
3577
4107
|
* <p>The maximum number of jobs to return in one page of results.</p>
|
|
3578
4108
|
*/
|
|
3579
4109
|
maxResults?: number;
|
|
3580
4110
|
/**
|
|
4111
|
+
* @public
|
|
3581
4112
|
* <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
|
|
3582
4113
|
*/
|
|
3583
4114
|
nextToken?: string;
|
|
3584
4115
|
/**
|
|
4116
|
+
* @public
|
|
3585
4117
|
* <p>A filter to apply to the list.</p>
|
|
3586
4118
|
*/
|
|
3587
4119
|
filter?: ExportReadSetFilter;
|
|
@@ -3591,10 +4123,12 @@ export interface ListReadSetExportJobsRequest {
|
|
|
3591
4123
|
*/
|
|
3592
4124
|
export interface ListReadSetExportJobsResponse {
|
|
3593
4125
|
/**
|
|
4126
|
+
* @public
|
|
3594
4127
|
* <p>A pagination token that's included if more results are available.</p>
|
|
3595
4128
|
*/
|
|
3596
4129
|
nextToken?: string;
|
|
3597
4130
|
/**
|
|
4131
|
+
* @public
|
|
3598
4132
|
* <p>A list of jobs.</p>
|
|
3599
4133
|
*/
|
|
3600
4134
|
exportJobs?: ExportReadSetJobDetail[];
|
|
@@ -3604,18 +4138,22 @@ export interface ListReadSetExportJobsResponse {
|
|
|
3604
4138
|
*/
|
|
3605
4139
|
export interface ListReadSetImportJobsRequest {
|
|
3606
4140
|
/**
|
|
4141
|
+
* @public
|
|
3607
4142
|
* <p>The maximum number of jobs to return in one page of results.</p>
|
|
3608
4143
|
*/
|
|
3609
4144
|
maxResults?: number;
|
|
3610
4145
|
/**
|
|
4146
|
+
* @public
|
|
3611
4147
|
* <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
|
|
3612
4148
|
*/
|
|
3613
4149
|
nextToken?: string;
|
|
3614
4150
|
/**
|
|
4151
|
+
* @public
|
|
3615
4152
|
* <p>The jobs' sequence store ID.</p>
|
|
3616
4153
|
*/
|
|
3617
4154
|
sequenceStoreId: string | undefined;
|
|
3618
4155
|
/**
|
|
4156
|
+
* @public
|
|
3619
4157
|
* <p>A filter to apply to the list.</p>
|
|
3620
4158
|
*/
|
|
3621
4159
|
filter?: ImportReadSetFilter;
|
|
@@ -3625,10 +4163,12 @@ export interface ListReadSetImportJobsRequest {
|
|
|
3625
4163
|
*/
|
|
3626
4164
|
export interface ListReadSetImportJobsResponse {
|
|
3627
4165
|
/**
|
|
4166
|
+
* @public
|
|
3628
4167
|
* <p>A pagination token that's included if more results are available.</p>
|
|
3629
4168
|
*/
|
|
3630
4169
|
nextToken?: string;
|
|
3631
4170
|
/**
|
|
4171
|
+
* @public
|
|
3632
4172
|
* <p>A list of jobs.</p>
|
|
3633
4173
|
*/
|
|
3634
4174
|
importJobs?: ImportReadSetJobItem[];
|
|
@@ -3639,44 +4179,53 @@ export interface ListReadSetImportJobsResponse {
|
|
|
3639
4179
|
*/
|
|
3640
4180
|
export interface ReadSetFilter {
|
|
3641
4181
|
/**
|
|
4182
|
+
* @public
|
|
3642
4183
|
* <p>A name to filter on.</p>
|
|
3643
4184
|
*/
|
|
3644
4185
|
name?: string;
|
|
3645
4186
|
/**
|
|
4187
|
+
* @public
|
|
3646
4188
|
* <p>A status to filter on.</p>
|
|
3647
4189
|
*/
|
|
3648
4190
|
status?: ReadSetStatus | string;
|
|
3649
4191
|
/**
|
|
4192
|
+
* @public
|
|
3650
4193
|
* <p>A genome reference ARN to filter on.</p>
|
|
3651
4194
|
*/
|
|
3652
4195
|
referenceArn?: string;
|
|
3653
4196
|
/**
|
|
4197
|
+
* @public
|
|
3654
4198
|
* <p>The filter's start date.</p>
|
|
3655
4199
|
*/
|
|
3656
4200
|
createdAfter?: Date;
|
|
3657
4201
|
/**
|
|
4202
|
+
* @public
|
|
3658
4203
|
* <p>The filter's end date.</p>
|
|
3659
4204
|
*/
|
|
3660
4205
|
createdBefore?: Date;
|
|
3661
4206
|
/**
|
|
4207
|
+
* @public
|
|
3662
4208
|
* <p>
|
|
3663
4209
|
* The read set source's sample ID.
|
|
3664
4210
|
* </p>
|
|
3665
4211
|
*/
|
|
3666
4212
|
sampleId?: string;
|
|
3667
4213
|
/**
|
|
4214
|
+
* @public
|
|
3668
4215
|
* <p>
|
|
3669
4216
|
* The read set source's subject ID.
|
|
3670
4217
|
* </p>
|
|
3671
4218
|
*/
|
|
3672
4219
|
subjectId?: string;
|
|
3673
4220
|
/**
|
|
4221
|
+
* @public
|
|
3674
4222
|
* <p>
|
|
3675
4223
|
* Where the source originated.
|
|
3676
4224
|
* </p>
|
|
3677
4225
|
*/
|
|
3678
4226
|
generatedFrom?: string;
|
|
3679
4227
|
/**
|
|
4228
|
+
* @public
|
|
3680
4229
|
* <p>
|
|
3681
4230
|
* The creation type of the read set.
|
|
3682
4231
|
* </p>
|
|
@@ -3688,18 +4237,22 @@ export interface ReadSetFilter {
|
|
|
3688
4237
|
*/
|
|
3689
4238
|
export interface ListReadSetsRequest {
|
|
3690
4239
|
/**
|
|
4240
|
+
* @public
|
|
3691
4241
|
* <p>The jobs' sequence store ID.</p>
|
|
3692
4242
|
*/
|
|
3693
4243
|
sequenceStoreId: string | undefined;
|
|
3694
4244
|
/**
|
|
4245
|
+
* @public
|
|
3695
4246
|
* <p>The maximum number of read sets to return in one page of results.</p>
|
|
3696
4247
|
*/
|
|
3697
4248
|
maxResults?: number;
|
|
3698
4249
|
/**
|
|
4250
|
+
* @public
|
|
3699
4251
|
* <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
|
|
3700
4252
|
*/
|
|
3701
4253
|
nextToken?: string;
|
|
3702
4254
|
/**
|
|
4255
|
+
* @public
|
|
3703
4256
|
* <p>A filter to apply to the list.</p>
|
|
3704
4257
|
*/
|
|
3705
4258
|
filter?: ReadSetFilter;
|
|
@@ -3710,60 +4263,74 @@ export interface ListReadSetsRequest {
|
|
|
3710
4263
|
*/
|
|
3711
4264
|
export interface ReadSetListItem {
|
|
3712
4265
|
/**
|
|
4266
|
+
* @public
|
|
3713
4267
|
* <p>The read set's ID.</p>
|
|
3714
4268
|
*/
|
|
3715
4269
|
id: string | undefined;
|
|
3716
4270
|
/**
|
|
4271
|
+
* @public
|
|
3717
4272
|
* <p>The read set's ARN.</p>
|
|
3718
4273
|
*/
|
|
3719
4274
|
arn: string | undefined;
|
|
3720
4275
|
/**
|
|
4276
|
+
* @public
|
|
3721
4277
|
* <p>The read set's sequence store ID.</p>
|
|
3722
4278
|
*/
|
|
3723
4279
|
sequenceStoreId: string | undefined;
|
|
3724
4280
|
/**
|
|
4281
|
+
* @public
|
|
3725
4282
|
* <p>The read set's subject ID.</p>
|
|
3726
4283
|
*/
|
|
3727
4284
|
subjectId?: string;
|
|
3728
4285
|
/**
|
|
4286
|
+
* @public
|
|
3729
4287
|
* <p>The read set's sample ID.</p>
|
|
3730
4288
|
*/
|
|
3731
4289
|
sampleId?: string;
|
|
3732
4290
|
/**
|
|
4291
|
+
* @public
|
|
3733
4292
|
* <p>The read set's status.</p>
|
|
3734
4293
|
*/
|
|
3735
4294
|
status: ReadSetStatus | string | undefined;
|
|
3736
4295
|
/**
|
|
4296
|
+
* @public
|
|
3737
4297
|
* <p>The read set's name.</p>
|
|
3738
4298
|
*/
|
|
3739
4299
|
name?: string;
|
|
3740
4300
|
/**
|
|
4301
|
+
* @public
|
|
3741
4302
|
* <p>The read set's description.</p>
|
|
3742
4303
|
*/
|
|
3743
4304
|
description?: string;
|
|
3744
4305
|
/**
|
|
4306
|
+
* @public
|
|
3745
4307
|
* <p>The read set's genome reference ARN.</p>
|
|
3746
4308
|
*/
|
|
3747
4309
|
referenceArn?: string;
|
|
3748
4310
|
/**
|
|
4311
|
+
* @public
|
|
3749
4312
|
* <p>The read set's file type.</p>
|
|
3750
4313
|
*/
|
|
3751
4314
|
fileType: FileType | string | undefined;
|
|
3752
4315
|
/**
|
|
4316
|
+
* @public
|
|
3753
4317
|
* <p>Details about a sequence.</p>
|
|
3754
4318
|
*/
|
|
3755
4319
|
sequenceInformation?: SequenceInformation;
|
|
3756
4320
|
/**
|
|
4321
|
+
* @public
|
|
3757
4322
|
* <p>When the read set was created.</p>
|
|
3758
4323
|
*/
|
|
3759
4324
|
creationTime: Date | undefined;
|
|
3760
4325
|
/**
|
|
4326
|
+
* @public
|
|
3761
4327
|
* <p>
|
|
3762
4328
|
* The status for a read set. It provides more detail as to why the read set has a status.
|
|
3763
4329
|
* </p>
|
|
3764
4330
|
*/
|
|
3765
4331
|
statusMessage?: string;
|
|
3766
4332
|
/**
|
|
4333
|
+
* @public
|
|
3767
4334
|
* <p>
|
|
3768
4335
|
* The creation type of the read set.
|
|
3769
4336
|
* </p>
|
|
@@ -3775,10 +4342,12 @@ export interface ReadSetListItem {
|
|
|
3775
4342
|
*/
|
|
3776
4343
|
export interface ListReadSetsResponse {
|
|
3777
4344
|
/**
|
|
4345
|
+
* @public
|
|
3778
4346
|
* <p>A pagination token that's included if more results are available.</p>
|
|
3779
4347
|
*/
|
|
3780
4348
|
nextToken?: string;
|
|
3781
4349
|
/**
|
|
4350
|
+
* @public
|
|
3782
4351
|
* <p>A list of read sets.</p>
|
|
3783
4352
|
*/
|
|
3784
4353
|
readSets: ReadSetListItem[] | undefined;
|
|
@@ -3791,12 +4360,14 @@ export interface ListReadSetsResponse {
|
|
|
3791
4360
|
*/
|
|
3792
4361
|
export interface ReadSetUploadPartListFilter {
|
|
3793
4362
|
/**
|
|
4363
|
+
* @public
|
|
3794
4364
|
* <p>
|
|
3795
4365
|
* Filters for read set uploads after a specified time.
|
|
3796
4366
|
* </p>
|
|
3797
4367
|
*/
|
|
3798
4368
|
createdAfter?: Date;
|
|
3799
4369
|
/**
|
|
4370
|
+
* @public
|
|
3800
4371
|
* <p>
|
|
3801
4372
|
* Filters for read set part uploads before a specified time.
|
|
3802
4373
|
* </p>
|
|
@@ -3808,36 +4379,42 @@ export interface ReadSetUploadPartListFilter {
|
|
|
3808
4379
|
*/
|
|
3809
4380
|
export interface ListReadSetUploadPartsRequest {
|
|
3810
4381
|
/**
|
|
4382
|
+
* @public
|
|
3811
4383
|
* <p>
|
|
3812
4384
|
* The Sequence Store ID used for the multipart uploads.
|
|
3813
4385
|
* </p>
|
|
3814
4386
|
*/
|
|
3815
4387
|
sequenceStoreId: string | undefined;
|
|
3816
4388
|
/**
|
|
4389
|
+
* @public
|
|
3817
4390
|
* <p>
|
|
3818
4391
|
* The ID for the initiated multipart upload.
|
|
3819
4392
|
* </p>
|
|
3820
4393
|
*/
|
|
3821
4394
|
uploadId: string | undefined;
|
|
3822
4395
|
/**
|
|
4396
|
+
* @public
|
|
3823
4397
|
* <p>
|
|
3824
4398
|
* The source file for the upload part.
|
|
3825
4399
|
* </p>
|
|
3826
4400
|
*/
|
|
3827
4401
|
partSource: ReadSetPartSource | string | undefined;
|
|
3828
4402
|
/**
|
|
4403
|
+
* @public
|
|
3829
4404
|
* <p>
|
|
3830
4405
|
* The maximum number of read set upload parts returned in a page.
|
|
3831
4406
|
* </p>
|
|
3832
4407
|
*/
|
|
3833
4408
|
maxResults?: number;
|
|
3834
4409
|
/**
|
|
4410
|
+
* @public
|
|
3835
4411
|
* <p>
|
|
3836
4412
|
* Next token returned in the response of a previous ListReadSetUploadPartsRequest call. Used to get the next page of results.
|
|
3837
4413
|
* </p>
|
|
3838
4414
|
*/
|
|
3839
4415
|
nextToken?: string;
|
|
3840
4416
|
/**
|
|
4417
|
+
* @public
|
|
3841
4418
|
* <p>
|
|
3842
4419
|
* Attributes used to filter for a specific subset of read set part uploads.
|
|
3843
4420
|
* </p>
|
|
@@ -3852,36 +4429,42 @@ export interface ListReadSetUploadPartsRequest {
|
|
|
3852
4429
|
*/
|
|
3853
4430
|
export interface ReadSetUploadPartListItem {
|
|
3854
4431
|
/**
|
|
4432
|
+
* @public
|
|
3855
4433
|
* <p>
|
|
3856
4434
|
* The number identifying the part in an upload.
|
|
3857
4435
|
* </p>
|
|
3858
4436
|
*/
|
|
3859
4437
|
partNumber: number | undefined;
|
|
3860
4438
|
/**
|
|
4439
|
+
* @public
|
|
3861
4440
|
* <p>
|
|
3862
4441
|
* The size of the the part in an upload.
|
|
3863
4442
|
* </p>
|
|
3864
4443
|
*/
|
|
3865
4444
|
partSize: number | undefined;
|
|
3866
4445
|
/**
|
|
4446
|
+
* @public
|
|
3867
4447
|
* <p>
|
|
3868
4448
|
* The origin of the part being direct uploaded.
|
|
3869
4449
|
* </p>
|
|
3870
4450
|
*/
|
|
3871
4451
|
partSource: ReadSetPartSource | string | undefined;
|
|
3872
4452
|
/**
|
|
4453
|
+
* @public
|
|
3873
4454
|
* <p>
|
|
3874
4455
|
* A unique identifier used to confirm that parts are being added to the correct upload.
|
|
3875
4456
|
* </p>
|
|
3876
4457
|
*/
|
|
3877
4458
|
checksum: string | undefined;
|
|
3878
4459
|
/**
|
|
4460
|
+
* @public
|
|
3879
4461
|
* <p>
|
|
3880
4462
|
* The time stamp for when a direct upload was created.
|
|
3881
4463
|
* </p>
|
|
3882
4464
|
*/
|
|
3883
4465
|
creationTime?: Date;
|
|
3884
4466
|
/**
|
|
4467
|
+
* @public
|
|
3885
4468
|
* <p>
|
|
3886
4469
|
* The time stamp for the most recent update to an uploaded part.
|
|
3887
4470
|
* </p>
|
|
@@ -3893,12 +4476,14 @@ export interface ReadSetUploadPartListItem {
|
|
|
3893
4476
|
*/
|
|
3894
4477
|
export interface ListReadSetUploadPartsResponse {
|
|
3895
4478
|
/**
|
|
4479
|
+
* @public
|
|
3896
4480
|
* <p>
|
|
3897
4481
|
* Next token returned in the response of a previous ListReadSetUploadParts call. Used to get the next page of results.
|
|
3898
4482
|
* </p>
|
|
3899
4483
|
*/
|
|
3900
4484
|
nextToken?: string;
|
|
3901
4485
|
/**
|
|
4486
|
+
* @public
|
|
3902
4487
|
* <p>
|
|
3903
4488
|
* An array of upload parts.
|
|
3904
4489
|
* </p>
|
|
@@ -3910,18 +4495,22 @@ export interface ListReadSetUploadPartsResponse {
|
|
|
3910
4495
|
*/
|
|
3911
4496
|
export interface ListReferenceImportJobsRequest {
|
|
3912
4497
|
/**
|
|
4498
|
+
* @public
|
|
3913
4499
|
* <p>The maximum number of jobs to return in one page of results.</p>
|
|
3914
4500
|
*/
|
|
3915
4501
|
maxResults?: number;
|
|
3916
4502
|
/**
|
|
4503
|
+
* @public
|
|
3917
4504
|
* <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
|
|
3918
4505
|
*/
|
|
3919
4506
|
nextToken?: string;
|
|
3920
4507
|
/**
|
|
4508
|
+
* @public
|
|
3921
4509
|
* <p>The job's reference store ID.</p>
|
|
3922
4510
|
*/
|
|
3923
4511
|
referenceStoreId: string | undefined;
|
|
3924
4512
|
/**
|
|
4513
|
+
* @public
|
|
3925
4514
|
* <p>A filter to apply to the list.</p>
|
|
3926
4515
|
*/
|
|
3927
4516
|
filter?: ImportReferenceFilter;
|
|
@@ -3931,10 +4520,12 @@ export interface ListReferenceImportJobsRequest {
|
|
|
3931
4520
|
*/
|
|
3932
4521
|
export interface ListReferenceImportJobsResponse {
|
|
3933
4522
|
/**
|
|
4523
|
+
* @public
|
|
3934
4524
|
* <p>A pagination token that's included if more results are available.</p>
|
|
3935
4525
|
*/
|
|
3936
4526
|
nextToken?: string;
|
|
3937
4527
|
/**
|
|
4528
|
+
* @public
|
|
3938
4529
|
* <p>A lis of jobs.</p>
|
|
3939
4530
|
*/
|
|
3940
4531
|
importJobs?: ImportReferenceJobItem[];
|
|
@@ -3945,18 +4536,22 @@ export interface ListReferenceImportJobsResponse {
|
|
|
3945
4536
|
*/
|
|
3946
4537
|
export interface ReferenceFilter {
|
|
3947
4538
|
/**
|
|
4539
|
+
* @public
|
|
3948
4540
|
* <p>A name to filter on.</p>
|
|
3949
4541
|
*/
|
|
3950
4542
|
name?: string;
|
|
3951
4543
|
/**
|
|
4544
|
+
* @public
|
|
3952
4545
|
* <p>An MD5 checksum to filter on.</p>
|
|
3953
4546
|
*/
|
|
3954
4547
|
md5?: string;
|
|
3955
4548
|
/**
|
|
4549
|
+
* @public
|
|
3956
4550
|
* <p>The filter's start date.</p>
|
|
3957
4551
|
*/
|
|
3958
4552
|
createdAfter?: Date;
|
|
3959
4553
|
/**
|
|
4554
|
+
* @public
|
|
3960
4555
|
* <p>The filter's end date.</p>
|
|
3961
4556
|
*/
|
|
3962
4557
|
createdBefore?: Date;
|
|
@@ -3966,18 +4561,22 @@ export interface ReferenceFilter {
|
|
|
3966
4561
|
*/
|
|
3967
4562
|
export interface ListReferencesRequest {
|
|
3968
4563
|
/**
|
|
4564
|
+
* @public
|
|
3969
4565
|
* <p>The references' reference store ID.</p>
|
|
3970
4566
|
*/
|
|
3971
4567
|
referenceStoreId: string | undefined;
|
|
3972
4568
|
/**
|
|
4569
|
+
* @public
|
|
3973
4570
|
* <p>The maximum number of references to return in one page of results.</p>
|
|
3974
4571
|
*/
|
|
3975
4572
|
maxResults?: number;
|
|
3976
4573
|
/**
|
|
4574
|
+
* @public
|
|
3977
4575
|
* <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
|
|
3978
4576
|
*/
|
|
3979
4577
|
nextToken?: string;
|
|
3980
4578
|
/**
|
|
4579
|
+
* @public
|
|
3981
4580
|
* <p>A filter to apply to the list.</p>
|
|
3982
4581
|
*/
|
|
3983
4582
|
filter?: ReferenceFilter;
|
|
@@ -3988,38 +4587,47 @@ export interface ListReferencesRequest {
|
|
|
3988
4587
|
*/
|
|
3989
4588
|
export interface ReferenceListItem {
|
|
3990
4589
|
/**
|
|
4590
|
+
* @public
|
|
3991
4591
|
* <p>The reference's ID.</p>
|
|
3992
4592
|
*/
|
|
3993
4593
|
id: string | undefined;
|
|
3994
4594
|
/**
|
|
4595
|
+
* @public
|
|
3995
4596
|
* <p>The reference's ARN.</p>
|
|
3996
4597
|
*/
|
|
3997
4598
|
arn: string | undefined;
|
|
3998
4599
|
/**
|
|
4600
|
+
* @public
|
|
3999
4601
|
* <p>The reference's store ID.</p>
|
|
4000
4602
|
*/
|
|
4001
4603
|
referenceStoreId: string | undefined;
|
|
4002
4604
|
/**
|
|
4605
|
+
* @public
|
|
4003
4606
|
* <p>The reference's MD5 checksum.</p>
|
|
4004
4607
|
*/
|
|
4005
4608
|
md5: string | undefined;
|
|
4006
4609
|
/**
|
|
4610
|
+
* @public
|
|
4007
4611
|
* <p>The reference's status.</p>
|
|
4008
4612
|
*/
|
|
4009
4613
|
status?: ReferenceStatus | string;
|
|
4010
4614
|
/**
|
|
4615
|
+
* @public
|
|
4011
4616
|
* <p>The reference's name.</p>
|
|
4012
4617
|
*/
|
|
4013
4618
|
name?: string;
|
|
4014
4619
|
/**
|
|
4620
|
+
* @public
|
|
4015
4621
|
* <p>The reference's description.</p>
|
|
4016
4622
|
*/
|
|
4017
4623
|
description?: string;
|
|
4018
4624
|
/**
|
|
4625
|
+
* @public
|
|
4019
4626
|
* <p>When the reference was created.</p>
|
|
4020
4627
|
*/
|
|
4021
4628
|
creationTime: Date | undefined;
|
|
4022
4629
|
/**
|
|
4630
|
+
* @public
|
|
4023
4631
|
* <p>When the reference was updated.</p>
|
|
4024
4632
|
*/
|
|
4025
4633
|
updateTime: Date | undefined;
|
|
@@ -4029,10 +4637,12 @@ export interface ReferenceListItem {
|
|
|
4029
4637
|
*/
|
|
4030
4638
|
export interface ListReferencesResponse {
|
|
4031
4639
|
/**
|
|
4640
|
+
* @public
|
|
4032
4641
|
* <p>A pagination token that's included if more results are available.</p>
|
|
4033
4642
|
*/
|
|
4034
4643
|
nextToken?: string;
|
|
4035
4644
|
/**
|
|
4645
|
+
* @public
|
|
4036
4646
|
* <p>A list of references.</p>
|
|
4037
4647
|
*/
|
|
4038
4648
|
references: ReferenceListItem[] | undefined;
|
|
@@ -4043,14 +4653,17 @@ export interface ListReferencesResponse {
|
|
|
4043
4653
|
*/
|
|
4044
4654
|
export interface ReferenceStoreFilter {
|
|
4045
4655
|
/**
|
|
4656
|
+
* @public
|
|
4046
4657
|
* <p>The name to filter on.</p>
|
|
4047
4658
|
*/
|
|
4048
4659
|
name?: string;
|
|
4049
4660
|
/**
|
|
4661
|
+
* @public
|
|
4050
4662
|
* <p>The filter's start date.</p>
|
|
4051
4663
|
*/
|
|
4052
4664
|
createdAfter?: Date;
|
|
4053
4665
|
/**
|
|
4666
|
+
* @public
|
|
4054
4667
|
* <p>The filter's end date.</p>
|
|
4055
4668
|
*/
|
|
4056
4669
|
createdBefore?: Date;
|
|
@@ -4060,14 +4673,17 @@ export interface ReferenceStoreFilter {
|
|
|
4060
4673
|
*/
|
|
4061
4674
|
export interface ListReferenceStoresRequest {
|
|
4062
4675
|
/**
|
|
4676
|
+
* @public
|
|
4063
4677
|
* <p>The maximum number of stores to return in one page of results.</p>
|
|
4064
4678
|
*/
|
|
4065
4679
|
maxResults?: number;
|
|
4066
4680
|
/**
|
|
4681
|
+
* @public
|
|
4067
4682
|
* <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
|
|
4068
4683
|
*/
|
|
4069
4684
|
nextToken?: string;
|
|
4070
4685
|
/**
|
|
4686
|
+
* @public
|
|
4071
4687
|
* <p>A filter to apply to the list.</p>
|
|
4072
4688
|
*/
|
|
4073
4689
|
filter?: ReferenceStoreFilter;
|
|
@@ -4078,26 +4694,32 @@ export interface ListReferenceStoresRequest {
|
|
|
4078
4694
|
*/
|
|
4079
4695
|
export interface ReferenceStoreDetail {
|
|
4080
4696
|
/**
|
|
4697
|
+
* @public
|
|
4081
4698
|
* <p>The store's ARN.</p>
|
|
4082
4699
|
*/
|
|
4083
4700
|
arn: string | undefined;
|
|
4084
4701
|
/**
|
|
4702
|
+
* @public
|
|
4085
4703
|
* <p>The store's ID.</p>
|
|
4086
4704
|
*/
|
|
4087
4705
|
id: string | undefined;
|
|
4088
4706
|
/**
|
|
4707
|
+
* @public
|
|
4089
4708
|
* <p>The store's name.</p>
|
|
4090
4709
|
*/
|
|
4091
4710
|
name?: string;
|
|
4092
4711
|
/**
|
|
4712
|
+
* @public
|
|
4093
4713
|
* <p>The store's description.</p>
|
|
4094
4714
|
*/
|
|
4095
4715
|
description?: string;
|
|
4096
4716
|
/**
|
|
4717
|
+
* @public
|
|
4097
4718
|
* <p>The store's server-side encryption (SSE) settings.</p>
|
|
4098
4719
|
*/
|
|
4099
4720
|
sseConfig?: SseConfig;
|
|
4100
4721
|
/**
|
|
4722
|
+
* @public
|
|
4101
4723
|
* <p>When the store was created.</p>
|
|
4102
4724
|
*/
|
|
4103
4725
|
creationTime: Date | undefined;
|
|
@@ -4107,10 +4729,12 @@ export interface ReferenceStoreDetail {
|
|
|
4107
4729
|
*/
|
|
4108
4730
|
export interface ListReferenceStoresResponse {
|
|
4109
4731
|
/**
|
|
4732
|
+
* @public
|
|
4110
4733
|
* <p>A pagination token that's included if more results are available.</p>
|
|
4111
4734
|
*/
|
|
4112
4735
|
nextToken?: string;
|
|
4113
4736
|
/**
|
|
4737
|
+
* @public
|
|
4114
4738
|
* <p>A list of reference stores.</p>
|
|
4115
4739
|
*/
|
|
4116
4740
|
referenceStores: ReferenceStoreDetail[] | undefined;
|
|
@@ -4120,14 +4744,17 @@ export interface ListReferenceStoresResponse {
|
|
|
4120
4744
|
*/
|
|
4121
4745
|
export interface ListRunGroupsRequest {
|
|
4122
4746
|
/**
|
|
4747
|
+
* @public
|
|
4123
4748
|
* <p>The run groups' name.</p>
|
|
4124
4749
|
*/
|
|
4125
4750
|
name?: string;
|
|
4126
4751
|
/**
|
|
4752
|
+
* @public
|
|
4127
4753
|
* <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
|
|
4128
4754
|
*/
|
|
4129
4755
|
startingToken?: string;
|
|
4130
4756
|
/**
|
|
4757
|
+
* @public
|
|
4131
4758
|
* <p>The maximum number of run groups to return in one page of results.</p>
|
|
4132
4759
|
*/
|
|
4133
4760
|
maxResults?: number;
|
|
@@ -4138,34 +4765,42 @@ export interface ListRunGroupsRequest {
|
|
|
4138
4765
|
*/
|
|
4139
4766
|
export interface RunGroupListItem {
|
|
4140
4767
|
/**
|
|
4768
|
+
* @public
|
|
4141
4769
|
* <p>The group's ARN.</p>
|
|
4142
4770
|
*/
|
|
4143
4771
|
arn?: string;
|
|
4144
4772
|
/**
|
|
4773
|
+
* @public
|
|
4145
4774
|
* <p>The group's ID.</p>
|
|
4146
4775
|
*/
|
|
4147
4776
|
id?: string;
|
|
4148
4777
|
/**
|
|
4778
|
+
* @public
|
|
4149
4779
|
* <p>The group's name.</p>
|
|
4150
4780
|
*/
|
|
4151
4781
|
name?: string;
|
|
4152
4782
|
/**
|
|
4783
|
+
* @public
|
|
4153
4784
|
* <p>The group's maximum CPU count setting.</p>
|
|
4154
4785
|
*/
|
|
4155
4786
|
maxCpus?: number;
|
|
4156
4787
|
/**
|
|
4788
|
+
* @public
|
|
4157
4789
|
* <p>The group's maximum concurrent run setting.</p>
|
|
4158
4790
|
*/
|
|
4159
4791
|
maxRuns?: number;
|
|
4160
4792
|
/**
|
|
4793
|
+
* @public
|
|
4161
4794
|
* <p>The group's maximum duration setting in minutes.</p>
|
|
4162
4795
|
*/
|
|
4163
4796
|
maxDuration?: number;
|
|
4164
4797
|
/**
|
|
4798
|
+
* @public
|
|
4165
4799
|
* <p>When the group was created.</p>
|
|
4166
4800
|
*/
|
|
4167
4801
|
creationTime?: Date;
|
|
4168
4802
|
/**
|
|
4803
|
+
* @public
|
|
4169
4804
|
* <p>
|
|
4170
4805
|
* The maximum GPUs that can be used by a run group.
|
|
4171
4806
|
* </p>
|
|
@@ -4177,10 +4812,12 @@ export interface RunGroupListItem {
|
|
|
4177
4812
|
*/
|
|
4178
4813
|
export interface ListRunGroupsResponse {
|
|
4179
4814
|
/**
|
|
4815
|
+
* @public
|
|
4180
4816
|
* <p>A list of groups.</p>
|
|
4181
4817
|
*/
|
|
4182
4818
|
items?: RunGroupListItem[];
|
|
4183
4819
|
/**
|
|
4820
|
+
* @public
|
|
4184
4821
|
* <p>A pagination token that's included if more results are available.</p>
|
|
4185
4822
|
*/
|
|
4186
4823
|
nextToken?: string;
|
|
@@ -4190,22 +4827,27 @@ export interface ListRunGroupsResponse {
|
|
|
4190
4827
|
*/
|
|
4191
4828
|
export interface ListRunsRequest {
|
|
4192
4829
|
/**
|
|
4830
|
+
* @public
|
|
4193
4831
|
* <p>Filter the list by run name.</p>
|
|
4194
4832
|
*/
|
|
4195
4833
|
name?: string;
|
|
4196
4834
|
/**
|
|
4835
|
+
* @public
|
|
4197
4836
|
* <p>Filter the list by run group ID.</p>
|
|
4198
4837
|
*/
|
|
4199
4838
|
runGroupId?: string;
|
|
4200
4839
|
/**
|
|
4840
|
+
* @public
|
|
4201
4841
|
* <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
|
|
4202
4842
|
*/
|
|
4203
4843
|
startingToken?: string;
|
|
4204
4844
|
/**
|
|
4845
|
+
* @public
|
|
4205
4846
|
* <p>The maximum number of runs to return in one page of results.</p>
|
|
4206
4847
|
*/
|
|
4207
4848
|
maxResults?: number;
|
|
4208
4849
|
/**
|
|
4850
|
+
* @public
|
|
4209
4851
|
* <p>
|
|
4210
4852
|
* The status of a run.
|
|
4211
4853
|
* </p>
|
|
@@ -4218,42 +4860,52 @@ export interface ListRunsRequest {
|
|
|
4218
4860
|
*/
|
|
4219
4861
|
export interface RunListItem {
|
|
4220
4862
|
/**
|
|
4863
|
+
* @public
|
|
4221
4864
|
* <p>The run's ARN.</p>
|
|
4222
4865
|
*/
|
|
4223
4866
|
arn?: string;
|
|
4224
4867
|
/**
|
|
4868
|
+
* @public
|
|
4225
4869
|
* <p>The run's ID.</p>
|
|
4226
4870
|
*/
|
|
4227
4871
|
id?: string;
|
|
4228
4872
|
/**
|
|
4873
|
+
* @public
|
|
4229
4874
|
* <p>The run's status.</p>
|
|
4230
4875
|
*/
|
|
4231
4876
|
status?: RunStatus | string;
|
|
4232
4877
|
/**
|
|
4878
|
+
* @public
|
|
4233
4879
|
* <p>The run's workflow ID.</p>
|
|
4234
4880
|
*/
|
|
4235
4881
|
workflowId?: string;
|
|
4236
4882
|
/**
|
|
4883
|
+
* @public
|
|
4237
4884
|
* <p>The run's name.</p>
|
|
4238
4885
|
*/
|
|
4239
4886
|
name?: string;
|
|
4240
4887
|
/**
|
|
4888
|
+
* @public
|
|
4241
4889
|
* <p>The run's priority.</p>
|
|
4242
4890
|
*/
|
|
4243
4891
|
priority?: number;
|
|
4244
4892
|
/**
|
|
4893
|
+
* @public
|
|
4245
4894
|
* <p>The run's storage capacity.</p>
|
|
4246
4895
|
*/
|
|
4247
4896
|
storageCapacity?: number;
|
|
4248
4897
|
/**
|
|
4898
|
+
* @public
|
|
4249
4899
|
* <p>When the run was created.</p>
|
|
4250
4900
|
*/
|
|
4251
4901
|
creationTime?: Date;
|
|
4252
4902
|
/**
|
|
4903
|
+
* @public
|
|
4253
4904
|
* <p>When the run started.</p>
|
|
4254
4905
|
*/
|
|
4255
4906
|
startTime?: Date;
|
|
4256
4907
|
/**
|
|
4908
|
+
* @public
|
|
4257
4909
|
* <p>When the run stopped.</p>
|
|
4258
4910
|
*/
|
|
4259
4911
|
stopTime?: Date;
|
|
@@ -4263,10 +4915,12 @@ export interface RunListItem {
|
|
|
4263
4915
|
*/
|
|
4264
4916
|
export interface ListRunsResponse {
|
|
4265
4917
|
/**
|
|
4918
|
+
* @public
|
|
4266
4919
|
* <p>A list of runs.</p>
|
|
4267
4920
|
*/
|
|
4268
4921
|
items?: RunListItem[];
|
|
4269
4922
|
/**
|
|
4923
|
+
* @public
|
|
4270
4924
|
* <p>A pagination token that's included if more results are available.</p>
|
|
4271
4925
|
*/
|
|
4272
4926
|
nextToken?: string;
|
|
@@ -4276,18 +4930,22 @@ export interface ListRunsResponse {
|
|
|
4276
4930
|
*/
|
|
4277
4931
|
export interface ListRunTasksRequest {
|
|
4278
4932
|
/**
|
|
4933
|
+
* @public
|
|
4279
4934
|
* <p>The run's ID.</p>
|
|
4280
4935
|
*/
|
|
4281
4936
|
id: string | undefined;
|
|
4282
4937
|
/**
|
|
4938
|
+
* @public
|
|
4283
4939
|
* <p>Filter the list by status.</p>
|
|
4284
4940
|
*/
|
|
4285
4941
|
status?: TaskStatus | string;
|
|
4286
4942
|
/**
|
|
4943
|
+
* @public
|
|
4287
4944
|
* <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
|
|
4288
4945
|
*/
|
|
4289
4946
|
startingToken?: string;
|
|
4290
4947
|
/**
|
|
4948
|
+
* @public
|
|
4291
4949
|
* <p>The maximum number of run tasks to return in one page of results.</p>
|
|
4292
4950
|
*/
|
|
4293
4951
|
maxResults?: number;
|
|
@@ -4298,38 +4956,47 @@ export interface ListRunTasksRequest {
|
|
|
4298
4956
|
*/
|
|
4299
4957
|
export interface TaskListItem {
|
|
4300
4958
|
/**
|
|
4959
|
+
* @public
|
|
4301
4960
|
* <p>The task's ID.</p>
|
|
4302
4961
|
*/
|
|
4303
4962
|
taskId?: string;
|
|
4304
4963
|
/**
|
|
4964
|
+
* @public
|
|
4305
4965
|
* <p>The task's status.</p>
|
|
4306
4966
|
*/
|
|
4307
4967
|
status?: TaskStatus | string;
|
|
4308
4968
|
/**
|
|
4969
|
+
* @public
|
|
4309
4970
|
* <p>The task's name.</p>
|
|
4310
4971
|
*/
|
|
4311
4972
|
name?: string;
|
|
4312
4973
|
/**
|
|
4974
|
+
* @public
|
|
4313
4975
|
* <p>The task's CPU count.</p>
|
|
4314
4976
|
*/
|
|
4315
4977
|
cpus?: number;
|
|
4316
4978
|
/**
|
|
4979
|
+
* @public
|
|
4317
4980
|
* <p>The task's memory use in gigabyes.</p>
|
|
4318
4981
|
*/
|
|
4319
4982
|
memory?: number;
|
|
4320
4983
|
/**
|
|
4984
|
+
* @public
|
|
4321
4985
|
* <p>When the task was created.</p>
|
|
4322
4986
|
*/
|
|
4323
4987
|
creationTime?: Date;
|
|
4324
4988
|
/**
|
|
4989
|
+
* @public
|
|
4325
4990
|
* <p>When the task started.</p>
|
|
4326
4991
|
*/
|
|
4327
4992
|
startTime?: Date;
|
|
4328
4993
|
/**
|
|
4994
|
+
* @public
|
|
4329
4995
|
* <p>When the task stopped.</p>
|
|
4330
4996
|
*/
|
|
4331
4997
|
stopTime?: Date;
|
|
4332
4998
|
/**
|
|
4999
|
+
* @public
|
|
4333
5000
|
* <p>
|
|
4334
5001
|
* The number of Graphics Processing Units (GPU) specified for the task.
|
|
4335
5002
|
* </p>
|
|
@@ -4341,10 +5008,12 @@ export interface TaskListItem {
|
|
|
4341
5008
|
*/
|
|
4342
5009
|
export interface ListRunTasksResponse {
|
|
4343
5010
|
/**
|
|
5011
|
+
* @public
|
|
4344
5012
|
* <p>A list of tasks.</p>
|
|
4345
5013
|
*/
|
|
4346
5014
|
items?: TaskListItem[];
|
|
4347
5015
|
/**
|
|
5016
|
+
* @public
|
|
4348
5017
|
* <p>A pagination token that's included if more results are available.</p>
|
|
4349
5018
|
*/
|
|
4350
5019
|
nextToken?: string;
|
|
@@ -4355,14 +5024,17 @@ export interface ListRunTasksResponse {
|
|
|
4355
5024
|
*/
|
|
4356
5025
|
export interface SequenceStoreFilter {
|
|
4357
5026
|
/**
|
|
5027
|
+
* @public
|
|
4358
5028
|
* <p>A name to filter on.</p>
|
|
4359
5029
|
*/
|
|
4360
5030
|
name?: string;
|
|
4361
5031
|
/**
|
|
5032
|
+
* @public
|
|
4362
5033
|
* <p>The filter's start date.</p>
|
|
4363
5034
|
*/
|
|
4364
5035
|
createdAfter?: Date;
|
|
4365
5036
|
/**
|
|
5037
|
+
* @public
|
|
4366
5038
|
* <p>The filter's end date.</p>
|
|
4367
5039
|
*/
|
|
4368
5040
|
createdBefore?: Date;
|
|
@@ -4372,14 +5044,17 @@ export interface SequenceStoreFilter {
|
|
|
4372
5044
|
*/
|
|
4373
5045
|
export interface ListSequenceStoresRequest {
|
|
4374
5046
|
/**
|
|
5047
|
+
* @public
|
|
4375
5048
|
* <p>The maximum number of stores to return in one page of results.</p>
|
|
4376
5049
|
*/
|
|
4377
5050
|
maxResults?: number;
|
|
4378
5051
|
/**
|
|
5052
|
+
* @public
|
|
4379
5053
|
* <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
|
|
4380
5054
|
*/
|
|
4381
5055
|
nextToken?: string;
|
|
4382
5056
|
/**
|
|
5057
|
+
* @public
|
|
4383
5058
|
* <p>A filter to apply to the list.</p>
|
|
4384
5059
|
*/
|
|
4385
5060
|
filter?: SequenceStoreFilter;
|
|
@@ -4390,30 +5065,37 @@ export interface ListSequenceStoresRequest {
|
|
|
4390
5065
|
*/
|
|
4391
5066
|
export interface SequenceStoreDetail {
|
|
4392
5067
|
/**
|
|
5068
|
+
* @public
|
|
4393
5069
|
* <p>The store's ARN.</p>
|
|
4394
5070
|
*/
|
|
4395
5071
|
arn: string | undefined;
|
|
4396
5072
|
/**
|
|
5073
|
+
* @public
|
|
4397
5074
|
* <p>The store's ID.</p>
|
|
4398
5075
|
*/
|
|
4399
5076
|
id: string | undefined;
|
|
4400
5077
|
/**
|
|
5078
|
+
* @public
|
|
4401
5079
|
* <p>The store's name.</p>
|
|
4402
5080
|
*/
|
|
4403
5081
|
name?: string;
|
|
4404
5082
|
/**
|
|
5083
|
+
* @public
|
|
4405
5084
|
* <p>The store's description.</p>
|
|
4406
5085
|
*/
|
|
4407
5086
|
description?: string;
|
|
4408
5087
|
/**
|
|
5088
|
+
* @public
|
|
4409
5089
|
* <p>The store's server-side encryption (SSE) settings.</p>
|
|
4410
5090
|
*/
|
|
4411
5091
|
sseConfig?: SseConfig;
|
|
4412
5092
|
/**
|
|
5093
|
+
* @public
|
|
4413
5094
|
* <p>When the store was created.</p>
|
|
4414
5095
|
*/
|
|
4415
5096
|
creationTime: Date | undefined;
|
|
4416
5097
|
/**
|
|
5098
|
+
* @public
|
|
4417
5099
|
* <p>
|
|
4418
5100
|
* An S3 location that is used to store files that have failed a direct upload.
|
|
4419
5101
|
* </p>
|
|
@@ -4425,10 +5107,12 @@ export interface SequenceStoreDetail {
|
|
|
4425
5107
|
*/
|
|
4426
5108
|
export interface ListSequenceStoresResponse {
|
|
4427
5109
|
/**
|
|
5110
|
+
* @public
|
|
4428
5111
|
* <p>A pagination token that's included if more results are available.</p>
|
|
4429
5112
|
*/
|
|
4430
5113
|
nextToken?: string;
|
|
4431
5114
|
/**
|
|
5115
|
+
* @public
|
|
4432
5116
|
* <p>A list of sequence stores.</p>
|
|
4433
5117
|
*/
|
|
4434
5118
|
sequenceStores: SequenceStoreDetail[] | undefined;
|
|
@@ -4438,6 +5122,7 @@ export interface ListSequenceStoresResponse {
|
|
|
4438
5122
|
*/
|
|
4439
5123
|
export interface ListTagsForResourceRequest {
|
|
4440
5124
|
/**
|
|
5125
|
+
* @public
|
|
4441
5126
|
* <p>The resource's ARN.</p>
|
|
4442
5127
|
*/
|
|
4443
5128
|
resourceArn: string | undefined;
|
|
@@ -4447,6 +5132,7 @@ export interface ListTagsForResourceRequest {
|
|
|
4447
5132
|
*/
|
|
4448
5133
|
export interface ListTagsForResourceResponse {
|
|
4449
5134
|
/**
|
|
5135
|
+
* @public
|
|
4450
5136
|
* <p>A list of tags.</p>
|
|
4451
5137
|
*/
|
|
4452
5138
|
tags: Record<string, string> | undefined;
|
|
@@ -4457,10 +5143,12 @@ export interface ListTagsForResourceResponse {
|
|
|
4457
5143
|
*/
|
|
4458
5144
|
export interface ListVariantImportJobsFilter {
|
|
4459
5145
|
/**
|
|
5146
|
+
* @public
|
|
4460
5147
|
* <p>A status to filter on.</p>
|
|
4461
5148
|
*/
|
|
4462
5149
|
status?: JobStatus | string;
|
|
4463
5150
|
/**
|
|
5151
|
+
* @public
|
|
4464
5152
|
* <p>A store name to filter on.</p>
|
|
4465
5153
|
*/
|
|
4466
5154
|
storeName?: string;
|
|
@@ -4470,18 +5158,22 @@ export interface ListVariantImportJobsFilter {
|
|
|
4470
5158
|
*/
|
|
4471
5159
|
export interface ListVariantImportJobsRequest {
|
|
4472
5160
|
/**
|
|
5161
|
+
* @public
|
|
4473
5162
|
* <p>The maximum number of import jobs to return in one page of results.</p>
|
|
4474
5163
|
*/
|
|
4475
5164
|
maxResults?: number;
|
|
4476
5165
|
/**
|
|
5166
|
+
* @public
|
|
4477
5167
|
* <p>A list of job IDs.</p>
|
|
4478
5168
|
*/
|
|
4479
5169
|
ids?: string[];
|
|
4480
5170
|
/**
|
|
5171
|
+
* @public
|
|
4481
5172
|
* <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
|
|
4482
5173
|
*/
|
|
4483
5174
|
nextToken?: string;
|
|
4484
5175
|
/**
|
|
5176
|
+
* @public
|
|
4485
5177
|
* <p>A filter to apply to the list.</p>
|
|
4486
5178
|
*/
|
|
4487
5179
|
filter?: ListVariantImportJobsFilter;
|
|
@@ -4492,38 +5184,47 @@ export interface ListVariantImportJobsRequest {
|
|
|
4492
5184
|
*/
|
|
4493
5185
|
export interface VariantImportJobItem {
|
|
4494
5186
|
/**
|
|
5187
|
+
* @public
|
|
4495
5188
|
* <p>The job's ID.</p>
|
|
4496
5189
|
*/
|
|
4497
5190
|
id: string | undefined;
|
|
4498
5191
|
/**
|
|
5192
|
+
* @public
|
|
4499
5193
|
* <p>The job's destination variant store.</p>
|
|
4500
5194
|
*/
|
|
4501
5195
|
destinationName: string | undefined;
|
|
4502
5196
|
/**
|
|
5197
|
+
* @public
|
|
4503
5198
|
* <p>The job's service role ARN.</p>
|
|
4504
5199
|
*/
|
|
4505
5200
|
roleArn: string | undefined;
|
|
4506
5201
|
/**
|
|
5202
|
+
* @public
|
|
4507
5203
|
* <p>The job's status.</p>
|
|
4508
5204
|
*/
|
|
4509
5205
|
status: JobStatus | string | undefined;
|
|
4510
5206
|
/**
|
|
5207
|
+
* @public
|
|
4511
5208
|
* <p>When the job was created.</p>
|
|
4512
5209
|
*/
|
|
4513
5210
|
creationTime: Date | undefined;
|
|
4514
5211
|
/**
|
|
5212
|
+
* @public
|
|
4515
5213
|
* <p>When the job was updated.</p>
|
|
4516
5214
|
*/
|
|
4517
5215
|
updateTime: Date | undefined;
|
|
4518
5216
|
/**
|
|
5217
|
+
* @public
|
|
4519
5218
|
* <p>When the job completed.</p>
|
|
4520
5219
|
*/
|
|
4521
5220
|
completionTime?: Date;
|
|
4522
5221
|
/**
|
|
5222
|
+
* @public
|
|
4523
5223
|
* <p>The job's left normalization setting.</p>
|
|
4524
5224
|
*/
|
|
4525
5225
|
runLeftNormalization?: boolean;
|
|
4526
5226
|
/**
|
|
5227
|
+
* @public
|
|
4527
5228
|
* <p>
|
|
4528
5229
|
* The annotation schema generated by the parsed annotation data.
|
|
4529
5230
|
* </p>
|
|
@@ -4535,10 +5236,12 @@ export interface VariantImportJobItem {
|
|
|
4535
5236
|
*/
|
|
4536
5237
|
export interface ListVariantImportJobsResponse {
|
|
4537
5238
|
/**
|
|
5239
|
+
* @public
|
|
4538
5240
|
* <p>A list of jobs.</p>
|
|
4539
5241
|
*/
|
|
4540
5242
|
variantImportJobs?: VariantImportJobItem[];
|
|
4541
5243
|
/**
|
|
5244
|
+
* @public
|
|
4542
5245
|
* <p>A pagination token that's included if more results are available.</p>
|
|
4543
5246
|
*/
|
|
4544
5247
|
nextToken?: string;
|
|
@@ -4549,6 +5252,7 @@ export interface ListVariantImportJobsResponse {
|
|
|
4549
5252
|
*/
|
|
4550
5253
|
export interface ListVariantStoresFilter {
|
|
4551
5254
|
/**
|
|
5255
|
+
* @public
|
|
4552
5256
|
* <p>A status to filter on.</p>
|
|
4553
5257
|
*/
|
|
4554
5258
|
status?: StoreStatus | string;
|
|
@@ -4558,18 +5262,22 @@ export interface ListVariantStoresFilter {
|
|
|
4558
5262
|
*/
|
|
4559
5263
|
export interface ListVariantStoresRequest {
|
|
4560
5264
|
/**
|
|
5265
|
+
* @public
|
|
4561
5266
|
* <p>The maximum number of stores to return in one page of results.</p>
|
|
4562
5267
|
*/
|
|
4563
5268
|
maxResults?: number;
|
|
4564
5269
|
/**
|
|
5270
|
+
* @public
|
|
4565
5271
|
* <p>A list of store IDs.</p>
|
|
4566
5272
|
*/
|
|
4567
5273
|
ids?: string[];
|
|
4568
5274
|
/**
|
|
5275
|
+
* @public
|
|
4569
5276
|
* <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
|
|
4570
5277
|
*/
|
|
4571
5278
|
nextToken?: string;
|
|
4572
5279
|
/**
|
|
5280
|
+
* @public
|
|
4573
5281
|
* <p>A filter to apply to the list.</p>
|
|
4574
5282
|
*/
|
|
4575
5283
|
filter?: ListVariantStoresFilter;
|
|
@@ -4580,46 +5288,57 @@ export interface ListVariantStoresRequest {
|
|
|
4580
5288
|
*/
|
|
4581
5289
|
export interface VariantStoreItem {
|
|
4582
5290
|
/**
|
|
5291
|
+
* @public
|
|
4583
5292
|
* <p>The store's ID.</p>
|
|
4584
5293
|
*/
|
|
4585
5294
|
id: string | undefined;
|
|
4586
5295
|
/**
|
|
5296
|
+
* @public
|
|
4587
5297
|
* <p>The store's genome reference.</p>
|
|
4588
5298
|
*/
|
|
4589
5299
|
reference: ReferenceItem | undefined;
|
|
4590
5300
|
/**
|
|
5301
|
+
* @public
|
|
4591
5302
|
* <p>The store's status.</p>
|
|
4592
5303
|
*/
|
|
4593
5304
|
status: StoreStatus | string | undefined;
|
|
4594
5305
|
/**
|
|
5306
|
+
* @public
|
|
4595
5307
|
* <p>The store's ARN.</p>
|
|
4596
5308
|
*/
|
|
4597
5309
|
storeArn: string | undefined;
|
|
4598
5310
|
/**
|
|
5311
|
+
* @public
|
|
4599
5312
|
* <p>The store's name.</p>
|
|
4600
5313
|
*/
|
|
4601
5314
|
name: string | undefined;
|
|
4602
5315
|
/**
|
|
5316
|
+
* @public
|
|
4603
5317
|
* <p>The store's description.</p>
|
|
4604
5318
|
*/
|
|
4605
5319
|
description: string | undefined;
|
|
4606
5320
|
/**
|
|
5321
|
+
* @public
|
|
4607
5322
|
* <p>The store's server-side encryption (SSE) settings.</p>
|
|
4608
5323
|
*/
|
|
4609
5324
|
sseConfig: SseConfig | undefined;
|
|
4610
5325
|
/**
|
|
5326
|
+
* @public
|
|
4611
5327
|
* <p>When the store was created.</p>
|
|
4612
5328
|
*/
|
|
4613
5329
|
creationTime: Date | undefined;
|
|
4614
5330
|
/**
|
|
5331
|
+
* @public
|
|
4615
5332
|
* <p>When the store was updated.</p>
|
|
4616
5333
|
*/
|
|
4617
5334
|
updateTime: Date | undefined;
|
|
4618
5335
|
/**
|
|
5336
|
+
* @public
|
|
4619
5337
|
* <p>The store's status message.</p>
|
|
4620
5338
|
*/
|
|
4621
5339
|
statusMessage: string | undefined;
|
|
4622
5340
|
/**
|
|
5341
|
+
* @public
|
|
4623
5342
|
* <p>The store's size in bytes.</p>
|
|
4624
5343
|
*/
|
|
4625
5344
|
storeSizeBytes: number | undefined;
|
|
@@ -4629,10 +5348,12 @@ export interface VariantStoreItem {
|
|
|
4629
5348
|
*/
|
|
4630
5349
|
export interface ListVariantStoresResponse {
|
|
4631
5350
|
/**
|
|
5351
|
+
* @public
|
|
4632
5352
|
* <p>A list of variant stores.</p>
|
|
4633
5353
|
*/
|
|
4634
5354
|
variantStores?: VariantStoreItem[];
|
|
4635
5355
|
/**
|
|
5356
|
+
* @public
|
|
4636
5357
|
* <p>A pagination token that's included if more results are available.</p>
|
|
4637
5358
|
*/
|
|
4638
5359
|
nextToken?: string;
|
|
@@ -4642,18 +5363,22 @@ export interface ListVariantStoresResponse {
|
|
|
4642
5363
|
*/
|
|
4643
5364
|
export interface ListWorkflowsRequest {
|
|
4644
5365
|
/**
|
|
5366
|
+
* @public
|
|
4645
5367
|
* <p>The workflows' type.</p>
|
|
4646
5368
|
*/
|
|
4647
5369
|
type?: WorkflowType | string;
|
|
4648
5370
|
/**
|
|
5371
|
+
* @public
|
|
4649
5372
|
* <p>The workflows' name.</p>
|
|
4650
5373
|
*/
|
|
4651
5374
|
name?: string;
|
|
4652
5375
|
/**
|
|
5376
|
+
* @public
|
|
4653
5377
|
* <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
|
|
4654
5378
|
*/
|
|
4655
5379
|
startingToken?: string;
|
|
4656
5380
|
/**
|
|
5381
|
+
* @public
|
|
4657
5382
|
* <p>The maximum number of workflows to return in one page of results.</p>
|
|
4658
5383
|
*/
|
|
4659
5384
|
maxResults?: number;
|
|
@@ -4664,34 +5389,42 @@ export interface ListWorkflowsRequest {
|
|
|
4664
5389
|
*/
|
|
4665
5390
|
export interface WorkflowListItem {
|
|
4666
5391
|
/**
|
|
5392
|
+
* @public
|
|
4667
5393
|
* <p>The workflow's ARN.</p>
|
|
4668
5394
|
*/
|
|
4669
5395
|
arn?: string;
|
|
4670
5396
|
/**
|
|
5397
|
+
* @public
|
|
4671
5398
|
* <p>The workflow's ID.</p>
|
|
4672
5399
|
*/
|
|
4673
5400
|
id?: string;
|
|
4674
5401
|
/**
|
|
5402
|
+
* @public
|
|
4675
5403
|
* <p>The workflow's name.</p>
|
|
4676
5404
|
*/
|
|
4677
5405
|
name?: string;
|
|
4678
5406
|
/**
|
|
5407
|
+
* @public
|
|
4679
5408
|
* <p>The workflow's status.</p>
|
|
4680
5409
|
*/
|
|
4681
5410
|
status?: WorkflowStatus | string;
|
|
4682
5411
|
/**
|
|
5412
|
+
* @public
|
|
4683
5413
|
* <p>The workflow's type.</p>
|
|
4684
5414
|
*/
|
|
4685
5415
|
type?: WorkflowType | string;
|
|
4686
5416
|
/**
|
|
5417
|
+
* @public
|
|
4687
5418
|
* <p>The workflow's digest.</p>
|
|
4688
5419
|
*/
|
|
4689
5420
|
digest?: string;
|
|
4690
5421
|
/**
|
|
5422
|
+
* @public
|
|
4691
5423
|
* <p>When the workflow was created.</p>
|
|
4692
5424
|
*/
|
|
4693
5425
|
creationTime?: Date;
|
|
4694
5426
|
/**
|
|
5427
|
+
* @public
|
|
4695
5428
|
* <p>
|
|
4696
5429
|
* Any metadata available for workflow. The information listed may vary depending on the workflow, and there may also be no metadata to return.
|
|
4697
5430
|
* </p>
|
|
@@ -4703,10 +5436,12 @@ export interface WorkflowListItem {
|
|
|
4703
5436
|
*/
|
|
4704
5437
|
export interface ListWorkflowsResponse {
|
|
4705
5438
|
/**
|
|
5439
|
+
* @public
|
|
4706
5440
|
* <p>The workflows' items.</p>
|
|
4707
5441
|
*/
|
|
4708
5442
|
items?: WorkflowListItem[];
|
|
4709
5443
|
/**
|
|
5444
|
+
* @public
|
|
4710
5445
|
* <p>A pagination token that's included if more results are available.</p>
|
|
4711
5446
|
*/
|
|
4712
5447
|
nextToken?: string;
|
|
@@ -4717,18 +5452,22 @@ export interface ListWorkflowsResponse {
|
|
|
4717
5452
|
*/
|
|
4718
5453
|
export interface StartReferenceImportJobSourceItem {
|
|
4719
5454
|
/**
|
|
5455
|
+
* @public
|
|
4720
5456
|
* <p>The source file's location in Amazon S3.</p>
|
|
4721
5457
|
*/
|
|
4722
5458
|
sourceFile: string | undefined;
|
|
4723
5459
|
/**
|
|
5460
|
+
* @public
|
|
4724
5461
|
* <p>The source's name.</p>
|
|
4725
5462
|
*/
|
|
4726
5463
|
name: string | undefined;
|
|
4727
5464
|
/**
|
|
5465
|
+
* @public
|
|
4728
5466
|
* <p>The source's description.</p>
|
|
4729
5467
|
*/
|
|
4730
5468
|
description?: string;
|
|
4731
5469
|
/**
|
|
5470
|
+
* @public
|
|
4732
5471
|
* <p>The source's tags.</p>
|
|
4733
5472
|
*/
|
|
4734
5473
|
tags?: Record<string, string>;
|
|
@@ -4738,18 +5477,22 @@ export interface StartReferenceImportJobSourceItem {
|
|
|
4738
5477
|
*/
|
|
4739
5478
|
export interface StartReferenceImportJobRequest {
|
|
4740
5479
|
/**
|
|
5480
|
+
* @public
|
|
4741
5481
|
* <p>The job's reference store ID.</p>
|
|
4742
5482
|
*/
|
|
4743
5483
|
referenceStoreId: string | undefined;
|
|
4744
5484
|
/**
|
|
5485
|
+
* @public
|
|
4745
5486
|
* <p>A service role for the job.</p>
|
|
4746
5487
|
*/
|
|
4747
5488
|
roleArn: string | undefined;
|
|
4748
5489
|
/**
|
|
5490
|
+
* @public
|
|
4749
5491
|
* <p>To ensure that jobs don't run multiple times, specify a unique token for each job.</p>
|
|
4750
5492
|
*/
|
|
4751
5493
|
clientToken?: string;
|
|
4752
5494
|
/**
|
|
5495
|
+
* @public
|
|
4753
5496
|
* <p>The job's source files.</p>
|
|
4754
5497
|
*/
|
|
4755
5498
|
sources: StartReferenceImportJobSourceItem[] | undefined;
|
|
@@ -4759,22 +5502,27 @@ export interface StartReferenceImportJobRequest {
|
|
|
4759
5502
|
*/
|
|
4760
5503
|
export interface StartReferenceImportJobResponse {
|
|
4761
5504
|
/**
|
|
5505
|
+
* @public
|
|
4762
5506
|
* <p>The job's ID.</p>
|
|
4763
5507
|
*/
|
|
4764
5508
|
id: string | undefined;
|
|
4765
5509
|
/**
|
|
5510
|
+
* @public
|
|
4766
5511
|
* <p>The job's reference store ID.</p>
|
|
4767
5512
|
*/
|
|
4768
5513
|
referenceStoreId: string | undefined;
|
|
4769
5514
|
/**
|
|
5515
|
+
* @public
|
|
4770
5516
|
* <p>The job's service role ARN.</p>
|
|
4771
5517
|
*/
|
|
4772
5518
|
roleArn: string | undefined;
|
|
4773
5519
|
/**
|
|
5520
|
+
* @public
|
|
4774
5521
|
* <p>The job's status.</p>
|
|
4775
5522
|
*/
|
|
4776
5523
|
status: ReferenceImportJobStatus | string | undefined;
|
|
4777
5524
|
/**
|
|
5525
|
+
* @public
|
|
4778
5526
|
* <p>When the job was created.</p>
|
|
4779
5527
|
*/
|
|
4780
5528
|
creationTime: Date | undefined;
|
|
@@ -4784,26 +5532,32 @@ export interface StartReferenceImportJobResponse {
|
|
|
4784
5532
|
*/
|
|
4785
5533
|
export interface UpdateRunGroupRequest {
|
|
4786
5534
|
/**
|
|
5535
|
+
* @public
|
|
4787
5536
|
* <p>The group's ID.</p>
|
|
4788
5537
|
*/
|
|
4789
5538
|
id: string | undefined;
|
|
4790
5539
|
/**
|
|
5540
|
+
* @public
|
|
4791
5541
|
* <p>A name for the group.</p>
|
|
4792
5542
|
*/
|
|
4793
5543
|
name?: string;
|
|
4794
5544
|
/**
|
|
5545
|
+
* @public
|
|
4795
5546
|
* <p>The maximum number of CPUs to use.</p>
|
|
4796
5547
|
*/
|
|
4797
5548
|
maxCpus?: number;
|
|
4798
5549
|
/**
|
|
5550
|
+
* @public
|
|
4799
5551
|
* <p>The maximum number of concurrent runs for the group.</p>
|
|
4800
5552
|
*/
|
|
4801
5553
|
maxRuns?: number;
|
|
4802
5554
|
/**
|
|
5555
|
+
* @public
|
|
4803
5556
|
* <p>A maximum run time for the group in minutes.</p>
|
|
4804
5557
|
*/
|
|
4805
5558
|
maxDuration?: number;
|
|
4806
5559
|
/**
|
|
5560
|
+
* @public
|
|
4807
5561
|
* <p>
|
|
4808
5562
|
* The maximum GPUs that can be used by a run group.
|
|
4809
5563
|
* </p>
|
|
@@ -4815,54 +5569,67 @@ export interface UpdateRunGroupRequest {
|
|
|
4815
5569
|
*/
|
|
4816
5570
|
export interface StartRunRequest {
|
|
4817
5571
|
/**
|
|
5572
|
+
* @public
|
|
4818
5573
|
* <p>The run's workflow ID.</p>
|
|
4819
5574
|
*/
|
|
4820
5575
|
workflowId?: string;
|
|
4821
5576
|
/**
|
|
5577
|
+
* @public
|
|
4822
5578
|
* <p>The run's workflows type.</p>
|
|
4823
5579
|
*/
|
|
4824
5580
|
workflowType?: WorkflowType | string;
|
|
4825
5581
|
/**
|
|
5582
|
+
* @public
|
|
4826
5583
|
* <p>The run's ID.</p>
|
|
4827
5584
|
*/
|
|
4828
5585
|
runId?: string;
|
|
4829
5586
|
/**
|
|
5587
|
+
* @public
|
|
4830
5588
|
* <p>A service role for the run.</p>
|
|
4831
5589
|
*/
|
|
4832
5590
|
roleArn: string | undefined;
|
|
4833
5591
|
/**
|
|
5592
|
+
* @public
|
|
4834
5593
|
* <p>A name for the run.</p>
|
|
4835
5594
|
*/
|
|
4836
5595
|
name?: string;
|
|
4837
5596
|
/**
|
|
5597
|
+
* @public
|
|
4838
5598
|
* <p>The run's group ID.</p>
|
|
4839
5599
|
*/
|
|
4840
5600
|
runGroupId?: string;
|
|
4841
5601
|
/**
|
|
5602
|
+
* @public
|
|
4842
5603
|
* <p>A priority for the run.</p>
|
|
4843
5604
|
*/
|
|
4844
5605
|
priority?: number;
|
|
4845
5606
|
/**
|
|
5607
|
+
* @public
|
|
4846
5608
|
* <p>Parameters for the run.</p>
|
|
4847
5609
|
*/
|
|
4848
5610
|
parameters?: __DocumentType;
|
|
4849
5611
|
/**
|
|
5612
|
+
* @public
|
|
4850
5613
|
* <p>A storage capacity for the run in gigabytes.</p>
|
|
4851
5614
|
*/
|
|
4852
5615
|
storageCapacity?: number;
|
|
4853
5616
|
/**
|
|
5617
|
+
* @public
|
|
4854
5618
|
* <p>An output URI for the run.</p>
|
|
4855
5619
|
*/
|
|
4856
5620
|
outputUri?: string;
|
|
4857
5621
|
/**
|
|
5622
|
+
* @public
|
|
4858
5623
|
* <p>A log level for the run.</p>
|
|
4859
5624
|
*/
|
|
4860
5625
|
logLevel?: RunLogLevel | string;
|
|
4861
5626
|
/**
|
|
5627
|
+
* @public
|
|
4862
5628
|
* <p>Tags for the run.</p>
|
|
4863
5629
|
*/
|
|
4864
5630
|
tags?: Record<string, string>;
|
|
4865
5631
|
/**
|
|
5632
|
+
* @public
|
|
4866
5633
|
* <p>To ensure that requests don't run multiple times, specify a unique ID for each request.</p>
|
|
4867
5634
|
*/
|
|
4868
5635
|
requestId?: string;
|
|
@@ -4872,18 +5639,22 @@ export interface StartRunRequest {
|
|
|
4872
5639
|
*/
|
|
4873
5640
|
export interface StartRunResponse {
|
|
4874
5641
|
/**
|
|
5642
|
+
* @public
|
|
4875
5643
|
* <p>The run's ARN.</p>
|
|
4876
5644
|
*/
|
|
4877
5645
|
arn?: string;
|
|
4878
5646
|
/**
|
|
5647
|
+
* @public
|
|
4879
5648
|
* <p>The run's ID.</p>
|
|
4880
5649
|
*/
|
|
4881
5650
|
id?: string;
|
|
4882
5651
|
/**
|
|
5652
|
+
* @public
|
|
4883
5653
|
* <p>The run's status.</p>
|
|
4884
5654
|
*/
|
|
4885
5655
|
status?: RunStatus | string;
|
|
4886
5656
|
/**
|
|
5657
|
+
* @public
|
|
4887
5658
|
* <p>The run's tags.</p>
|
|
4888
5659
|
*/
|
|
4889
5660
|
tags?: Record<string, string>;
|
|
@@ -4894,6 +5665,7 @@ export interface StartRunResponse {
|
|
|
4894
5665
|
*/
|
|
4895
5666
|
export interface StartReadSetActivationJobSourceItem {
|
|
4896
5667
|
/**
|
|
5668
|
+
* @public
|
|
4897
5669
|
* <p>The source's read set ID.</p>
|
|
4898
5670
|
*/
|
|
4899
5671
|
readSetId: string | undefined;
|
|
@@ -4903,14 +5675,17 @@ export interface StartReadSetActivationJobSourceItem {
|
|
|
4903
5675
|
*/
|
|
4904
5676
|
export interface StartReadSetActivationJobRequest {
|
|
4905
5677
|
/**
|
|
5678
|
+
* @public
|
|
4906
5679
|
* <p>The read set's sequence store ID.</p>
|
|
4907
5680
|
*/
|
|
4908
5681
|
sequenceStoreId: string | undefined;
|
|
4909
5682
|
/**
|
|
5683
|
+
* @public
|
|
4910
5684
|
* <p>To ensure that jobs don't run multiple times, specify a unique token for each job.</p>
|
|
4911
5685
|
*/
|
|
4912
5686
|
clientToken?: string;
|
|
4913
5687
|
/**
|
|
5688
|
+
* @public
|
|
4914
5689
|
* <p>The job's source files.</p>
|
|
4915
5690
|
*/
|
|
4916
5691
|
sources: StartReadSetActivationJobSourceItem[] | undefined;
|
|
@@ -4920,18 +5695,22 @@ export interface StartReadSetActivationJobRequest {
|
|
|
4920
5695
|
*/
|
|
4921
5696
|
export interface StartReadSetActivationJobResponse {
|
|
4922
5697
|
/**
|
|
5698
|
+
* @public
|
|
4923
5699
|
* <p>The job's ID.</p>
|
|
4924
5700
|
*/
|
|
4925
5701
|
id: string | undefined;
|
|
4926
5702
|
/**
|
|
5703
|
+
* @public
|
|
4927
5704
|
* <p>The read set's sequence store ID.</p>
|
|
4928
5705
|
*/
|
|
4929
5706
|
sequenceStoreId: string | undefined;
|
|
4930
5707
|
/**
|
|
5708
|
+
* @public
|
|
4931
5709
|
* <p>The job's status.</p>
|
|
4932
5710
|
*/
|
|
4933
5711
|
status: ReadSetActivationJobStatus | string | undefined;
|
|
4934
5712
|
/**
|
|
5713
|
+
* @public
|
|
4935
5714
|
* <p>When the job was created.</p>
|
|
4936
5715
|
*/
|
|
4937
5716
|
creationTime: Date | undefined;
|
|
@@ -4941,22 +5720,27 @@ export interface StartReadSetActivationJobResponse {
|
|
|
4941
5720
|
*/
|
|
4942
5721
|
export interface StartReadSetExportJobRequest {
|
|
4943
5722
|
/**
|
|
5723
|
+
* @public
|
|
4944
5724
|
* <p>The read set's sequence store ID.</p>
|
|
4945
5725
|
*/
|
|
4946
5726
|
sequenceStoreId: string | undefined;
|
|
4947
5727
|
/**
|
|
5728
|
+
* @public
|
|
4948
5729
|
* <p>A location for exported files in Amazon S3.</p>
|
|
4949
5730
|
*/
|
|
4950
5731
|
destination: string | undefined;
|
|
4951
5732
|
/**
|
|
5733
|
+
* @public
|
|
4952
5734
|
* <p>A service role for the job.</p>
|
|
4953
5735
|
*/
|
|
4954
5736
|
roleArn: string | undefined;
|
|
4955
5737
|
/**
|
|
5738
|
+
* @public
|
|
4956
5739
|
* <p>To ensure that jobs don't run multiple times, specify a unique token for each job.</p>
|
|
4957
5740
|
*/
|
|
4958
5741
|
clientToken?: string;
|
|
4959
5742
|
/**
|
|
5743
|
+
* @public
|
|
4960
5744
|
* <p>The job's source files.</p>
|
|
4961
5745
|
*/
|
|
4962
5746
|
sources: ExportReadSet[] | undefined;
|
|
@@ -4966,22 +5750,27 @@ export interface StartReadSetExportJobRequest {
|
|
|
4966
5750
|
*/
|
|
4967
5751
|
export interface StartReadSetExportJobResponse {
|
|
4968
5752
|
/**
|
|
5753
|
+
* @public
|
|
4969
5754
|
* <p>The job's ID.</p>
|
|
4970
5755
|
*/
|
|
4971
5756
|
id: string | undefined;
|
|
4972
5757
|
/**
|
|
5758
|
+
* @public
|
|
4973
5759
|
* <p>The read set's sequence store ID.</p>
|
|
4974
5760
|
*/
|
|
4975
5761
|
sequenceStoreId: string | undefined;
|
|
4976
5762
|
/**
|
|
5763
|
+
* @public
|
|
4977
5764
|
* <p>The job's output location.</p>
|
|
4978
5765
|
*/
|
|
4979
5766
|
destination: string | undefined;
|
|
4980
5767
|
/**
|
|
5768
|
+
* @public
|
|
4981
5769
|
* <p>The job's status.</p>
|
|
4982
5770
|
*/
|
|
4983
5771
|
status: ReadSetExportJobStatus | string | undefined;
|
|
4984
5772
|
/**
|
|
5773
|
+
* @public
|
|
4985
5774
|
* <p>When the job was created.</p>
|
|
4986
5775
|
*/
|
|
4987
5776
|
creationTime: Date | undefined;
|
|
@@ -4992,38 +5781,47 @@ export interface StartReadSetExportJobResponse {
|
|
|
4992
5781
|
*/
|
|
4993
5782
|
export interface StartReadSetImportJobSourceItem {
|
|
4994
5783
|
/**
|
|
5784
|
+
* @public
|
|
4995
5785
|
* <p>The source files' location in Amazon S3.</p>
|
|
4996
5786
|
*/
|
|
4997
5787
|
sourceFiles: SourceFiles | undefined;
|
|
4998
5788
|
/**
|
|
5789
|
+
* @public
|
|
4999
5790
|
* <p>The source's file type.</p>
|
|
5000
5791
|
*/
|
|
5001
5792
|
sourceFileType: FileType | string | undefined;
|
|
5002
5793
|
/**
|
|
5794
|
+
* @public
|
|
5003
5795
|
* <p>The source's subject ID.</p>
|
|
5004
5796
|
*/
|
|
5005
5797
|
subjectId: string | undefined;
|
|
5006
5798
|
/**
|
|
5799
|
+
* @public
|
|
5007
5800
|
* <p>The source's sample ID.</p>
|
|
5008
5801
|
*/
|
|
5009
5802
|
sampleId: string | undefined;
|
|
5010
5803
|
/**
|
|
5804
|
+
* @public
|
|
5011
5805
|
* <p>Where the source originated.</p>
|
|
5012
5806
|
*/
|
|
5013
5807
|
generatedFrom?: string;
|
|
5014
5808
|
/**
|
|
5809
|
+
* @public
|
|
5015
5810
|
* <p>The source's reference ARN.</p>
|
|
5016
5811
|
*/
|
|
5017
5812
|
referenceArn: string | undefined;
|
|
5018
5813
|
/**
|
|
5814
|
+
* @public
|
|
5019
5815
|
* <p>The source's name.</p>
|
|
5020
5816
|
*/
|
|
5021
5817
|
name?: string;
|
|
5022
5818
|
/**
|
|
5819
|
+
* @public
|
|
5023
5820
|
* <p>The source's description.</p>
|
|
5024
5821
|
*/
|
|
5025
5822
|
description?: string;
|
|
5026
5823
|
/**
|
|
5824
|
+
* @public
|
|
5027
5825
|
* <p>The source's tags.</p>
|
|
5028
5826
|
*/
|
|
5029
5827
|
tags?: Record<string, string>;
|
|
@@ -5033,18 +5831,22 @@ export interface StartReadSetImportJobSourceItem {
|
|
|
5033
5831
|
*/
|
|
5034
5832
|
export interface StartReadSetImportJobRequest {
|
|
5035
5833
|
/**
|
|
5834
|
+
* @public
|
|
5036
5835
|
* <p>The read set's sequence store ID.</p>
|
|
5037
5836
|
*/
|
|
5038
5837
|
sequenceStoreId: string | undefined;
|
|
5039
5838
|
/**
|
|
5839
|
+
* @public
|
|
5040
5840
|
* <p>A service role for the job.</p>
|
|
5041
5841
|
*/
|
|
5042
5842
|
roleArn: string | undefined;
|
|
5043
5843
|
/**
|
|
5844
|
+
* @public
|
|
5044
5845
|
* <p>To ensure that jobs don't run multiple times, specify a unique token for each job.</p>
|
|
5045
5846
|
*/
|
|
5046
5847
|
clientToken?: string;
|
|
5047
5848
|
/**
|
|
5849
|
+
* @public
|
|
5048
5850
|
* <p>The job's source files.</p>
|
|
5049
5851
|
*/
|
|
5050
5852
|
sources: StartReadSetImportJobSourceItem[] | undefined;
|
|
@@ -5054,22 +5856,27 @@ export interface StartReadSetImportJobRequest {
|
|
|
5054
5856
|
*/
|
|
5055
5857
|
export interface StartReadSetImportJobResponse {
|
|
5056
5858
|
/**
|
|
5859
|
+
* @public
|
|
5057
5860
|
* <p>The job's ID.</p>
|
|
5058
5861
|
*/
|
|
5059
5862
|
id: string | undefined;
|
|
5060
5863
|
/**
|
|
5864
|
+
* @public
|
|
5061
5865
|
* <p>The read set's sequence store ID.</p>
|
|
5062
5866
|
*/
|
|
5063
5867
|
sequenceStoreId: string | undefined;
|
|
5064
5868
|
/**
|
|
5869
|
+
* @public
|
|
5065
5870
|
* <p>The job's service role ARN.</p>
|
|
5066
5871
|
*/
|
|
5067
5872
|
roleArn: string | undefined;
|
|
5068
5873
|
/**
|
|
5874
|
+
* @public
|
|
5069
5875
|
* <p>The job's status.</p>
|
|
5070
5876
|
*/
|
|
5071
5877
|
status: ReadSetImportJobStatus | string | undefined;
|
|
5072
5878
|
/**
|
|
5879
|
+
* @public
|
|
5073
5880
|
* <p>When the job was created.</p>
|
|
5074
5881
|
*/
|
|
5075
5882
|
creationTime: Date | undefined;
|
|
@@ -5079,30 +5886,35 @@ export interface StartReadSetImportJobResponse {
|
|
|
5079
5886
|
*/
|
|
5080
5887
|
export interface UploadReadSetPartRequest {
|
|
5081
5888
|
/**
|
|
5889
|
+
* @public
|
|
5082
5890
|
* <p>
|
|
5083
5891
|
* The Sequence Store ID used for the multipart upload.
|
|
5084
5892
|
* </p>
|
|
5085
5893
|
*/
|
|
5086
5894
|
sequenceStoreId: string | undefined;
|
|
5087
5895
|
/**
|
|
5896
|
+
* @public
|
|
5088
5897
|
* <p>
|
|
5089
5898
|
* The ID for the initiated multipart upload.
|
|
5090
5899
|
* </p>
|
|
5091
5900
|
*/
|
|
5092
5901
|
uploadId: string | undefined;
|
|
5093
5902
|
/**
|
|
5903
|
+
* @public
|
|
5094
5904
|
* <p>
|
|
5095
5905
|
* The source file for an upload part.
|
|
5096
5906
|
* </p>
|
|
5097
5907
|
*/
|
|
5098
5908
|
partSource: ReadSetPartSource | string | undefined;
|
|
5099
5909
|
/**
|
|
5910
|
+
* @public
|
|
5100
5911
|
* <p>
|
|
5101
5912
|
* The number of the part being uploaded.
|
|
5102
5913
|
* </p>
|
|
5103
5914
|
*/
|
|
5104
5915
|
partNumber: number | undefined;
|
|
5105
5916
|
/**
|
|
5917
|
+
* @public
|
|
5106
5918
|
* <p>
|
|
5107
5919
|
* The read set data to upload for a part.
|
|
5108
5920
|
* </p>
|
|
@@ -5114,6 +5926,7 @@ export interface UploadReadSetPartRequest {
|
|
|
5114
5926
|
*/
|
|
5115
5927
|
export interface UploadReadSetPartResponse {
|
|
5116
5928
|
/**
|
|
5929
|
+
* @public
|
|
5117
5930
|
* <p>
|
|
5118
5931
|
* An identifier used to confirm that parts are being added to the intended upload.
|
|
5119
5932
|
* </p>
|
|
@@ -5125,10 +5938,12 @@ export interface UploadReadSetPartResponse {
|
|
|
5125
5938
|
*/
|
|
5126
5939
|
export interface TagResourceRequest {
|
|
5127
5940
|
/**
|
|
5941
|
+
* @public
|
|
5128
5942
|
* <p>The resource's ARN.</p>
|
|
5129
5943
|
*/
|
|
5130
5944
|
resourceArn: string | undefined;
|
|
5131
5945
|
/**
|
|
5946
|
+
* @public
|
|
5132
5947
|
* <p>Tags for the resource.</p>
|
|
5133
5948
|
*/
|
|
5134
5949
|
tags: Record<string, string> | undefined;
|
|
@@ -5143,10 +5958,12 @@ export interface TagResourceResponse {
|
|
|
5143
5958
|
*/
|
|
5144
5959
|
export interface UntagResourceRequest {
|
|
5145
5960
|
/**
|
|
5961
|
+
* @public
|
|
5146
5962
|
* <p>The resource's ARN.</p>
|
|
5147
5963
|
*/
|
|
5148
5964
|
resourceArn: string | undefined;
|
|
5149
5965
|
/**
|
|
5966
|
+
* @public
|
|
5150
5967
|
* <p>Keys of tags to remove.</p>
|
|
5151
5968
|
*/
|
|
5152
5969
|
tagKeys: string[] | undefined;
|
|
@@ -5162,6 +5979,7 @@ export interface UntagResourceResponse {
|
|
|
5162
5979
|
*/
|
|
5163
5980
|
export interface VariantImportItemSource {
|
|
5164
5981
|
/**
|
|
5982
|
+
* @public
|
|
5165
5983
|
* <p>The source file's location in Amazon S3.</p>
|
|
5166
5984
|
*/
|
|
5167
5985
|
source: string | undefined;
|
|
@@ -5171,22 +5989,27 @@ export interface VariantImportItemSource {
|
|
|
5171
5989
|
*/
|
|
5172
5990
|
export interface StartVariantImportRequest {
|
|
5173
5991
|
/**
|
|
5992
|
+
* @public
|
|
5174
5993
|
* <p>The destination variant store for the job.</p>
|
|
5175
5994
|
*/
|
|
5176
5995
|
destinationName: string | undefined;
|
|
5177
5996
|
/**
|
|
5997
|
+
* @public
|
|
5178
5998
|
* <p>A service role for the job.</p>
|
|
5179
5999
|
*/
|
|
5180
6000
|
roleArn: string | undefined;
|
|
5181
6001
|
/**
|
|
6002
|
+
* @public
|
|
5182
6003
|
* <p>Items to import.</p>
|
|
5183
6004
|
*/
|
|
5184
6005
|
items: VariantImportItemSource[] | undefined;
|
|
5185
6006
|
/**
|
|
6007
|
+
* @public
|
|
5186
6008
|
* <p>The job's left normalization setting.</p>
|
|
5187
6009
|
*/
|
|
5188
6010
|
runLeftNormalization?: boolean;
|
|
5189
6011
|
/**
|
|
6012
|
+
* @public
|
|
5190
6013
|
* <p>
|
|
5191
6014
|
* The annotation schema generated by the parsed annotation data.
|
|
5192
6015
|
* </p>
|
|
@@ -5198,6 +6021,7 @@ export interface StartVariantImportRequest {
|
|
|
5198
6021
|
*/
|
|
5199
6022
|
export interface StartVariantImportResponse {
|
|
5200
6023
|
/**
|
|
6024
|
+
* @public
|
|
5201
6025
|
* <p>The job's ID.</p>
|
|
5202
6026
|
*/
|
|
5203
6027
|
jobId: string | undefined;
|
|
@@ -5207,10 +6031,12 @@ export interface StartVariantImportResponse {
|
|
|
5207
6031
|
*/
|
|
5208
6032
|
export interface UpdateVariantStoreRequest {
|
|
5209
6033
|
/**
|
|
6034
|
+
* @public
|
|
5210
6035
|
* <p>A name for the store.</p>
|
|
5211
6036
|
*/
|
|
5212
6037
|
name: string | undefined;
|
|
5213
6038
|
/**
|
|
6039
|
+
* @public
|
|
5214
6040
|
* <p>A description for the store.</p>
|
|
5215
6041
|
*/
|
|
5216
6042
|
description?: string;
|
|
@@ -5220,30 +6046,37 @@ export interface UpdateVariantStoreRequest {
|
|
|
5220
6046
|
*/
|
|
5221
6047
|
export interface UpdateVariantStoreResponse {
|
|
5222
6048
|
/**
|
|
6049
|
+
* @public
|
|
5223
6050
|
* <p>The store's ID.</p>
|
|
5224
6051
|
*/
|
|
5225
6052
|
id: string | undefined;
|
|
5226
6053
|
/**
|
|
6054
|
+
* @public
|
|
5227
6055
|
* <p>The store's genome reference.</p>
|
|
5228
6056
|
*/
|
|
5229
6057
|
reference: ReferenceItem | undefined;
|
|
5230
6058
|
/**
|
|
6059
|
+
* @public
|
|
5231
6060
|
* <p>The store's status.</p>
|
|
5232
6061
|
*/
|
|
5233
6062
|
status: StoreStatus | string | undefined;
|
|
5234
6063
|
/**
|
|
6064
|
+
* @public
|
|
5235
6065
|
* <p>The store's name.</p>
|
|
5236
6066
|
*/
|
|
5237
6067
|
name: string | undefined;
|
|
5238
6068
|
/**
|
|
6069
|
+
* @public
|
|
5239
6070
|
* <p>The store's description.</p>
|
|
5240
6071
|
*/
|
|
5241
6072
|
description: string | undefined;
|
|
5242
6073
|
/**
|
|
6074
|
+
* @public
|
|
5243
6075
|
* <p>When the store was created.</p>
|
|
5244
6076
|
*/
|
|
5245
6077
|
creationTime: Date | undefined;
|
|
5246
6078
|
/**
|
|
6079
|
+
* @public
|
|
5247
6080
|
* <p>When the store was updated.</p>
|
|
5248
6081
|
*/
|
|
5249
6082
|
updateTime: Date | undefined;
|
|
@@ -5253,14 +6086,17 @@ export interface UpdateVariantStoreResponse {
|
|
|
5253
6086
|
*/
|
|
5254
6087
|
export interface UpdateWorkflowRequest {
|
|
5255
6088
|
/**
|
|
6089
|
+
* @public
|
|
5256
6090
|
* <p>The workflow's ID.</p>
|
|
5257
6091
|
*/
|
|
5258
6092
|
id: string | undefined;
|
|
5259
6093
|
/**
|
|
6094
|
+
* @public
|
|
5260
6095
|
* <p>A name for the workflow.</p>
|
|
5261
6096
|
*/
|
|
5262
6097
|
name?: string;
|
|
5263
6098
|
/**
|
|
6099
|
+
* @public
|
|
5264
6100
|
* <p>A description for the workflow.</p>
|
|
5265
6101
|
*/
|
|
5266
6102
|
description?: string;
|