@aws-sdk/client-omics 3.379.1 → 3.382.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-cjs/models/models_0.js +5 -1
- package/dist-cjs/protocols/Aws_restJson1.js +3 -0
- package/dist-es/models/models_0.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +3 -0
- package/dist-types/commands/GetReadSetMetadataCommand.d.ts +1 -0
- package/dist-types/commands/ListReadSetsCommand.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +866 -0
- package/dist-types/ts3.4/models/models_0.d.ts +8 -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,31 +2004,49 @@ 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>;
|
|
1783
2026
|
}
|
|
2027
|
+
/**
|
|
2028
|
+
* @public
|
|
2029
|
+
* @enum
|
|
2030
|
+
*/
|
|
2031
|
+
export declare const CreationType: {
|
|
2032
|
+
readonly IMPORT: "IMPORT";
|
|
2033
|
+
readonly UPLOAD: "UPLOAD";
|
|
2034
|
+
};
|
|
2035
|
+
/**
|
|
2036
|
+
* @public
|
|
2037
|
+
*/
|
|
2038
|
+
export type CreationType = (typeof CreationType)[keyof typeof CreationType];
|
|
1784
2039
|
/**
|
|
1785
2040
|
* @public
|
|
1786
2041
|
*/
|
|
1787
2042
|
export interface DeleteReferenceRequest {
|
|
1788
2043
|
/**
|
|
2044
|
+
* @public
|
|
1789
2045
|
* <p>The reference's ID.</p>
|
|
1790
2046
|
*/
|
|
1791
2047
|
id: string | undefined;
|
|
1792
2048
|
/**
|
|
2049
|
+
* @public
|
|
1793
2050
|
* <p>The reference's store ID.</p>
|
|
1794
2051
|
*/
|
|
1795
2052
|
referenceStoreId: string | undefined;
|
|
@@ -1804,6 +2061,7 @@ export interface DeleteReferenceResponse {
|
|
|
1804
2061
|
*/
|
|
1805
2062
|
export interface DeleteReferenceStoreRequest {
|
|
1806
2063
|
/**
|
|
2064
|
+
* @public
|
|
1807
2065
|
* <p>The store's ID.</p>
|
|
1808
2066
|
*/
|
|
1809
2067
|
id: string | undefined;
|
|
@@ -1818,6 +2076,7 @@ export interface DeleteReferenceStoreResponse {
|
|
|
1818
2076
|
*/
|
|
1819
2077
|
export interface DeleteRunRequest {
|
|
1820
2078
|
/**
|
|
2079
|
+
* @public
|
|
1821
2080
|
* <p>The run's ID.</p>
|
|
1822
2081
|
*/
|
|
1823
2082
|
id: string | undefined;
|
|
@@ -1827,6 +2086,7 @@ export interface DeleteRunRequest {
|
|
|
1827
2086
|
*/
|
|
1828
2087
|
export interface DeleteRunGroupRequest {
|
|
1829
2088
|
/**
|
|
2089
|
+
* @public
|
|
1830
2090
|
* <p>The run group's ID.</p>
|
|
1831
2091
|
*/
|
|
1832
2092
|
id: string | undefined;
|
|
@@ -1836,6 +2096,7 @@ export interface DeleteRunGroupRequest {
|
|
|
1836
2096
|
*/
|
|
1837
2097
|
export interface DeleteSequenceStoreRequest {
|
|
1838
2098
|
/**
|
|
2099
|
+
* @public
|
|
1839
2100
|
* <p>The sequence store's ID.</p>
|
|
1840
2101
|
*/
|
|
1841
2102
|
id: string | undefined;
|
|
@@ -1850,10 +2111,12 @@ export interface DeleteSequenceStoreResponse {
|
|
|
1850
2111
|
*/
|
|
1851
2112
|
export interface DeleteVariantStoreRequest {
|
|
1852
2113
|
/**
|
|
2114
|
+
* @public
|
|
1853
2115
|
* <p>The store's name.</p>
|
|
1854
2116
|
*/
|
|
1855
2117
|
name: string | undefined;
|
|
1856
2118
|
/**
|
|
2119
|
+
* @public
|
|
1857
2120
|
* <p>Whether to force deletion.</p>
|
|
1858
2121
|
*/
|
|
1859
2122
|
force?: boolean;
|
|
@@ -1863,6 +2126,7 @@ export interface DeleteVariantStoreRequest {
|
|
|
1863
2126
|
*/
|
|
1864
2127
|
export interface DeleteVariantStoreResponse {
|
|
1865
2128
|
/**
|
|
2129
|
+
* @public
|
|
1866
2130
|
* <p>The store's status.</p>
|
|
1867
2131
|
*/
|
|
1868
2132
|
status: StoreStatus | string | undefined;
|
|
@@ -1872,6 +2136,7 @@ export interface DeleteVariantStoreResponse {
|
|
|
1872
2136
|
*/
|
|
1873
2137
|
export interface DeleteWorkflowRequest {
|
|
1874
2138
|
/**
|
|
2139
|
+
* @public
|
|
1875
2140
|
* <p>The workflow's ID.</p>
|
|
1876
2141
|
*/
|
|
1877
2142
|
id: string | undefined;
|
|
@@ -1882,6 +2147,7 @@ export interface DeleteWorkflowRequest {
|
|
|
1882
2147
|
*/
|
|
1883
2148
|
export interface ExportReadSet {
|
|
1884
2149
|
/**
|
|
2150
|
+
* @public
|
|
1885
2151
|
* <p>The set's ID.</p>
|
|
1886
2152
|
*/
|
|
1887
2153
|
readSetId: string | undefined;
|
|
@@ -1906,14 +2172,17 @@ export type ReadSetExportJobItemStatus = (typeof ReadSetExportJobItemStatus)[key
|
|
|
1906
2172
|
*/
|
|
1907
2173
|
export interface ExportReadSetDetail {
|
|
1908
2174
|
/**
|
|
2175
|
+
* @public
|
|
1909
2176
|
* <p>The set's ID.</p>
|
|
1910
2177
|
*/
|
|
1911
2178
|
id: string | undefined;
|
|
1912
2179
|
/**
|
|
2180
|
+
* @public
|
|
1913
2181
|
* <p>The set's status.</p>
|
|
1914
2182
|
*/
|
|
1915
2183
|
status: ReadSetExportJobItemStatus | string | undefined;
|
|
1916
2184
|
/**
|
|
2185
|
+
* @public
|
|
1917
2186
|
* <p>The set's status message.</p>
|
|
1918
2187
|
*/
|
|
1919
2188
|
statusMessage?: string;
|
|
@@ -1941,14 +2210,17 @@ export type ReadSetExportJobStatus = (typeof ReadSetExportJobStatus)[keyof typeo
|
|
|
1941
2210
|
*/
|
|
1942
2211
|
export interface ExportReadSetFilter {
|
|
1943
2212
|
/**
|
|
2213
|
+
* @public
|
|
1944
2214
|
* <p>A status to filter on.</p>
|
|
1945
2215
|
*/
|
|
1946
2216
|
status?: ReadSetExportJobStatus | string;
|
|
1947
2217
|
/**
|
|
2218
|
+
* @public
|
|
1948
2219
|
* <p>The filter's start date.</p>
|
|
1949
2220
|
*/
|
|
1950
2221
|
createdAfter?: Date;
|
|
1951
2222
|
/**
|
|
2223
|
+
* @public
|
|
1952
2224
|
* <p>The filter's end date.</p>
|
|
1953
2225
|
*/
|
|
1954
2226
|
createdBefore?: Date;
|
|
@@ -1959,26 +2231,32 @@ export interface ExportReadSetFilter {
|
|
|
1959
2231
|
*/
|
|
1960
2232
|
export interface ExportReadSetJobDetail {
|
|
1961
2233
|
/**
|
|
2234
|
+
* @public
|
|
1962
2235
|
* <p>The job's ID.</p>
|
|
1963
2236
|
*/
|
|
1964
2237
|
id: string | undefined;
|
|
1965
2238
|
/**
|
|
2239
|
+
* @public
|
|
1966
2240
|
* <p>The job's sequence store ID.</p>
|
|
1967
2241
|
*/
|
|
1968
2242
|
sequenceStoreId: string | undefined;
|
|
1969
2243
|
/**
|
|
2244
|
+
* @public
|
|
1970
2245
|
* <p>The job's destination in Amazon S3.</p>
|
|
1971
2246
|
*/
|
|
1972
2247
|
destination: string | undefined;
|
|
1973
2248
|
/**
|
|
2249
|
+
* @public
|
|
1974
2250
|
* <p>The job's status.</p>
|
|
1975
2251
|
*/
|
|
1976
2252
|
status: ReadSetExportJobStatus | string | undefined;
|
|
1977
2253
|
/**
|
|
2254
|
+
* @public
|
|
1978
2255
|
* <p>When the job was created.</p>
|
|
1979
2256
|
*/
|
|
1980
2257
|
creationTime: Date | undefined;
|
|
1981
2258
|
/**
|
|
2259
|
+
* @public
|
|
1982
2260
|
* <p>When the job completed.</p>
|
|
1983
2261
|
*/
|
|
1984
2262
|
completionTime?: Date;
|
|
@@ -1989,14 +2267,17 @@ export interface ExportReadSetJobDetail {
|
|
|
1989
2267
|
*/
|
|
1990
2268
|
export interface FileInformation {
|
|
1991
2269
|
/**
|
|
2270
|
+
* @public
|
|
1992
2271
|
* <p>The file's total parts.</p>
|
|
1993
2272
|
*/
|
|
1994
2273
|
totalParts?: number;
|
|
1995
2274
|
/**
|
|
2275
|
+
* @public
|
|
1996
2276
|
* <p>The file's part size.</p>
|
|
1997
2277
|
*/
|
|
1998
2278
|
partSize?: number;
|
|
1999
2279
|
/**
|
|
2280
|
+
* @public
|
|
2000
2281
|
* <p>The file's content length.</p>
|
|
2001
2282
|
*/
|
|
2002
2283
|
contentLength?: number;
|
|
@@ -2019,18 +2300,22 @@ export type ReadSetFile = (typeof ReadSetFile)[keyof typeof ReadSetFile];
|
|
|
2019
2300
|
*/
|
|
2020
2301
|
export interface GetReadSetRequest {
|
|
2021
2302
|
/**
|
|
2303
|
+
* @public
|
|
2022
2304
|
* <p>The read set's ID.</p>
|
|
2023
2305
|
*/
|
|
2024
2306
|
id: string | undefined;
|
|
2025
2307
|
/**
|
|
2308
|
+
* @public
|
|
2026
2309
|
* <p>The read set's sequence store ID.</p>
|
|
2027
2310
|
*/
|
|
2028
2311
|
sequenceStoreId: string | undefined;
|
|
2029
2312
|
/**
|
|
2313
|
+
* @public
|
|
2030
2314
|
* <p>The file to retrieve.</p>
|
|
2031
2315
|
*/
|
|
2032
2316
|
file?: ReadSetFile | string;
|
|
2033
2317
|
/**
|
|
2318
|
+
* @public
|
|
2034
2319
|
* <p>The part number to retrieve.</p>
|
|
2035
2320
|
*/
|
|
2036
2321
|
partNumber: number | undefined;
|
|
@@ -2040,6 +2325,7 @@ export interface GetReadSetRequest {
|
|
|
2040
2325
|
*/
|
|
2041
2326
|
export interface GetReadSetResponse {
|
|
2042
2327
|
/**
|
|
2328
|
+
* @public
|
|
2043
2329
|
* <p>The read set file payload.</p>
|
|
2044
2330
|
*/
|
|
2045
2331
|
payload?: StreamingBlobTypes;
|
|
@@ -2062,10 +2348,12 @@ export declare class RangeNotSatisfiableException extends __BaseException {
|
|
|
2062
2348
|
*/
|
|
2063
2349
|
export interface GetReadSetActivationJobRequest {
|
|
2064
2350
|
/**
|
|
2351
|
+
* @public
|
|
2065
2352
|
* <p>The job's ID.</p>
|
|
2066
2353
|
*/
|
|
2067
2354
|
id: string | undefined;
|
|
2068
2355
|
/**
|
|
2356
|
+
* @public
|
|
2069
2357
|
* <p>The job's sequence store ID.</p>
|
|
2070
2358
|
*/
|
|
2071
2359
|
sequenceStoreId: string | undefined;
|
|
@@ -2075,30 +2363,37 @@ export interface GetReadSetActivationJobRequest {
|
|
|
2075
2363
|
*/
|
|
2076
2364
|
export interface GetReadSetActivationJobResponse {
|
|
2077
2365
|
/**
|
|
2366
|
+
* @public
|
|
2078
2367
|
* <p>The job's ID.</p>
|
|
2079
2368
|
*/
|
|
2080
2369
|
id: string | undefined;
|
|
2081
2370
|
/**
|
|
2371
|
+
* @public
|
|
2082
2372
|
* <p>The job's sequence store ID.</p>
|
|
2083
2373
|
*/
|
|
2084
2374
|
sequenceStoreId: string | undefined;
|
|
2085
2375
|
/**
|
|
2376
|
+
* @public
|
|
2086
2377
|
* <p>The job's status.</p>
|
|
2087
2378
|
*/
|
|
2088
2379
|
status: ReadSetActivationJobStatus | string | undefined;
|
|
2089
2380
|
/**
|
|
2381
|
+
* @public
|
|
2090
2382
|
* <p>The job's status message.</p>
|
|
2091
2383
|
*/
|
|
2092
2384
|
statusMessage?: string;
|
|
2093
2385
|
/**
|
|
2386
|
+
* @public
|
|
2094
2387
|
* <p>When the job was created.</p>
|
|
2095
2388
|
*/
|
|
2096
2389
|
creationTime: Date | undefined;
|
|
2097
2390
|
/**
|
|
2391
|
+
* @public
|
|
2098
2392
|
* <p>When the job completed.</p>
|
|
2099
2393
|
*/
|
|
2100
2394
|
completionTime?: Date;
|
|
2101
2395
|
/**
|
|
2396
|
+
* @public
|
|
2102
2397
|
* <p>The job's source files.</p>
|
|
2103
2398
|
*/
|
|
2104
2399
|
sources?: ActivateReadSetSourceItem[];
|
|
@@ -2108,10 +2403,12 @@ export interface GetReadSetActivationJobResponse {
|
|
|
2108
2403
|
*/
|
|
2109
2404
|
export interface GetReadSetExportJobRequest {
|
|
2110
2405
|
/**
|
|
2406
|
+
* @public
|
|
2111
2407
|
* <p>The job's sequence store ID.</p>
|
|
2112
2408
|
*/
|
|
2113
2409
|
sequenceStoreId: string | undefined;
|
|
2114
2410
|
/**
|
|
2411
|
+
* @public
|
|
2115
2412
|
* <p>The job's ID.</p>
|
|
2116
2413
|
*/
|
|
2117
2414
|
id: string | undefined;
|
|
@@ -2121,34 +2418,42 @@ export interface GetReadSetExportJobRequest {
|
|
|
2121
2418
|
*/
|
|
2122
2419
|
export interface GetReadSetExportJobResponse {
|
|
2123
2420
|
/**
|
|
2421
|
+
* @public
|
|
2124
2422
|
* <p>The job's ID.</p>
|
|
2125
2423
|
*/
|
|
2126
2424
|
id: string | undefined;
|
|
2127
2425
|
/**
|
|
2426
|
+
* @public
|
|
2128
2427
|
* <p>The job's sequence store ID.</p>
|
|
2129
2428
|
*/
|
|
2130
2429
|
sequenceStoreId: string | undefined;
|
|
2131
2430
|
/**
|
|
2431
|
+
* @public
|
|
2132
2432
|
* <p>The job's destination in Amazon S3.</p>
|
|
2133
2433
|
*/
|
|
2134
2434
|
destination: string | undefined;
|
|
2135
2435
|
/**
|
|
2436
|
+
* @public
|
|
2136
2437
|
* <p>The job's status.</p>
|
|
2137
2438
|
*/
|
|
2138
2439
|
status: ReadSetExportJobStatus | string | undefined;
|
|
2139
2440
|
/**
|
|
2441
|
+
* @public
|
|
2140
2442
|
* <p>The job's status message.</p>
|
|
2141
2443
|
*/
|
|
2142
2444
|
statusMessage?: string;
|
|
2143
2445
|
/**
|
|
2446
|
+
* @public
|
|
2144
2447
|
* <p>When the job was created.</p>
|
|
2145
2448
|
*/
|
|
2146
2449
|
creationTime: Date | undefined;
|
|
2147
2450
|
/**
|
|
2451
|
+
* @public
|
|
2148
2452
|
* <p>When the job completed.</p>
|
|
2149
2453
|
*/
|
|
2150
2454
|
completionTime?: Date;
|
|
2151
2455
|
/**
|
|
2456
|
+
* @public
|
|
2152
2457
|
* <p>The job's read sets.</p>
|
|
2153
2458
|
*/
|
|
2154
2459
|
readSets?: ExportReadSetDetail[];
|
|
@@ -2158,10 +2463,12 @@ export interface GetReadSetExportJobResponse {
|
|
|
2158
2463
|
*/
|
|
2159
2464
|
export interface GetReadSetImportJobRequest {
|
|
2160
2465
|
/**
|
|
2466
|
+
* @public
|
|
2161
2467
|
* <p>The job's ID.</p>
|
|
2162
2468
|
*/
|
|
2163
2469
|
id: string | undefined;
|
|
2164
2470
|
/**
|
|
2471
|
+
* @public
|
|
2165
2472
|
* <p>The job's sequence store ID.</p>
|
|
2166
2473
|
*/
|
|
2167
2474
|
sequenceStoreId: string | undefined;
|
|
@@ -2172,10 +2479,12 @@ export interface GetReadSetImportJobRequest {
|
|
|
2172
2479
|
*/
|
|
2173
2480
|
export interface SourceFiles {
|
|
2174
2481
|
/**
|
|
2482
|
+
* @public
|
|
2175
2483
|
* <p>The location of the first file in Amazon S3.</p>
|
|
2176
2484
|
*/
|
|
2177
2485
|
source1: string | undefined;
|
|
2178
2486
|
/**
|
|
2487
|
+
* @public
|
|
2179
2488
|
* <p>The location of the second file in Amazon S3.</p>
|
|
2180
2489
|
*/
|
|
2181
2490
|
source2?: string;
|
|
@@ -2200,46 +2509,57 @@ export type ReadSetImportJobItemStatus = (typeof ReadSetImportJobItemStatus)[key
|
|
|
2200
2509
|
*/
|
|
2201
2510
|
export interface ImportReadSetSourceItem {
|
|
2202
2511
|
/**
|
|
2512
|
+
* @public
|
|
2203
2513
|
* <p>The source files' location in Amazon S3.</p>
|
|
2204
2514
|
*/
|
|
2205
2515
|
sourceFiles: SourceFiles | undefined;
|
|
2206
2516
|
/**
|
|
2517
|
+
* @public
|
|
2207
2518
|
* <p>The source's file type.</p>
|
|
2208
2519
|
*/
|
|
2209
2520
|
sourceFileType: FileType | string | undefined;
|
|
2210
2521
|
/**
|
|
2522
|
+
* @public
|
|
2211
2523
|
* <p>The source's status.</p>
|
|
2212
2524
|
*/
|
|
2213
2525
|
status: ReadSetImportJobItemStatus | string | undefined;
|
|
2214
2526
|
/**
|
|
2527
|
+
* @public
|
|
2215
2528
|
* <p>The source's status message.</p>
|
|
2216
2529
|
*/
|
|
2217
2530
|
statusMessage?: string;
|
|
2218
2531
|
/**
|
|
2532
|
+
* @public
|
|
2219
2533
|
* <p>The source's subject ID.</p>
|
|
2220
2534
|
*/
|
|
2221
2535
|
subjectId: string | undefined;
|
|
2222
2536
|
/**
|
|
2537
|
+
* @public
|
|
2223
2538
|
* <p>The source's sample ID.</p>
|
|
2224
2539
|
*/
|
|
2225
2540
|
sampleId: string | undefined;
|
|
2226
2541
|
/**
|
|
2542
|
+
* @public
|
|
2227
2543
|
* <p>Where the source originated.</p>
|
|
2228
2544
|
*/
|
|
2229
2545
|
generatedFrom?: string;
|
|
2230
2546
|
/**
|
|
2547
|
+
* @public
|
|
2231
2548
|
* <p>The source's genome reference ARN.</p>
|
|
2232
2549
|
*/
|
|
2233
2550
|
referenceArn?: string;
|
|
2234
2551
|
/**
|
|
2552
|
+
* @public
|
|
2235
2553
|
* <p>The source's name.</p>
|
|
2236
2554
|
*/
|
|
2237
2555
|
name?: string;
|
|
2238
2556
|
/**
|
|
2557
|
+
* @public
|
|
2239
2558
|
* <p>The source's description.</p>
|
|
2240
2559
|
*/
|
|
2241
2560
|
description?: string;
|
|
2242
2561
|
/**
|
|
2562
|
+
* @public
|
|
2243
2563
|
* <p>The source's tags.</p>
|
|
2244
2564
|
*/
|
|
2245
2565
|
tags?: Record<string, string>;
|
|
@@ -2266,34 +2586,42 @@ export type ReadSetImportJobStatus = (typeof ReadSetImportJobStatus)[keyof typeo
|
|
|
2266
2586
|
*/
|
|
2267
2587
|
export interface GetReadSetImportJobResponse {
|
|
2268
2588
|
/**
|
|
2589
|
+
* @public
|
|
2269
2590
|
* <p>The job's ID.</p>
|
|
2270
2591
|
*/
|
|
2271
2592
|
id: string | undefined;
|
|
2272
2593
|
/**
|
|
2594
|
+
* @public
|
|
2273
2595
|
* <p>The job's sequence store ID.</p>
|
|
2274
2596
|
*/
|
|
2275
2597
|
sequenceStoreId: string | undefined;
|
|
2276
2598
|
/**
|
|
2599
|
+
* @public
|
|
2277
2600
|
* <p>The job's service role ARN.</p>
|
|
2278
2601
|
*/
|
|
2279
2602
|
roleArn: string | undefined;
|
|
2280
2603
|
/**
|
|
2604
|
+
* @public
|
|
2281
2605
|
* <p>The job's status.</p>
|
|
2282
2606
|
*/
|
|
2283
2607
|
status: ReadSetImportJobStatus | string | undefined;
|
|
2284
2608
|
/**
|
|
2609
|
+
* @public
|
|
2285
2610
|
* <p>The job's status message.</p>
|
|
2286
2611
|
*/
|
|
2287
2612
|
statusMessage?: string;
|
|
2288
2613
|
/**
|
|
2614
|
+
* @public
|
|
2289
2615
|
* <p>When the job was created.</p>
|
|
2290
2616
|
*/
|
|
2291
2617
|
creationTime: Date | undefined;
|
|
2292
2618
|
/**
|
|
2619
|
+
* @public
|
|
2293
2620
|
* <p>When the job completed.</p>
|
|
2294
2621
|
*/
|
|
2295
2622
|
completionTime?: Date;
|
|
2296
2623
|
/**
|
|
2624
|
+
* @public
|
|
2297
2625
|
* <p>The job's source files.</p>
|
|
2298
2626
|
*/
|
|
2299
2627
|
sources: ImportReadSetSourceItem[] | undefined;
|
|
@@ -2303,10 +2631,12 @@ export interface GetReadSetImportJobResponse {
|
|
|
2303
2631
|
*/
|
|
2304
2632
|
export interface GetReadSetMetadataRequest {
|
|
2305
2633
|
/**
|
|
2634
|
+
* @public
|
|
2306
2635
|
* <p>The read set's ID.</p>
|
|
2307
2636
|
*/
|
|
2308
2637
|
id: string | undefined;
|
|
2309
2638
|
/**
|
|
2639
|
+
* @public
|
|
2310
2640
|
* <p>The read set's sequence store ID.</p>
|
|
2311
2641
|
*/
|
|
2312
2642
|
sequenceStoreId: string | undefined;
|
|
@@ -2317,14 +2647,17 @@ export interface GetReadSetMetadataRequest {
|
|
|
2317
2647
|
*/
|
|
2318
2648
|
export interface ReadSetFiles {
|
|
2319
2649
|
/**
|
|
2650
|
+
* @public
|
|
2320
2651
|
* <p>The location of the first file in Amazon S3.</p>
|
|
2321
2652
|
*/
|
|
2322
2653
|
source1?: FileInformation;
|
|
2323
2654
|
/**
|
|
2655
|
+
* @public
|
|
2324
2656
|
* <p>The location of the second file in Amazon S3.</p>
|
|
2325
2657
|
*/
|
|
2326
2658
|
source2?: FileInformation;
|
|
2327
2659
|
/**
|
|
2660
|
+
* @public
|
|
2328
2661
|
* <p>The files' index.</p>
|
|
2329
2662
|
*/
|
|
2330
2663
|
index?: FileInformation;
|
|
@@ -2335,18 +2668,22 @@ export interface ReadSetFiles {
|
|
|
2335
2668
|
*/
|
|
2336
2669
|
export interface SequenceInformation {
|
|
2337
2670
|
/**
|
|
2671
|
+
* @public
|
|
2338
2672
|
* <p>The sequence's total read count.</p>
|
|
2339
2673
|
*/
|
|
2340
2674
|
totalReadCount?: number;
|
|
2341
2675
|
/**
|
|
2676
|
+
* @public
|
|
2342
2677
|
* <p>The sequence's total base count.</p>
|
|
2343
2678
|
*/
|
|
2344
2679
|
totalBaseCount?: number;
|
|
2345
2680
|
/**
|
|
2681
|
+
* @public
|
|
2346
2682
|
* <p>Where the sequence originated.</p>
|
|
2347
2683
|
*/
|
|
2348
2684
|
generatedFrom?: string;
|
|
2349
2685
|
/**
|
|
2686
|
+
* @public
|
|
2350
2687
|
* <p>The sequence's alignment setting.</p>
|
|
2351
2688
|
*/
|
|
2352
2689
|
alignment?: string;
|
|
@@ -2373,63 +2710,84 @@ export type ReadSetStatus = (typeof ReadSetStatus)[keyof typeof ReadSetStatus];
|
|
|
2373
2710
|
*/
|
|
2374
2711
|
export interface GetReadSetMetadataResponse {
|
|
2375
2712
|
/**
|
|
2713
|
+
* @public
|
|
2376
2714
|
* <p>The read set's ID.</p>
|
|
2377
2715
|
*/
|
|
2378
2716
|
id: string | undefined;
|
|
2379
2717
|
/**
|
|
2718
|
+
* @public
|
|
2380
2719
|
* <p>The read set's ARN.</p>
|
|
2381
2720
|
*/
|
|
2382
2721
|
arn: string | undefined;
|
|
2383
2722
|
/**
|
|
2723
|
+
* @public
|
|
2384
2724
|
* <p>The read set's sequence store ID.</p>
|
|
2385
2725
|
*/
|
|
2386
2726
|
sequenceStoreId: string | undefined;
|
|
2387
2727
|
/**
|
|
2728
|
+
* @public
|
|
2388
2729
|
* <p>The read set's subject ID.</p>
|
|
2389
2730
|
*/
|
|
2390
2731
|
subjectId?: string;
|
|
2391
2732
|
/**
|
|
2733
|
+
* @public
|
|
2392
2734
|
* <p>The read set's sample ID.</p>
|
|
2393
2735
|
*/
|
|
2394
2736
|
sampleId?: string;
|
|
2395
2737
|
/**
|
|
2738
|
+
* @public
|
|
2396
2739
|
* <p>The read set's status.</p>
|
|
2397
2740
|
*/
|
|
2398
2741
|
status: ReadSetStatus | string | undefined;
|
|
2399
2742
|
/**
|
|
2743
|
+
* @public
|
|
2400
2744
|
* <p>The read set's name.</p>
|
|
2401
2745
|
*/
|
|
2402
2746
|
name?: string;
|
|
2403
2747
|
/**
|
|
2748
|
+
* @public
|
|
2404
2749
|
* <p>The read set's description.</p>
|
|
2405
2750
|
*/
|
|
2406
2751
|
description?: string;
|
|
2407
2752
|
/**
|
|
2753
|
+
* @public
|
|
2408
2754
|
* <p>The read set's file type.</p>
|
|
2409
2755
|
*/
|
|
2410
2756
|
fileType: FileType | string | undefined;
|
|
2411
2757
|
/**
|
|
2758
|
+
* @public
|
|
2412
2759
|
* <p>When the read set was created.</p>
|
|
2413
2760
|
*/
|
|
2414
2761
|
creationTime: Date | undefined;
|
|
2415
2762
|
/**
|
|
2763
|
+
* @public
|
|
2416
2764
|
* <p>The read set's sequence information.</p>
|
|
2417
2765
|
*/
|
|
2418
2766
|
sequenceInformation?: SequenceInformation;
|
|
2419
2767
|
/**
|
|
2768
|
+
* @public
|
|
2420
2769
|
* <p>The read set's genome reference ARN.</p>
|
|
2421
2770
|
*/
|
|
2422
2771
|
referenceArn?: string;
|
|
2423
2772
|
/**
|
|
2773
|
+
* @public
|
|
2424
2774
|
* <p>The read set's files.</p>
|
|
2425
2775
|
*/
|
|
2426
2776
|
files?: ReadSetFiles;
|
|
2427
2777
|
/**
|
|
2778
|
+
* @public
|
|
2428
2779
|
* <p>
|
|
2429
2780
|
* The status message for a read set. It provides more detail as to why the read set has a status.
|
|
2430
2781
|
* </p>
|
|
2431
2782
|
*/
|
|
2432
2783
|
statusMessage?: string;
|
|
2784
|
+
/**
|
|
2785
|
+
* @public
|
|
2786
|
+
* <p>
|
|
2787
|
+
* The creation type of the read set.
|
|
2788
|
+
* </p>
|
|
2789
|
+
*/
|
|
2790
|
+
creationType?: CreationType | string;
|
|
2433
2791
|
}
|
|
2434
2792
|
/**
|
|
2435
2793
|
* @public
|
|
@@ -2448,22 +2806,27 @@ export type ReferenceFile = (typeof ReferenceFile)[keyof typeof ReferenceFile];
|
|
|
2448
2806
|
*/
|
|
2449
2807
|
export interface GetReferenceRequest {
|
|
2450
2808
|
/**
|
|
2809
|
+
* @public
|
|
2451
2810
|
* <p>The reference's ID.</p>
|
|
2452
2811
|
*/
|
|
2453
2812
|
id: string | undefined;
|
|
2454
2813
|
/**
|
|
2814
|
+
* @public
|
|
2455
2815
|
* <p>The reference's store ID.</p>
|
|
2456
2816
|
*/
|
|
2457
2817
|
referenceStoreId: string | undefined;
|
|
2458
2818
|
/**
|
|
2819
|
+
* @public
|
|
2459
2820
|
* <p>The range to retrieve.</p>
|
|
2460
2821
|
*/
|
|
2461
2822
|
range?: string;
|
|
2462
2823
|
/**
|
|
2824
|
+
* @public
|
|
2463
2825
|
* <p>The part number to retrieve.</p>
|
|
2464
2826
|
*/
|
|
2465
2827
|
partNumber: number | undefined;
|
|
2466
2828
|
/**
|
|
2829
|
+
* @public
|
|
2467
2830
|
* <p>The file to retrieve.</p>
|
|
2468
2831
|
*/
|
|
2469
2832
|
file?: ReferenceFile | string;
|
|
@@ -2473,6 +2836,7 @@ export interface GetReferenceRequest {
|
|
|
2473
2836
|
*/
|
|
2474
2837
|
export interface GetReferenceResponse {
|
|
2475
2838
|
/**
|
|
2839
|
+
* @public
|
|
2476
2840
|
* <p>The reference file payload.</p>
|
|
2477
2841
|
*/
|
|
2478
2842
|
payload?: StreamingBlobTypes;
|
|
@@ -2482,10 +2846,12 @@ export interface GetReferenceResponse {
|
|
|
2482
2846
|
*/
|
|
2483
2847
|
export interface GetReferenceImportJobRequest {
|
|
2484
2848
|
/**
|
|
2849
|
+
* @public
|
|
2485
2850
|
* <p>The job's ID.</p>
|
|
2486
2851
|
*/
|
|
2487
2852
|
id: string | undefined;
|
|
2488
2853
|
/**
|
|
2854
|
+
* @public
|
|
2489
2855
|
* <p>The job's reference store ID.</p>
|
|
2490
2856
|
*/
|
|
2491
2857
|
referenceStoreId: string | undefined;
|
|
@@ -2510,26 +2876,32 @@ export type ReferenceImportJobItemStatus = (typeof ReferenceImportJobItemStatus)
|
|
|
2510
2876
|
*/
|
|
2511
2877
|
export interface ImportReferenceSourceItem {
|
|
2512
2878
|
/**
|
|
2879
|
+
* @public
|
|
2513
2880
|
* <p>The source file's location in Amazon S3.</p>
|
|
2514
2881
|
*/
|
|
2515
2882
|
sourceFile?: string;
|
|
2516
2883
|
/**
|
|
2884
|
+
* @public
|
|
2517
2885
|
* <p>The source's status.</p>
|
|
2518
2886
|
*/
|
|
2519
2887
|
status: ReferenceImportJobItemStatus | string | undefined;
|
|
2520
2888
|
/**
|
|
2889
|
+
* @public
|
|
2521
2890
|
* <p>The source's status message.</p>
|
|
2522
2891
|
*/
|
|
2523
2892
|
statusMessage?: string;
|
|
2524
2893
|
/**
|
|
2894
|
+
* @public
|
|
2525
2895
|
* <p>The source's name.</p>
|
|
2526
2896
|
*/
|
|
2527
2897
|
name?: string;
|
|
2528
2898
|
/**
|
|
2899
|
+
* @public
|
|
2529
2900
|
* <p>The source's description.</p>
|
|
2530
2901
|
*/
|
|
2531
2902
|
description?: string;
|
|
2532
2903
|
/**
|
|
2904
|
+
* @public
|
|
2533
2905
|
* <p>The source's tags.</p>
|
|
2534
2906
|
*/
|
|
2535
2907
|
tags?: Record<string, string>;
|
|
@@ -2556,34 +2928,42 @@ export type ReferenceImportJobStatus = (typeof ReferenceImportJobStatus)[keyof t
|
|
|
2556
2928
|
*/
|
|
2557
2929
|
export interface GetReferenceImportJobResponse {
|
|
2558
2930
|
/**
|
|
2931
|
+
* @public
|
|
2559
2932
|
* <p>The job's ID.</p>
|
|
2560
2933
|
*/
|
|
2561
2934
|
id: string | undefined;
|
|
2562
2935
|
/**
|
|
2936
|
+
* @public
|
|
2563
2937
|
* <p>The job's reference store ID.</p>
|
|
2564
2938
|
*/
|
|
2565
2939
|
referenceStoreId: string | undefined;
|
|
2566
2940
|
/**
|
|
2941
|
+
* @public
|
|
2567
2942
|
* <p>The job's service role ARN.</p>
|
|
2568
2943
|
*/
|
|
2569
2944
|
roleArn: string | undefined;
|
|
2570
2945
|
/**
|
|
2946
|
+
* @public
|
|
2571
2947
|
* <p>The job's status.</p>
|
|
2572
2948
|
*/
|
|
2573
2949
|
status: ReferenceImportJobStatus | string | undefined;
|
|
2574
2950
|
/**
|
|
2951
|
+
* @public
|
|
2575
2952
|
* <p>The job's status message.</p>
|
|
2576
2953
|
*/
|
|
2577
2954
|
statusMessage?: string;
|
|
2578
2955
|
/**
|
|
2956
|
+
* @public
|
|
2579
2957
|
* <p>When the job was created.</p>
|
|
2580
2958
|
*/
|
|
2581
2959
|
creationTime: Date | undefined;
|
|
2582
2960
|
/**
|
|
2961
|
+
* @public
|
|
2583
2962
|
* <p>When the job completed.</p>
|
|
2584
2963
|
*/
|
|
2585
2964
|
completionTime?: Date;
|
|
2586
2965
|
/**
|
|
2966
|
+
* @public
|
|
2587
2967
|
* <p>The job's source files.</p>
|
|
2588
2968
|
*/
|
|
2589
2969
|
sources: ImportReferenceSourceItem[] | undefined;
|
|
@@ -2593,10 +2973,12 @@ export interface GetReferenceImportJobResponse {
|
|
|
2593
2973
|
*/
|
|
2594
2974
|
export interface GetReferenceMetadataRequest {
|
|
2595
2975
|
/**
|
|
2976
|
+
* @public
|
|
2596
2977
|
* <p>The reference's ID.</p>
|
|
2597
2978
|
*/
|
|
2598
2979
|
id: string | undefined;
|
|
2599
2980
|
/**
|
|
2981
|
+
* @public
|
|
2600
2982
|
* <p>The reference's reference store ID.</p>
|
|
2601
2983
|
*/
|
|
2602
2984
|
referenceStoreId: string | undefined;
|
|
@@ -2607,10 +2989,12 @@ export interface GetReferenceMetadataRequest {
|
|
|
2607
2989
|
*/
|
|
2608
2990
|
export interface ReferenceFiles {
|
|
2609
2991
|
/**
|
|
2992
|
+
* @public
|
|
2610
2993
|
* <p>The source file's location in Amazon S3.</p>
|
|
2611
2994
|
*/
|
|
2612
2995
|
source?: FileInformation;
|
|
2613
2996
|
/**
|
|
2997
|
+
* @public
|
|
2614
2998
|
* <p>The files' index.</p>
|
|
2615
2999
|
*/
|
|
2616
3000
|
index?: FileInformation;
|
|
@@ -2633,42 +3017,52 @@ export type ReferenceStatus = (typeof ReferenceStatus)[keyof typeof ReferenceSta
|
|
|
2633
3017
|
*/
|
|
2634
3018
|
export interface GetReferenceMetadataResponse {
|
|
2635
3019
|
/**
|
|
3020
|
+
* @public
|
|
2636
3021
|
* <p>The reference's ID.</p>
|
|
2637
3022
|
*/
|
|
2638
3023
|
id: string | undefined;
|
|
2639
3024
|
/**
|
|
3025
|
+
* @public
|
|
2640
3026
|
* <p>The reference's ARN.</p>
|
|
2641
3027
|
*/
|
|
2642
3028
|
arn: string | undefined;
|
|
2643
3029
|
/**
|
|
3030
|
+
* @public
|
|
2644
3031
|
* <p>The reference's reference store ID.</p>
|
|
2645
3032
|
*/
|
|
2646
3033
|
referenceStoreId: string | undefined;
|
|
2647
3034
|
/**
|
|
3035
|
+
* @public
|
|
2648
3036
|
* <p>The reference's MD5 checksum.</p>
|
|
2649
3037
|
*/
|
|
2650
3038
|
md5: string | undefined;
|
|
2651
3039
|
/**
|
|
3040
|
+
* @public
|
|
2652
3041
|
* <p>The reference's status.</p>
|
|
2653
3042
|
*/
|
|
2654
3043
|
status?: ReferenceStatus | string;
|
|
2655
3044
|
/**
|
|
3045
|
+
* @public
|
|
2656
3046
|
* <p>The reference's name.</p>
|
|
2657
3047
|
*/
|
|
2658
3048
|
name?: string;
|
|
2659
3049
|
/**
|
|
3050
|
+
* @public
|
|
2660
3051
|
* <p>The reference's description.</p>
|
|
2661
3052
|
*/
|
|
2662
3053
|
description?: string;
|
|
2663
3054
|
/**
|
|
3055
|
+
* @public
|
|
2664
3056
|
* <p>When the reference was created.</p>
|
|
2665
3057
|
*/
|
|
2666
3058
|
creationTime: Date | undefined;
|
|
2667
3059
|
/**
|
|
3060
|
+
* @public
|
|
2668
3061
|
* <p>When the reference was updated.</p>
|
|
2669
3062
|
*/
|
|
2670
3063
|
updateTime: Date | undefined;
|
|
2671
3064
|
/**
|
|
3065
|
+
* @public
|
|
2672
3066
|
* <p>The reference's files.</p>
|
|
2673
3067
|
*/
|
|
2674
3068
|
files?: ReferenceFiles;
|
|
@@ -2678,6 +3072,7 @@ export interface GetReferenceMetadataResponse {
|
|
|
2678
3072
|
*/
|
|
2679
3073
|
export interface GetReferenceStoreRequest {
|
|
2680
3074
|
/**
|
|
3075
|
+
* @public
|
|
2681
3076
|
* <p>The store's ID.</p>
|
|
2682
3077
|
*/
|
|
2683
3078
|
id: string | undefined;
|
|
@@ -2687,26 +3082,32 @@ export interface GetReferenceStoreRequest {
|
|
|
2687
3082
|
*/
|
|
2688
3083
|
export interface GetReferenceStoreResponse {
|
|
2689
3084
|
/**
|
|
3085
|
+
* @public
|
|
2690
3086
|
* <p>The store's ID.</p>
|
|
2691
3087
|
*/
|
|
2692
3088
|
id: string | undefined;
|
|
2693
3089
|
/**
|
|
3090
|
+
* @public
|
|
2694
3091
|
* <p>The store's ARN.</p>
|
|
2695
3092
|
*/
|
|
2696
3093
|
arn: string | undefined;
|
|
2697
3094
|
/**
|
|
3095
|
+
* @public
|
|
2698
3096
|
* <p>The store's name.</p>
|
|
2699
3097
|
*/
|
|
2700
3098
|
name?: string;
|
|
2701
3099
|
/**
|
|
3100
|
+
* @public
|
|
2702
3101
|
* <p>The store's description.</p>
|
|
2703
3102
|
*/
|
|
2704
3103
|
description?: string;
|
|
2705
3104
|
/**
|
|
3105
|
+
* @public
|
|
2706
3106
|
* <p>The store's server-side encryption (SSE) settings.</p>
|
|
2707
3107
|
*/
|
|
2708
3108
|
sseConfig?: SseConfig;
|
|
2709
3109
|
/**
|
|
3110
|
+
* @public
|
|
2710
3111
|
* <p>When the store was created.</p>
|
|
2711
3112
|
*/
|
|
2712
3113
|
creationTime: Date | undefined;
|
|
@@ -2727,10 +3128,12 @@ export type RunExport = (typeof RunExport)[keyof typeof RunExport];
|
|
|
2727
3128
|
*/
|
|
2728
3129
|
export interface GetRunRequest {
|
|
2729
3130
|
/**
|
|
3131
|
+
* @public
|
|
2730
3132
|
* <p>The run's ID.</p>
|
|
2731
3133
|
*/
|
|
2732
3134
|
id: string | undefined;
|
|
2733
3135
|
/**
|
|
3136
|
+
* @public
|
|
2734
3137
|
* <p>The run's export format.</p>
|
|
2735
3138
|
*/
|
|
2736
3139
|
export?: (RunExport | string)[];
|
|
@@ -2784,98 +3187,122 @@ export type WorkflowType = (typeof WorkflowType)[keyof typeof WorkflowType];
|
|
|
2784
3187
|
*/
|
|
2785
3188
|
export interface GetRunResponse {
|
|
2786
3189
|
/**
|
|
3190
|
+
* @public
|
|
2787
3191
|
* <p>The run's ARN.</p>
|
|
2788
3192
|
*/
|
|
2789
3193
|
arn?: string;
|
|
2790
3194
|
/**
|
|
3195
|
+
* @public
|
|
2791
3196
|
* <p>The run's ID.</p>
|
|
2792
3197
|
*/
|
|
2793
3198
|
id?: string;
|
|
2794
3199
|
/**
|
|
3200
|
+
* @public
|
|
2795
3201
|
* <p>The run's status.</p>
|
|
2796
3202
|
*/
|
|
2797
3203
|
status?: RunStatus | string;
|
|
2798
3204
|
/**
|
|
3205
|
+
* @public
|
|
2799
3206
|
* <p>The run's workflow ID.</p>
|
|
2800
3207
|
*/
|
|
2801
3208
|
workflowId?: string;
|
|
2802
3209
|
/**
|
|
3210
|
+
* @public
|
|
2803
3211
|
* <p>The run's workflow type.</p>
|
|
2804
3212
|
*/
|
|
2805
3213
|
workflowType?: WorkflowType | string;
|
|
2806
3214
|
/**
|
|
3215
|
+
* @public
|
|
2807
3216
|
* <p>The run's ID.</p>
|
|
2808
3217
|
*/
|
|
2809
3218
|
runId?: string;
|
|
2810
3219
|
/**
|
|
3220
|
+
* @public
|
|
2811
3221
|
* <p>The run's service role ARN.</p>
|
|
2812
3222
|
*/
|
|
2813
3223
|
roleArn?: string;
|
|
2814
3224
|
/**
|
|
3225
|
+
* @public
|
|
2815
3226
|
* <p>The run's name.</p>
|
|
2816
3227
|
*/
|
|
2817
3228
|
name?: string;
|
|
2818
3229
|
/**
|
|
3230
|
+
* @public
|
|
2819
3231
|
* <p>The run's group ID.</p>
|
|
2820
3232
|
*/
|
|
2821
3233
|
runGroupId?: string;
|
|
2822
3234
|
/**
|
|
3235
|
+
* @public
|
|
2823
3236
|
* <p>The run's priority.</p>
|
|
2824
3237
|
*/
|
|
2825
3238
|
priority?: number;
|
|
2826
3239
|
/**
|
|
3240
|
+
* @public
|
|
2827
3241
|
* <p>The run's definition.</p>
|
|
2828
3242
|
*/
|
|
2829
3243
|
definition?: string;
|
|
2830
3244
|
/**
|
|
3245
|
+
* @public
|
|
2831
3246
|
* <p>The run's digest.</p>
|
|
2832
3247
|
*/
|
|
2833
3248
|
digest?: string;
|
|
2834
3249
|
/**
|
|
3250
|
+
* @public
|
|
2835
3251
|
* <p>The run's parameters.</p>
|
|
2836
3252
|
*/
|
|
2837
3253
|
parameters?: __DocumentType;
|
|
2838
3254
|
/**
|
|
3255
|
+
* @public
|
|
2839
3256
|
* <p>The run's storage capacity in gigabytes.</p>
|
|
2840
3257
|
*/
|
|
2841
3258
|
storageCapacity?: number;
|
|
2842
3259
|
/**
|
|
3260
|
+
* @public
|
|
2843
3261
|
* <p>The run's output URI.</p>
|
|
2844
3262
|
*/
|
|
2845
3263
|
outputUri?: string;
|
|
2846
3264
|
/**
|
|
3265
|
+
* @public
|
|
2847
3266
|
* <p>The run's log level.</p>
|
|
2848
3267
|
*/
|
|
2849
3268
|
logLevel?: RunLogLevel | string;
|
|
2850
3269
|
/**
|
|
3270
|
+
* @public
|
|
2851
3271
|
* <p>The run's resource digests.</p>
|
|
2852
3272
|
*/
|
|
2853
3273
|
resourceDigests?: Record<string, string>;
|
|
2854
3274
|
/**
|
|
3275
|
+
* @public
|
|
2855
3276
|
* <p>Who started the run.</p>
|
|
2856
3277
|
*/
|
|
2857
3278
|
startedBy?: string;
|
|
2858
3279
|
/**
|
|
3280
|
+
* @public
|
|
2859
3281
|
* <p>When the run was created.</p>
|
|
2860
3282
|
*/
|
|
2861
3283
|
creationTime?: Date;
|
|
2862
3284
|
/**
|
|
3285
|
+
* @public
|
|
2863
3286
|
* <p>When the run started.</p>
|
|
2864
3287
|
*/
|
|
2865
3288
|
startTime?: Date;
|
|
2866
3289
|
/**
|
|
3290
|
+
* @public
|
|
2867
3291
|
* <p>The run's stop time.</p>
|
|
2868
3292
|
*/
|
|
2869
3293
|
stopTime?: Date;
|
|
2870
3294
|
/**
|
|
3295
|
+
* @public
|
|
2871
3296
|
* <p>The run's status message.</p>
|
|
2872
3297
|
*/
|
|
2873
3298
|
statusMessage?: string;
|
|
2874
3299
|
/**
|
|
3300
|
+
* @public
|
|
2875
3301
|
* <p>The run's tags.</p>
|
|
2876
3302
|
*/
|
|
2877
3303
|
tags?: Record<string, string>;
|
|
2878
3304
|
/**
|
|
3305
|
+
* @public
|
|
2879
3306
|
* <p>
|
|
2880
3307
|
* The computational accelerator used to run the workflow.
|
|
2881
3308
|
* </p>
|
|
@@ -2887,6 +3314,7 @@ export interface GetRunResponse {
|
|
|
2887
3314
|
*/
|
|
2888
3315
|
export interface GetRunGroupRequest {
|
|
2889
3316
|
/**
|
|
3317
|
+
* @public
|
|
2890
3318
|
* <p>The group's ID.</p>
|
|
2891
3319
|
*/
|
|
2892
3320
|
id: string | undefined;
|
|
@@ -2896,38 +3324,47 @@ export interface GetRunGroupRequest {
|
|
|
2896
3324
|
*/
|
|
2897
3325
|
export interface GetRunGroupResponse {
|
|
2898
3326
|
/**
|
|
3327
|
+
* @public
|
|
2899
3328
|
* <p>The group's ARN.</p>
|
|
2900
3329
|
*/
|
|
2901
3330
|
arn?: string;
|
|
2902
3331
|
/**
|
|
3332
|
+
* @public
|
|
2903
3333
|
* <p>The group's ID.</p>
|
|
2904
3334
|
*/
|
|
2905
3335
|
id?: string;
|
|
2906
3336
|
/**
|
|
3337
|
+
* @public
|
|
2907
3338
|
* <p>The group's name.</p>
|
|
2908
3339
|
*/
|
|
2909
3340
|
name?: string;
|
|
2910
3341
|
/**
|
|
3342
|
+
* @public
|
|
2911
3343
|
* <p>The group's maximum number of CPUs to use.</p>
|
|
2912
3344
|
*/
|
|
2913
3345
|
maxCpus?: number;
|
|
2914
3346
|
/**
|
|
3347
|
+
* @public
|
|
2915
3348
|
* <p>The maximum number of concurrent runs for the group.</p>
|
|
2916
3349
|
*/
|
|
2917
3350
|
maxRuns?: number;
|
|
2918
3351
|
/**
|
|
3352
|
+
* @public
|
|
2919
3353
|
* <p>The group's maximum run time in minutes.</p>
|
|
2920
3354
|
*/
|
|
2921
3355
|
maxDuration?: number;
|
|
2922
3356
|
/**
|
|
3357
|
+
* @public
|
|
2923
3358
|
* <p>When the group was created.</p>
|
|
2924
3359
|
*/
|
|
2925
3360
|
creationTime?: Date;
|
|
2926
3361
|
/**
|
|
3362
|
+
* @public
|
|
2927
3363
|
* <p>The group's tags.</p>
|
|
2928
3364
|
*/
|
|
2929
3365
|
tags?: Record<string, string>;
|
|
2930
3366
|
/**
|
|
3367
|
+
* @public
|
|
2931
3368
|
* <p>
|
|
2932
3369
|
* The maximum GPUs that can be used by a run group.
|
|
2933
3370
|
* </p>
|
|
@@ -2939,10 +3376,12 @@ export interface GetRunGroupResponse {
|
|
|
2939
3376
|
*/
|
|
2940
3377
|
export interface GetRunTaskRequest {
|
|
2941
3378
|
/**
|
|
3379
|
+
* @public
|
|
2942
3380
|
* <p>The task's ID.</p>
|
|
2943
3381
|
*/
|
|
2944
3382
|
id: string | undefined;
|
|
2945
3383
|
/**
|
|
3384
|
+
* @public
|
|
2946
3385
|
* <p>The task's ID.</p>
|
|
2947
3386
|
*/
|
|
2948
3387
|
taskId: string | undefined;
|
|
@@ -2969,46 +3408,57 @@ export type TaskStatus = (typeof TaskStatus)[keyof typeof TaskStatus];
|
|
|
2969
3408
|
*/
|
|
2970
3409
|
export interface GetRunTaskResponse {
|
|
2971
3410
|
/**
|
|
3411
|
+
* @public
|
|
2972
3412
|
* <p>The task's ID.</p>
|
|
2973
3413
|
*/
|
|
2974
3414
|
taskId?: string;
|
|
2975
3415
|
/**
|
|
3416
|
+
* @public
|
|
2976
3417
|
* <p>The task's status.</p>
|
|
2977
3418
|
*/
|
|
2978
3419
|
status?: TaskStatus | string;
|
|
2979
3420
|
/**
|
|
3421
|
+
* @public
|
|
2980
3422
|
* <p>The task's name.</p>
|
|
2981
3423
|
*/
|
|
2982
3424
|
name?: string;
|
|
2983
3425
|
/**
|
|
3426
|
+
* @public
|
|
2984
3427
|
* <p>The task's CPU usage.</p>
|
|
2985
3428
|
*/
|
|
2986
3429
|
cpus?: number;
|
|
2987
3430
|
/**
|
|
3431
|
+
* @public
|
|
2988
3432
|
* <p>The task's memory use in gigabytes.</p>
|
|
2989
3433
|
*/
|
|
2990
3434
|
memory?: number;
|
|
2991
3435
|
/**
|
|
3436
|
+
* @public
|
|
2992
3437
|
* <p>When the task was created.</p>
|
|
2993
3438
|
*/
|
|
2994
3439
|
creationTime?: Date;
|
|
2995
3440
|
/**
|
|
3441
|
+
* @public
|
|
2996
3442
|
* <p>The task's start time.</p>
|
|
2997
3443
|
*/
|
|
2998
3444
|
startTime?: Date;
|
|
2999
3445
|
/**
|
|
3446
|
+
* @public
|
|
3000
3447
|
* <p>The task's stop time.</p>
|
|
3001
3448
|
*/
|
|
3002
3449
|
stopTime?: Date;
|
|
3003
3450
|
/**
|
|
3451
|
+
* @public
|
|
3004
3452
|
* <p>The task's status message.</p>
|
|
3005
3453
|
*/
|
|
3006
3454
|
statusMessage?: string;
|
|
3007
3455
|
/**
|
|
3456
|
+
* @public
|
|
3008
3457
|
* <p>The task's log stream.</p>
|
|
3009
3458
|
*/
|
|
3010
3459
|
logStream?: string;
|
|
3011
3460
|
/**
|
|
3461
|
+
* @public
|
|
3012
3462
|
* <p>
|
|
3013
3463
|
* The number of Graphics Processing Units (GPU) specified in the task.
|
|
3014
3464
|
* </p>
|
|
@@ -3020,6 +3470,7 @@ export interface GetRunTaskResponse {
|
|
|
3020
3470
|
*/
|
|
3021
3471
|
export interface GetSequenceStoreRequest {
|
|
3022
3472
|
/**
|
|
3473
|
+
* @public
|
|
3023
3474
|
* <p>The store's ID.</p>
|
|
3024
3475
|
*/
|
|
3025
3476
|
id: string | undefined;
|
|
@@ -3029,30 +3480,37 @@ export interface GetSequenceStoreRequest {
|
|
|
3029
3480
|
*/
|
|
3030
3481
|
export interface GetSequenceStoreResponse {
|
|
3031
3482
|
/**
|
|
3483
|
+
* @public
|
|
3032
3484
|
* <p>The store's ID.</p>
|
|
3033
3485
|
*/
|
|
3034
3486
|
id: string | undefined;
|
|
3035
3487
|
/**
|
|
3488
|
+
* @public
|
|
3036
3489
|
* <p>The store's ARN.</p>
|
|
3037
3490
|
*/
|
|
3038
3491
|
arn: string | undefined;
|
|
3039
3492
|
/**
|
|
3493
|
+
* @public
|
|
3040
3494
|
* <p>The store's name.</p>
|
|
3041
3495
|
*/
|
|
3042
3496
|
name?: string;
|
|
3043
3497
|
/**
|
|
3498
|
+
* @public
|
|
3044
3499
|
* <p>The store's description.</p>
|
|
3045
3500
|
*/
|
|
3046
3501
|
description?: string;
|
|
3047
3502
|
/**
|
|
3503
|
+
* @public
|
|
3048
3504
|
* <p>The store's server-side encryption (SSE) settings.</p>
|
|
3049
3505
|
*/
|
|
3050
3506
|
sseConfig?: SseConfig;
|
|
3051
3507
|
/**
|
|
3508
|
+
* @public
|
|
3052
3509
|
* <p>When the store was created.</p>
|
|
3053
3510
|
*/
|
|
3054
3511
|
creationTime: Date | undefined;
|
|
3055
3512
|
/**
|
|
3513
|
+
* @public
|
|
3056
3514
|
* <p>
|
|
3057
3515
|
* An S3 location that is used to store files that have failed a direct upload.
|
|
3058
3516
|
* </p>
|
|
@@ -3064,6 +3522,7 @@ export interface GetSequenceStoreResponse {
|
|
|
3064
3522
|
*/
|
|
3065
3523
|
export interface GetVariantImportRequest {
|
|
3066
3524
|
/**
|
|
3525
|
+
* @public
|
|
3067
3526
|
* <p>The job's ID.</p>
|
|
3068
3527
|
*/
|
|
3069
3528
|
jobId: string | undefined;
|
|
@@ -3074,14 +3533,17 @@ export interface GetVariantImportRequest {
|
|
|
3074
3533
|
*/
|
|
3075
3534
|
export interface VariantImportItemDetail {
|
|
3076
3535
|
/**
|
|
3536
|
+
* @public
|
|
3077
3537
|
* <p>The source file's location in Amazon S3.</p>
|
|
3078
3538
|
*/
|
|
3079
3539
|
source: string | undefined;
|
|
3080
3540
|
/**
|
|
3541
|
+
* @public
|
|
3081
3542
|
* <p>The item's job status.</p>
|
|
3082
3543
|
*/
|
|
3083
3544
|
jobStatus: JobStatus | string | undefined;
|
|
3084
3545
|
/**
|
|
3546
|
+
* @public
|
|
3085
3547
|
* <p> A message that provides additional context about a job </p>
|
|
3086
3548
|
*/
|
|
3087
3549
|
statusMessage?: string;
|
|
@@ -3091,46 +3553,57 @@ export interface VariantImportItemDetail {
|
|
|
3091
3553
|
*/
|
|
3092
3554
|
export interface GetVariantImportResponse {
|
|
3093
3555
|
/**
|
|
3556
|
+
* @public
|
|
3094
3557
|
* <p>The job's ID.</p>
|
|
3095
3558
|
*/
|
|
3096
3559
|
id: string | undefined;
|
|
3097
3560
|
/**
|
|
3561
|
+
* @public
|
|
3098
3562
|
* <p>The job's destination variant store.</p>
|
|
3099
3563
|
*/
|
|
3100
3564
|
destinationName: string | undefined;
|
|
3101
3565
|
/**
|
|
3566
|
+
* @public
|
|
3102
3567
|
* <p>The job's service role ARN.</p>
|
|
3103
3568
|
*/
|
|
3104
3569
|
roleArn: string | undefined;
|
|
3105
3570
|
/**
|
|
3571
|
+
* @public
|
|
3106
3572
|
* <p>The job's status.</p>
|
|
3107
3573
|
*/
|
|
3108
3574
|
status: JobStatus | string | undefined;
|
|
3109
3575
|
/**
|
|
3576
|
+
* @public
|
|
3110
3577
|
* <p>The job's status message.</p>
|
|
3111
3578
|
*/
|
|
3112
3579
|
statusMessage: string | undefined;
|
|
3113
3580
|
/**
|
|
3581
|
+
* @public
|
|
3114
3582
|
* <p>When the job was created.</p>
|
|
3115
3583
|
*/
|
|
3116
3584
|
creationTime: Date | undefined;
|
|
3117
3585
|
/**
|
|
3586
|
+
* @public
|
|
3118
3587
|
* <p>When the job was updated.</p>
|
|
3119
3588
|
*/
|
|
3120
3589
|
updateTime: Date | undefined;
|
|
3121
3590
|
/**
|
|
3591
|
+
* @public
|
|
3122
3592
|
* <p>When the job completed.</p>
|
|
3123
3593
|
*/
|
|
3124
3594
|
completionTime?: Date;
|
|
3125
3595
|
/**
|
|
3596
|
+
* @public
|
|
3126
3597
|
* <p>The job's items.</p>
|
|
3127
3598
|
*/
|
|
3128
3599
|
items: VariantImportItemDetail[] | undefined;
|
|
3129
3600
|
/**
|
|
3601
|
+
* @public
|
|
3130
3602
|
* <p>The job's left normalization setting.</p>
|
|
3131
3603
|
*/
|
|
3132
3604
|
runLeftNormalization: boolean | undefined;
|
|
3133
3605
|
/**
|
|
3606
|
+
* @public
|
|
3134
3607
|
* <p>
|
|
3135
3608
|
* The annotation schema generated by the parsed annotation data.
|
|
3136
3609
|
* </p>
|
|
@@ -3142,6 +3615,7 @@ export interface GetVariantImportResponse {
|
|
|
3142
3615
|
*/
|
|
3143
3616
|
export interface GetVariantStoreRequest {
|
|
3144
3617
|
/**
|
|
3618
|
+
* @public
|
|
3145
3619
|
* <p>The store's name.</p>
|
|
3146
3620
|
*/
|
|
3147
3621
|
name: string | undefined;
|
|
@@ -3151,50 +3625,62 @@ export interface GetVariantStoreRequest {
|
|
|
3151
3625
|
*/
|
|
3152
3626
|
export interface GetVariantStoreResponse {
|
|
3153
3627
|
/**
|
|
3628
|
+
* @public
|
|
3154
3629
|
* <p>The store's ID.</p>
|
|
3155
3630
|
*/
|
|
3156
3631
|
id: string | undefined;
|
|
3157
3632
|
/**
|
|
3633
|
+
* @public
|
|
3158
3634
|
* <p>The store's genome reference.</p>
|
|
3159
3635
|
*/
|
|
3160
3636
|
reference: ReferenceItem | undefined;
|
|
3161
3637
|
/**
|
|
3638
|
+
* @public
|
|
3162
3639
|
* <p>The store's status.</p>
|
|
3163
3640
|
*/
|
|
3164
3641
|
status: StoreStatus | string | undefined;
|
|
3165
3642
|
/**
|
|
3643
|
+
* @public
|
|
3166
3644
|
* <p>The store's ARN.</p>
|
|
3167
3645
|
*/
|
|
3168
3646
|
storeArn: string | undefined;
|
|
3169
3647
|
/**
|
|
3648
|
+
* @public
|
|
3170
3649
|
* <p>The store's name.</p>
|
|
3171
3650
|
*/
|
|
3172
3651
|
name: string | undefined;
|
|
3173
3652
|
/**
|
|
3653
|
+
* @public
|
|
3174
3654
|
* <p>The store's description.</p>
|
|
3175
3655
|
*/
|
|
3176
3656
|
description: string | undefined;
|
|
3177
3657
|
/**
|
|
3658
|
+
* @public
|
|
3178
3659
|
* <p>The store's server-side encryption (SSE) settings.</p>
|
|
3179
3660
|
*/
|
|
3180
3661
|
sseConfig: SseConfig | undefined;
|
|
3181
3662
|
/**
|
|
3663
|
+
* @public
|
|
3182
3664
|
* <p>When the store was created.</p>
|
|
3183
3665
|
*/
|
|
3184
3666
|
creationTime: Date | undefined;
|
|
3185
3667
|
/**
|
|
3668
|
+
* @public
|
|
3186
3669
|
* <p>When the store was updated.</p>
|
|
3187
3670
|
*/
|
|
3188
3671
|
updateTime: Date | undefined;
|
|
3189
3672
|
/**
|
|
3673
|
+
* @public
|
|
3190
3674
|
* <p>The store's tags.</p>
|
|
3191
3675
|
*/
|
|
3192
3676
|
tags: Record<string, string> | undefined;
|
|
3193
3677
|
/**
|
|
3678
|
+
* @public
|
|
3194
3679
|
* <p>The store's status message.</p>
|
|
3195
3680
|
*/
|
|
3196
3681
|
statusMessage: string | undefined;
|
|
3197
3682
|
/**
|
|
3683
|
+
* @public
|
|
3198
3684
|
* <p>The store's size in bytes.</p>
|
|
3199
3685
|
*/
|
|
3200
3686
|
storeSizeBytes: number | undefined;
|
|
@@ -3215,14 +3701,17 @@ export type WorkflowExport = (typeof WorkflowExport)[keyof typeof WorkflowExport
|
|
|
3215
3701
|
*/
|
|
3216
3702
|
export interface GetWorkflowRequest {
|
|
3217
3703
|
/**
|
|
3704
|
+
* @public
|
|
3218
3705
|
* <p>The workflow's ID.</p>
|
|
3219
3706
|
*/
|
|
3220
3707
|
id: string | undefined;
|
|
3221
3708
|
/**
|
|
3709
|
+
* @public
|
|
3222
3710
|
* <p>The workflow's type.</p>
|
|
3223
3711
|
*/
|
|
3224
3712
|
type?: WorkflowType | string;
|
|
3225
3713
|
/**
|
|
3714
|
+
* @public
|
|
3226
3715
|
* <p>The export format for the workflow.</p>
|
|
3227
3716
|
*/
|
|
3228
3717
|
export?: (WorkflowExport | string)[];
|
|
@@ -3232,72 +3721,89 @@ export interface GetWorkflowRequest {
|
|
|
3232
3721
|
*/
|
|
3233
3722
|
export interface GetWorkflowResponse {
|
|
3234
3723
|
/**
|
|
3724
|
+
* @public
|
|
3235
3725
|
* <p>The workflow's ARN.</p>
|
|
3236
3726
|
*/
|
|
3237
3727
|
arn?: string;
|
|
3238
3728
|
/**
|
|
3729
|
+
* @public
|
|
3239
3730
|
* <p>The workflow's ID.</p>
|
|
3240
3731
|
*/
|
|
3241
3732
|
id?: string;
|
|
3242
3733
|
/**
|
|
3734
|
+
* @public
|
|
3243
3735
|
* <p>The workflow's status.</p>
|
|
3244
3736
|
*/
|
|
3245
3737
|
status?: WorkflowStatus | string;
|
|
3246
3738
|
/**
|
|
3739
|
+
* @public
|
|
3247
3740
|
* <p>The workflow's type.</p>
|
|
3248
3741
|
*/
|
|
3249
3742
|
type?: WorkflowType | string;
|
|
3250
3743
|
/**
|
|
3744
|
+
* @public
|
|
3251
3745
|
* <p>The workflow's name.</p>
|
|
3252
3746
|
*/
|
|
3253
3747
|
name?: string;
|
|
3254
3748
|
/**
|
|
3749
|
+
* @public
|
|
3255
3750
|
* <p>The workflow's description.</p>
|
|
3256
3751
|
*/
|
|
3257
3752
|
description?: string;
|
|
3258
3753
|
/**
|
|
3754
|
+
* @public
|
|
3259
3755
|
* <p>The workflow's engine.</p>
|
|
3260
3756
|
*/
|
|
3261
3757
|
engine?: WorkflowEngine | string;
|
|
3262
3758
|
/**
|
|
3759
|
+
* @public
|
|
3263
3760
|
* <p>The workflow's definition.</p>
|
|
3264
3761
|
*/
|
|
3265
3762
|
definition?: string;
|
|
3266
3763
|
/**
|
|
3764
|
+
* @public
|
|
3267
3765
|
* <p>The path of the main definition file for the workflow.</p>
|
|
3268
3766
|
*/
|
|
3269
3767
|
main?: string;
|
|
3270
3768
|
/**
|
|
3769
|
+
* @public
|
|
3271
3770
|
* <p>The workflow's digest.</p>
|
|
3272
3771
|
*/
|
|
3273
3772
|
digest?: string;
|
|
3274
3773
|
/**
|
|
3774
|
+
* @public
|
|
3275
3775
|
* <p>The workflow's parameter template.</p>
|
|
3276
3776
|
*/
|
|
3277
3777
|
parameterTemplate?: Record<string, WorkflowParameter>;
|
|
3278
3778
|
/**
|
|
3779
|
+
* @public
|
|
3279
3780
|
* <p>The workflow's storage capacity in gigabytes.</p>
|
|
3280
3781
|
*/
|
|
3281
3782
|
storageCapacity?: number;
|
|
3282
3783
|
/**
|
|
3784
|
+
* @public
|
|
3283
3785
|
* <p>When the workflow was created.</p>
|
|
3284
3786
|
*/
|
|
3285
3787
|
creationTime?: Date;
|
|
3286
3788
|
/**
|
|
3789
|
+
* @public
|
|
3287
3790
|
* <p>The workflow's status message.</p>
|
|
3288
3791
|
*/
|
|
3289
3792
|
statusMessage?: string;
|
|
3290
3793
|
/**
|
|
3794
|
+
* @public
|
|
3291
3795
|
* <p>The workflow's tags.</p>
|
|
3292
3796
|
*/
|
|
3293
3797
|
tags?: Record<string, string>;
|
|
3294
3798
|
/**
|
|
3799
|
+
* @public
|
|
3295
3800
|
* <p>
|
|
3296
3801
|
* Gets metadata for workflow.
|
|
3297
3802
|
* </p>
|
|
3298
3803
|
*/
|
|
3299
3804
|
metadata?: Record<string, string>;
|
|
3300
3805
|
/**
|
|
3806
|
+
* @public
|
|
3301
3807
|
* <p>
|
|
3302
3808
|
* The computational accelerator specified to run the workflow. </p>
|
|
3303
3809
|
*/
|
|
@@ -3309,14 +3815,17 @@ export interface GetWorkflowResponse {
|
|
|
3309
3815
|
*/
|
|
3310
3816
|
export interface ImportReadSetFilter {
|
|
3311
3817
|
/**
|
|
3818
|
+
* @public
|
|
3312
3819
|
* <p>A status to filter on.</p>
|
|
3313
3820
|
*/
|
|
3314
3821
|
status?: ReadSetImportJobStatus | string;
|
|
3315
3822
|
/**
|
|
3823
|
+
* @public
|
|
3316
3824
|
* <p>The filter's start date.</p>
|
|
3317
3825
|
*/
|
|
3318
3826
|
createdAfter?: Date;
|
|
3319
3827
|
/**
|
|
3828
|
+
* @public
|
|
3320
3829
|
* <p>The filter's end date.</p>
|
|
3321
3830
|
*/
|
|
3322
3831
|
createdBefore?: Date;
|
|
@@ -3327,26 +3836,32 @@ export interface ImportReadSetFilter {
|
|
|
3327
3836
|
*/
|
|
3328
3837
|
export interface ImportReadSetJobItem {
|
|
3329
3838
|
/**
|
|
3839
|
+
* @public
|
|
3330
3840
|
* <p>The job's ID.</p>
|
|
3331
3841
|
*/
|
|
3332
3842
|
id: string | undefined;
|
|
3333
3843
|
/**
|
|
3844
|
+
* @public
|
|
3334
3845
|
* <p>The job's sequence store ID.</p>
|
|
3335
3846
|
*/
|
|
3336
3847
|
sequenceStoreId: string | undefined;
|
|
3337
3848
|
/**
|
|
3849
|
+
* @public
|
|
3338
3850
|
* <p>The job's service role ARN.</p>
|
|
3339
3851
|
*/
|
|
3340
3852
|
roleArn: string | undefined;
|
|
3341
3853
|
/**
|
|
3854
|
+
* @public
|
|
3342
3855
|
* <p>The job's status.</p>
|
|
3343
3856
|
*/
|
|
3344
3857
|
status: ReadSetImportJobStatus | string | undefined;
|
|
3345
3858
|
/**
|
|
3859
|
+
* @public
|
|
3346
3860
|
* <p>When the job was created.</p>
|
|
3347
3861
|
*/
|
|
3348
3862
|
creationTime: Date | undefined;
|
|
3349
3863
|
/**
|
|
3864
|
+
* @public
|
|
3350
3865
|
* <p>When the job completed.</p>
|
|
3351
3866
|
*/
|
|
3352
3867
|
completionTime?: Date;
|
|
@@ -3357,14 +3872,17 @@ export interface ImportReadSetJobItem {
|
|
|
3357
3872
|
*/
|
|
3358
3873
|
export interface ImportReferenceFilter {
|
|
3359
3874
|
/**
|
|
3875
|
+
* @public
|
|
3360
3876
|
* <p>A status to filter on.</p>
|
|
3361
3877
|
*/
|
|
3362
3878
|
status?: ReferenceImportJobStatus | string;
|
|
3363
3879
|
/**
|
|
3880
|
+
* @public
|
|
3364
3881
|
* <p>The filter's start date.</p>
|
|
3365
3882
|
*/
|
|
3366
3883
|
createdAfter?: Date;
|
|
3367
3884
|
/**
|
|
3885
|
+
* @public
|
|
3368
3886
|
* <p>The filter's end date.</p>
|
|
3369
3887
|
*/
|
|
3370
3888
|
createdBefore?: Date;
|
|
@@ -3375,26 +3893,32 @@ export interface ImportReferenceFilter {
|
|
|
3375
3893
|
*/
|
|
3376
3894
|
export interface ImportReferenceJobItem {
|
|
3377
3895
|
/**
|
|
3896
|
+
* @public
|
|
3378
3897
|
* <p>The job's ID.</p>
|
|
3379
3898
|
*/
|
|
3380
3899
|
id: string | undefined;
|
|
3381
3900
|
/**
|
|
3901
|
+
* @public
|
|
3382
3902
|
* <p>The job's reference store ID.</p>
|
|
3383
3903
|
*/
|
|
3384
3904
|
referenceStoreId: string | undefined;
|
|
3385
3905
|
/**
|
|
3906
|
+
* @public
|
|
3386
3907
|
* <p>The job's service role ARN.</p>
|
|
3387
3908
|
*/
|
|
3388
3909
|
roleArn: string | undefined;
|
|
3389
3910
|
/**
|
|
3911
|
+
* @public
|
|
3390
3912
|
* <p>The job's status.</p>
|
|
3391
3913
|
*/
|
|
3392
3914
|
status: ReferenceImportJobStatus | string | undefined;
|
|
3393
3915
|
/**
|
|
3916
|
+
* @public
|
|
3394
3917
|
* <p>When the job was created.</p>
|
|
3395
3918
|
*/
|
|
3396
3919
|
creationTime: Date | undefined;
|
|
3397
3920
|
/**
|
|
3921
|
+
* @public
|
|
3398
3922
|
* <p>When the job completed.</p>
|
|
3399
3923
|
*/
|
|
3400
3924
|
completionTime?: Date;
|
|
@@ -3404,18 +3928,21 @@ export interface ImportReferenceJobItem {
|
|
|
3404
3928
|
*/
|
|
3405
3929
|
export interface ListMultipartReadSetUploadsRequest {
|
|
3406
3930
|
/**
|
|
3931
|
+
* @public
|
|
3407
3932
|
* <p>
|
|
3408
3933
|
* The Sequence Store ID used for the multipart uploads.
|
|
3409
3934
|
* </p>
|
|
3410
3935
|
*/
|
|
3411
3936
|
sequenceStoreId: string | undefined;
|
|
3412
3937
|
/**
|
|
3938
|
+
* @public
|
|
3413
3939
|
* <p>
|
|
3414
3940
|
* The maximum number of multipart uploads returned in a page.
|
|
3415
3941
|
* </p>
|
|
3416
3942
|
*/
|
|
3417
3943
|
maxResults?: number;
|
|
3418
3944
|
/**
|
|
3945
|
+
* @public
|
|
3419
3946
|
* <p>
|
|
3420
3947
|
* Next token returned in the response of a previous ListMultipartReadSetUploads call. Used to get the next page of results.
|
|
3421
3948
|
* </p>
|
|
@@ -3430,66 +3957,77 @@ export interface ListMultipartReadSetUploadsRequest {
|
|
|
3430
3957
|
*/
|
|
3431
3958
|
export interface MultipartReadSetUploadListItem {
|
|
3432
3959
|
/**
|
|
3960
|
+
* @public
|
|
3433
3961
|
* <p>
|
|
3434
3962
|
* The sequence store ID used for the multipart upload.
|
|
3435
3963
|
* </p>
|
|
3436
3964
|
*/
|
|
3437
3965
|
sequenceStoreId: string | undefined;
|
|
3438
3966
|
/**
|
|
3967
|
+
* @public
|
|
3439
3968
|
* <p>
|
|
3440
3969
|
* The ID for the initiated multipart upload.
|
|
3441
3970
|
* </p>
|
|
3442
3971
|
*/
|
|
3443
3972
|
uploadId: string | undefined;
|
|
3444
3973
|
/**
|
|
3974
|
+
* @public
|
|
3445
3975
|
* <p>
|
|
3446
3976
|
* The type of file the read set originated from.
|
|
3447
3977
|
* </p>
|
|
3448
3978
|
*/
|
|
3449
3979
|
sourceFileType: FileType | string | undefined;
|
|
3450
3980
|
/**
|
|
3981
|
+
* @public
|
|
3451
3982
|
* <p>
|
|
3452
3983
|
* The read set source's subject ID.
|
|
3453
3984
|
* </p>
|
|
3454
3985
|
*/
|
|
3455
3986
|
subjectId: string | undefined;
|
|
3456
3987
|
/**
|
|
3988
|
+
* @public
|
|
3457
3989
|
* <p>
|
|
3458
3990
|
* The read set source's sample ID.
|
|
3459
3991
|
* </p>
|
|
3460
3992
|
*/
|
|
3461
3993
|
sampleId: string | undefined;
|
|
3462
3994
|
/**
|
|
3995
|
+
* @public
|
|
3463
3996
|
* <p>
|
|
3464
3997
|
* The source of an uploaded part.
|
|
3465
3998
|
* </p>
|
|
3466
3999
|
*/
|
|
3467
4000
|
generatedFrom: string | undefined;
|
|
3468
4001
|
/**
|
|
4002
|
+
* @public
|
|
3469
4003
|
* <p>
|
|
3470
4004
|
* The source's reference ARN.
|
|
3471
4005
|
* </p>
|
|
3472
4006
|
*/
|
|
3473
4007
|
referenceArn: string | undefined;
|
|
3474
4008
|
/**
|
|
4009
|
+
* @public
|
|
3475
4010
|
* <p>
|
|
3476
4011
|
* The name of a read set.
|
|
3477
4012
|
* </p>
|
|
3478
4013
|
*/
|
|
3479
4014
|
name?: string;
|
|
3480
4015
|
/**
|
|
4016
|
+
* @public
|
|
3481
4017
|
* <p>
|
|
3482
4018
|
* The description of a read set.
|
|
3483
4019
|
* </p>
|
|
3484
4020
|
*/
|
|
3485
4021
|
description?: string;
|
|
3486
4022
|
/**
|
|
4023
|
+
* @public
|
|
3487
4024
|
* <p>
|
|
3488
4025
|
* Any tags you wish to add to a read set.
|
|
3489
4026
|
* </p>
|
|
3490
4027
|
*/
|
|
3491
4028
|
tags?: Record<string, string>;
|
|
3492
4029
|
/**
|
|
4030
|
+
* @public
|
|
3493
4031
|
* <p>
|
|
3494
4032
|
* The time stamp for when a direct upload was created.
|
|
3495
4033
|
* </p>
|
|
@@ -3501,12 +4039,14 @@ export interface MultipartReadSetUploadListItem {
|
|
|
3501
4039
|
*/
|
|
3502
4040
|
export interface ListMultipartReadSetUploadsResponse {
|
|
3503
4041
|
/**
|
|
4042
|
+
* @public
|
|
3504
4043
|
* <p>
|
|
3505
4044
|
* Next token returned in the response of a previous ListMultipartReadSetUploads call. Used to get the next page of results.
|
|
3506
4045
|
* </p>
|
|
3507
4046
|
*/
|
|
3508
4047
|
nextToken?: string;
|
|
3509
4048
|
/**
|
|
4049
|
+
* @public
|
|
3510
4050
|
* <p>
|
|
3511
4051
|
* An array of multipart uploads.
|
|
3512
4052
|
* </p>
|
|
@@ -3518,18 +4058,22 @@ export interface ListMultipartReadSetUploadsResponse {
|
|
|
3518
4058
|
*/
|
|
3519
4059
|
export interface ListReadSetActivationJobsRequest {
|
|
3520
4060
|
/**
|
|
4061
|
+
* @public
|
|
3521
4062
|
* <p>The read set's sequence store ID.</p>
|
|
3522
4063
|
*/
|
|
3523
4064
|
sequenceStoreId: string | undefined;
|
|
3524
4065
|
/**
|
|
4066
|
+
* @public
|
|
3525
4067
|
* <p>The maximum number of read set activation jobs to return in one page of results.</p>
|
|
3526
4068
|
*/
|
|
3527
4069
|
maxResults?: number;
|
|
3528
4070
|
/**
|
|
4071
|
+
* @public
|
|
3529
4072
|
* <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
|
|
3530
4073
|
*/
|
|
3531
4074
|
nextToken?: string;
|
|
3532
4075
|
/**
|
|
4076
|
+
* @public
|
|
3533
4077
|
* <p>A filter to apply to the list.</p>
|
|
3534
4078
|
*/
|
|
3535
4079
|
filter?: ActivateReadSetFilter;
|
|
@@ -3539,10 +4083,12 @@ export interface ListReadSetActivationJobsRequest {
|
|
|
3539
4083
|
*/
|
|
3540
4084
|
export interface ListReadSetActivationJobsResponse {
|
|
3541
4085
|
/**
|
|
4086
|
+
* @public
|
|
3542
4087
|
* <p>A pagination token that's included if more results are available.</p>
|
|
3543
4088
|
*/
|
|
3544
4089
|
nextToken?: string;
|
|
3545
4090
|
/**
|
|
4091
|
+
* @public
|
|
3546
4092
|
* <p>A list of jobs.</p>
|
|
3547
4093
|
*/
|
|
3548
4094
|
activationJobs?: ActivateReadSetJobItem[];
|
|
@@ -3552,18 +4098,22 @@ export interface ListReadSetActivationJobsResponse {
|
|
|
3552
4098
|
*/
|
|
3553
4099
|
export interface ListReadSetExportJobsRequest {
|
|
3554
4100
|
/**
|
|
4101
|
+
* @public
|
|
3555
4102
|
* <p>The jobs' sequence store ID.</p>
|
|
3556
4103
|
*/
|
|
3557
4104
|
sequenceStoreId: string | undefined;
|
|
3558
4105
|
/**
|
|
4106
|
+
* @public
|
|
3559
4107
|
* <p>The maximum number of jobs to return in one page of results.</p>
|
|
3560
4108
|
*/
|
|
3561
4109
|
maxResults?: number;
|
|
3562
4110
|
/**
|
|
4111
|
+
* @public
|
|
3563
4112
|
* <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
|
|
3564
4113
|
*/
|
|
3565
4114
|
nextToken?: string;
|
|
3566
4115
|
/**
|
|
4116
|
+
* @public
|
|
3567
4117
|
* <p>A filter to apply to the list.</p>
|
|
3568
4118
|
*/
|
|
3569
4119
|
filter?: ExportReadSetFilter;
|
|
@@ -3573,10 +4123,12 @@ export interface ListReadSetExportJobsRequest {
|
|
|
3573
4123
|
*/
|
|
3574
4124
|
export interface ListReadSetExportJobsResponse {
|
|
3575
4125
|
/**
|
|
4126
|
+
* @public
|
|
3576
4127
|
* <p>A pagination token that's included if more results are available.</p>
|
|
3577
4128
|
*/
|
|
3578
4129
|
nextToken?: string;
|
|
3579
4130
|
/**
|
|
4131
|
+
* @public
|
|
3580
4132
|
* <p>A list of jobs.</p>
|
|
3581
4133
|
*/
|
|
3582
4134
|
exportJobs?: ExportReadSetJobDetail[];
|
|
@@ -3586,18 +4138,22 @@ export interface ListReadSetExportJobsResponse {
|
|
|
3586
4138
|
*/
|
|
3587
4139
|
export interface ListReadSetImportJobsRequest {
|
|
3588
4140
|
/**
|
|
4141
|
+
* @public
|
|
3589
4142
|
* <p>The maximum number of jobs to return in one page of results.</p>
|
|
3590
4143
|
*/
|
|
3591
4144
|
maxResults?: number;
|
|
3592
4145
|
/**
|
|
4146
|
+
* @public
|
|
3593
4147
|
* <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
|
|
3594
4148
|
*/
|
|
3595
4149
|
nextToken?: string;
|
|
3596
4150
|
/**
|
|
4151
|
+
* @public
|
|
3597
4152
|
* <p>The jobs' sequence store ID.</p>
|
|
3598
4153
|
*/
|
|
3599
4154
|
sequenceStoreId: string | undefined;
|
|
3600
4155
|
/**
|
|
4156
|
+
* @public
|
|
3601
4157
|
* <p>A filter to apply to the list.</p>
|
|
3602
4158
|
*/
|
|
3603
4159
|
filter?: ImportReadSetFilter;
|
|
@@ -3607,10 +4163,12 @@ export interface ListReadSetImportJobsRequest {
|
|
|
3607
4163
|
*/
|
|
3608
4164
|
export interface ListReadSetImportJobsResponse {
|
|
3609
4165
|
/**
|
|
4166
|
+
* @public
|
|
3610
4167
|
* <p>A pagination token that's included if more results are available.</p>
|
|
3611
4168
|
*/
|
|
3612
4169
|
nextToken?: string;
|
|
3613
4170
|
/**
|
|
4171
|
+
* @public
|
|
3614
4172
|
* <p>A list of jobs.</p>
|
|
3615
4173
|
*/
|
|
3616
4174
|
importJobs?: ImportReadSetJobItem[];
|
|
@@ -3621,61 +4179,80 @@ export interface ListReadSetImportJobsResponse {
|
|
|
3621
4179
|
*/
|
|
3622
4180
|
export interface ReadSetFilter {
|
|
3623
4181
|
/**
|
|
4182
|
+
* @public
|
|
3624
4183
|
* <p>A name to filter on.</p>
|
|
3625
4184
|
*/
|
|
3626
4185
|
name?: string;
|
|
3627
4186
|
/**
|
|
4187
|
+
* @public
|
|
3628
4188
|
* <p>A status to filter on.</p>
|
|
3629
4189
|
*/
|
|
3630
4190
|
status?: ReadSetStatus | string;
|
|
3631
4191
|
/**
|
|
4192
|
+
* @public
|
|
3632
4193
|
* <p>A genome reference ARN to filter on.</p>
|
|
3633
4194
|
*/
|
|
3634
4195
|
referenceArn?: string;
|
|
3635
4196
|
/**
|
|
4197
|
+
* @public
|
|
3636
4198
|
* <p>The filter's start date.</p>
|
|
3637
4199
|
*/
|
|
3638
4200
|
createdAfter?: Date;
|
|
3639
4201
|
/**
|
|
4202
|
+
* @public
|
|
3640
4203
|
* <p>The filter's end date.</p>
|
|
3641
4204
|
*/
|
|
3642
4205
|
createdBefore?: Date;
|
|
3643
4206
|
/**
|
|
4207
|
+
* @public
|
|
3644
4208
|
* <p>
|
|
3645
4209
|
* The read set source's sample ID.
|
|
3646
4210
|
* </p>
|
|
3647
4211
|
*/
|
|
3648
4212
|
sampleId?: string;
|
|
3649
4213
|
/**
|
|
4214
|
+
* @public
|
|
3650
4215
|
* <p>
|
|
3651
4216
|
* The read set source's subject ID.
|
|
3652
4217
|
* </p>
|
|
3653
4218
|
*/
|
|
3654
4219
|
subjectId?: string;
|
|
3655
4220
|
/**
|
|
4221
|
+
* @public
|
|
3656
4222
|
* <p>
|
|
3657
4223
|
* Where the source originated.
|
|
3658
4224
|
* </p>
|
|
3659
4225
|
*/
|
|
3660
4226
|
generatedFrom?: string;
|
|
4227
|
+
/**
|
|
4228
|
+
* @public
|
|
4229
|
+
* <p>
|
|
4230
|
+
* The creation type of the read set.
|
|
4231
|
+
* </p>
|
|
4232
|
+
*/
|
|
4233
|
+
creationType?: CreationType | string;
|
|
3661
4234
|
}
|
|
3662
4235
|
/**
|
|
3663
4236
|
* @public
|
|
3664
4237
|
*/
|
|
3665
4238
|
export interface ListReadSetsRequest {
|
|
3666
4239
|
/**
|
|
4240
|
+
* @public
|
|
3667
4241
|
* <p>The jobs' sequence store ID.</p>
|
|
3668
4242
|
*/
|
|
3669
4243
|
sequenceStoreId: string | undefined;
|
|
3670
4244
|
/**
|
|
4245
|
+
* @public
|
|
3671
4246
|
* <p>The maximum number of read sets to return in one page of results.</p>
|
|
3672
4247
|
*/
|
|
3673
4248
|
maxResults?: number;
|
|
3674
4249
|
/**
|
|
4250
|
+
* @public
|
|
3675
4251
|
* <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
|
|
3676
4252
|
*/
|
|
3677
4253
|
nextToken?: string;
|
|
3678
4254
|
/**
|
|
4255
|
+
* @public
|
|
3679
4256
|
* <p>A filter to apply to the list.</p>
|
|
3680
4257
|
*/
|
|
3681
4258
|
filter?: ReadSetFilter;
|
|
@@ -3686,69 +4263,91 @@ export interface ListReadSetsRequest {
|
|
|
3686
4263
|
*/
|
|
3687
4264
|
export interface ReadSetListItem {
|
|
3688
4265
|
/**
|
|
4266
|
+
* @public
|
|
3689
4267
|
* <p>The read set's ID.</p>
|
|
3690
4268
|
*/
|
|
3691
4269
|
id: string | undefined;
|
|
3692
4270
|
/**
|
|
4271
|
+
* @public
|
|
3693
4272
|
* <p>The read set's ARN.</p>
|
|
3694
4273
|
*/
|
|
3695
4274
|
arn: string | undefined;
|
|
3696
4275
|
/**
|
|
4276
|
+
* @public
|
|
3697
4277
|
* <p>The read set's sequence store ID.</p>
|
|
3698
4278
|
*/
|
|
3699
4279
|
sequenceStoreId: string | undefined;
|
|
3700
4280
|
/**
|
|
4281
|
+
* @public
|
|
3701
4282
|
* <p>The read set's subject ID.</p>
|
|
3702
4283
|
*/
|
|
3703
4284
|
subjectId?: string;
|
|
3704
4285
|
/**
|
|
4286
|
+
* @public
|
|
3705
4287
|
* <p>The read set's sample ID.</p>
|
|
3706
4288
|
*/
|
|
3707
4289
|
sampleId?: string;
|
|
3708
4290
|
/**
|
|
4291
|
+
* @public
|
|
3709
4292
|
* <p>The read set's status.</p>
|
|
3710
4293
|
*/
|
|
3711
4294
|
status: ReadSetStatus | string | undefined;
|
|
3712
4295
|
/**
|
|
4296
|
+
* @public
|
|
3713
4297
|
* <p>The read set's name.</p>
|
|
3714
4298
|
*/
|
|
3715
4299
|
name?: string;
|
|
3716
4300
|
/**
|
|
4301
|
+
* @public
|
|
3717
4302
|
* <p>The read set's description.</p>
|
|
3718
4303
|
*/
|
|
3719
4304
|
description?: string;
|
|
3720
4305
|
/**
|
|
4306
|
+
* @public
|
|
3721
4307
|
* <p>The read set's genome reference ARN.</p>
|
|
3722
4308
|
*/
|
|
3723
4309
|
referenceArn?: string;
|
|
3724
4310
|
/**
|
|
4311
|
+
* @public
|
|
3725
4312
|
* <p>The read set's file type.</p>
|
|
3726
4313
|
*/
|
|
3727
4314
|
fileType: FileType | string | undefined;
|
|
3728
4315
|
/**
|
|
4316
|
+
* @public
|
|
3729
4317
|
* <p>Details about a sequence.</p>
|
|
3730
4318
|
*/
|
|
3731
4319
|
sequenceInformation?: SequenceInformation;
|
|
3732
4320
|
/**
|
|
4321
|
+
* @public
|
|
3733
4322
|
* <p>When the read set was created.</p>
|
|
3734
4323
|
*/
|
|
3735
4324
|
creationTime: Date | undefined;
|
|
3736
4325
|
/**
|
|
4326
|
+
* @public
|
|
3737
4327
|
* <p>
|
|
3738
4328
|
* The status for a read set. It provides more detail as to why the read set has a status.
|
|
3739
4329
|
* </p>
|
|
3740
4330
|
*/
|
|
3741
4331
|
statusMessage?: string;
|
|
4332
|
+
/**
|
|
4333
|
+
* @public
|
|
4334
|
+
* <p>
|
|
4335
|
+
* The creation type of the read set.
|
|
4336
|
+
* </p>
|
|
4337
|
+
*/
|
|
4338
|
+
creationType?: CreationType | string;
|
|
3742
4339
|
}
|
|
3743
4340
|
/**
|
|
3744
4341
|
* @public
|
|
3745
4342
|
*/
|
|
3746
4343
|
export interface ListReadSetsResponse {
|
|
3747
4344
|
/**
|
|
4345
|
+
* @public
|
|
3748
4346
|
* <p>A pagination token that's included if more results are available.</p>
|
|
3749
4347
|
*/
|
|
3750
4348
|
nextToken?: string;
|
|
3751
4349
|
/**
|
|
4350
|
+
* @public
|
|
3752
4351
|
* <p>A list of read sets.</p>
|
|
3753
4352
|
*/
|
|
3754
4353
|
readSets: ReadSetListItem[] | undefined;
|
|
@@ -3761,12 +4360,14 @@ export interface ListReadSetsResponse {
|
|
|
3761
4360
|
*/
|
|
3762
4361
|
export interface ReadSetUploadPartListFilter {
|
|
3763
4362
|
/**
|
|
4363
|
+
* @public
|
|
3764
4364
|
* <p>
|
|
3765
4365
|
* Filters for read set uploads after a specified time.
|
|
3766
4366
|
* </p>
|
|
3767
4367
|
*/
|
|
3768
4368
|
createdAfter?: Date;
|
|
3769
4369
|
/**
|
|
4370
|
+
* @public
|
|
3770
4371
|
* <p>
|
|
3771
4372
|
* Filters for read set part uploads before a specified time.
|
|
3772
4373
|
* </p>
|
|
@@ -3778,36 +4379,42 @@ export interface ReadSetUploadPartListFilter {
|
|
|
3778
4379
|
*/
|
|
3779
4380
|
export interface ListReadSetUploadPartsRequest {
|
|
3780
4381
|
/**
|
|
4382
|
+
* @public
|
|
3781
4383
|
* <p>
|
|
3782
4384
|
* The Sequence Store ID used for the multipart uploads.
|
|
3783
4385
|
* </p>
|
|
3784
4386
|
*/
|
|
3785
4387
|
sequenceStoreId: string | undefined;
|
|
3786
4388
|
/**
|
|
4389
|
+
* @public
|
|
3787
4390
|
* <p>
|
|
3788
4391
|
* The ID for the initiated multipart upload.
|
|
3789
4392
|
* </p>
|
|
3790
4393
|
*/
|
|
3791
4394
|
uploadId: string | undefined;
|
|
3792
4395
|
/**
|
|
4396
|
+
* @public
|
|
3793
4397
|
* <p>
|
|
3794
4398
|
* The source file for the upload part.
|
|
3795
4399
|
* </p>
|
|
3796
4400
|
*/
|
|
3797
4401
|
partSource: ReadSetPartSource | string | undefined;
|
|
3798
4402
|
/**
|
|
4403
|
+
* @public
|
|
3799
4404
|
* <p>
|
|
3800
4405
|
* The maximum number of read set upload parts returned in a page.
|
|
3801
4406
|
* </p>
|
|
3802
4407
|
*/
|
|
3803
4408
|
maxResults?: number;
|
|
3804
4409
|
/**
|
|
4410
|
+
* @public
|
|
3805
4411
|
* <p>
|
|
3806
4412
|
* Next token returned in the response of a previous ListReadSetUploadPartsRequest call. Used to get the next page of results.
|
|
3807
4413
|
* </p>
|
|
3808
4414
|
*/
|
|
3809
4415
|
nextToken?: string;
|
|
3810
4416
|
/**
|
|
4417
|
+
* @public
|
|
3811
4418
|
* <p>
|
|
3812
4419
|
* Attributes used to filter for a specific subset of read set part uploads.
|
|
3813
4420
|
* </p>
|
|
@@ -3822,36 +4429,42 @@ export interface ListReadSetUploadPartsRequest {
|
|
|
3822
4429
|
*/
|
|
3823
4430
|
export interface ReadSetUploadPartListItem {
|
|
3824
4431
|
/**
|
|
4432
|
+
* @public
|
|
3825
4433
|
* <p>
|
|
3826
4434
|
* The number identifying the part in an upload.
|
|
3827
4435
|
* </p>
|
|
3828
4436
|
*/
|
|
3829
4437
|
partNumber: number | undefined;
|
|
3830
4438
|
/**
|
|
4439
|
+
* @public
|
|
3831
4440
|
* <p>
|
|
3832
4441
|
* The size of the the part in an upload.
|
|
3833
4442
|
* </p>
|
|
3834
4443
|
*/
|
|
3835
4444
|
partSize: number | undefined;
|
|
3836
4445
|
/**
|
|
4446
|
+
* @public
|
|
3837
4447
|
* <p>
|
|
3838
4448
|
* The origin of the part being direct uploaded.
|
|
3839
4449
|
* </p>
|
|
3840
4450
|
*/
|
|
3841
4451
|
partSource: ReadSetPartSource | string | undefined;
|
|
3842
4452
|
/**
|
|
4453
|
+
* @public
|
|
3843
4454
|
* <p>
|
|
3844
4455
|
* A unique identifier used to confirm that parts are being added to the correct upload.
|
|
3845
4456
|
* </p>
|
|
3846
4457
|
*/
|
|
3847
4458
|
checksum: string | undefined;
|
|
3848
4459
|
/**
|
|
4460
|
+
* @public
|
|
3849
4461
|
* <p>
|
|
3850
4462
|
* The time stamp for when a direct upload was created.
|
|
3851
4463
|
* </p>
|
|
3852
4464
|
*/
|
|
3853
4465
|
creationTime?: Date;
|
|
3854
4466
|
/**
|
|
4467
|
+
* @public
|
|
3855
4468
|
* <p>
|
|
3856
4469
|
* The time stamp for the most recent update to an uploaded part.
|
|
3857
4470
|
* </p>
|
|
@@ -3863,12 +4476,14 @@ export interface ReadSetUploadPartListItem {
|
|
|
3863
4476
|
*/
|
|
3864
4477
|
export interface ListReadSetUploadPartsResponse {
|
|
3865
4478
|
/**
|
|
4479
|
+
* @public
|
|
3866
4480
|
* <p>
|
|
3867
4481
|
* Next token returned in the response of a previous ListReadSetUploadParts call. Used to get the next page of results.
|
|
3868
4482
|
* </p>
|
|
3869
4483
|
*/
|
|
3870
4484
|
nextToken?: string;
|
|
3871
4485
|
/**
|
|
4486
|
+
* @public
|
|
3872
4487
|
* <p>
|
|
3873
4488
|
* An array of upload parts.
|
|
3874
4489
|
* </p>
|
|
@@ -3880,18 +4495,22 @@ export interface ListReadSetUploadPartsResponse {
|
|
|
3880
4495
|
*/
|
|
3881
4496
|
export interface ListReferenceImportJobsRequest {
|
|
3882
4497
|
/**
|
|
4498
|
+
* @public
|
|
3883
4499
|
* <p>The maximum number of jobs to return in one page of results.</p>
|
|
3884
4500
|
*/
|
|
3885
4501
|
maxResults?: number;
|
|
3886
4502
|
/**
|
|
4503
|
+
* @public
|
|
3887
4504
|
* <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
|
|
3888
4505
|
*/
|
|
3889
4506
|
nextToken?: string;
|
|
3890
4507
|
/**
|
|
4508
|
+
* @public
|
|
3891
4509
|
* <p>The job's reference store ID.</p>
|
|
3892
4510
|
*/
|
|
3893
4511
|
referenceStoreId: string | undefined;
|
|
3894
4512
|
/**
|
|
4513
|
+
* @public
|
|
3895
4514
|
* <p>A filter to apply to the list.</p>
|
|
3896
4515
|
*/
|
|
3897
4516
|
filter?: ImportReferenceFilter;
|
|
@@ -3901,10 +4520,12 @@ export interface ListReferenceImportJobsRequest {
|
|
|
3901
4520
|
*/
|
|
3902
4521
|
export interface ListReferenceImportJobsResponse {
|
|
3903
4522
|
/**
|
|
4523
|
+
* @public
|
|
3904
4524
|
* <p>A pagination token that's included if more results are available.</p>
|
|
3905
4525
|
*/
|
|
3906
4526
|
nextToken?: string;
|
|
3907
4527
|
/**
|
|
4528
|
+
* @public
|
|
3908
4529
|
* <p>A lis of jobs.</p>
|
|
3909
4530
|
*/
|
|
3910
4531
|
importJobs?: ImportReferenceJobItem[];
|
|
@@ -3915,18 +4536,22 @@ export interface ListReferenceImportJobsResponse {
|
|
|
3915
4536
|
*/
|
|
3916
4537
|
export interface ReferenceFilter {
|
|
3917
4538
|
/**
|
|
4539
|
+
* @public
|
|
3918
4540
|
* <p>A name to filter on.</p>
|
|
3919
4541
|
*/
|
|
3920
4542
|
name?: string;
|
|
3921
4543
|
/**
|
|
4544
|
+
* @public
|
|
3922
4545
|
* <p>An MD5 checksum to filter on.</p>
|
|
3923
4546
|
*/
|
|
3924
4547
|
md5?: string;
|
|
3925
4548
|
/**
|
|
4549
|
+
* @public
|
|
3926
4550
|
* <p>The filter's start date.</p>
|
|
3927
4551
|
*/
|
|
3928
4552
|
createdAfter?: Date;
|
|
3929
4553
|
/**
|
|
4554
|
+
* @public
|
|
3930
4555
|
* <p>The filter's end date.</p>
|
|
3931
4556
|
*/
|
|
3932
4557
|
createdBefore?: Date;
|
|
@@ -3936,18 +4561,22 @@ export interface ReferenceFilter {
|
|
|
3936
4561
|
*/
|
|
3937
4562
|
export interface ListReferencesRequest {
|
|
3938
4563
|
/**
|
|
4564
|
+
* @public
|
|
3939
4565
|
* <p>The references' reference store ID.</p>
|
|
3940
4566
|
*/
|
|
3941
4567
|
referenceStoreId: string | undefined;
|
|
3942
4568
|
/**
|
|
4569
|
+
* @public
|
|
3943
4570
|
* <p>The maximum number of references to return in one page of results.</p>
|
|
3944
4571
|
*/
|
|
3945
4572
|
maxResults?: number;
|
|
3946
4573
|
/**
|
|
4574
|
+
* @public
|
|
3947
4575
|
* <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
|
|
3948
4576
|
*/
|
|
3949
4577
|
nextToken?: string;
|
|
3950
4578
|
/**
|
|
4579
|
+
* @public
|
|
3951
4580
|
* <p>A filter to apply to the list.</p>
|
|
3952
4581
|
*/
|
|
3953
4582
|
filter?: ReferenceFilter;
|
|
@@ -3958,38 +4587,47 @@ export interface ListReferencesRequest {
|
|
|
3958
4587
|
*/
|
|
3959
4588
|
export interface ReferenceListItem {
|
|
3960
4589
|
/**
|
|
4590
|
+
* @public
|
|
3961
4591
|
* <p>The reference's ID.</p>
|
|
3962
4592
|
*/
|
|
3963
4593
|
id: string | undefined;
|
|
3964
4594
|
/**
|
|
4595
|
+
* @public
|
|
3965
4596
|
* <p>The reference's ARN.</p>
|
|
3966
4597
|
*/
|
|
3967
4598
|
arn: string | undefined;
|
|
3968
4599
|
/**
|
|
4600
|
+
* @public
|
|
3969
4601
|
* <p>The reference's store ID.</p>
|
|
3970
4602
|
*/
|
|
3971
4603
|
referenceStoreId: string | undefined;
|
|
3972
4604
|
/**
|
|
4605
|
+
* @public
|
|
3973
4606
|
* <p>The reference's MD5 checksum.</p>
|
|
3974
4607
|
*/
|
|
3975
4608
|
md5: string | undefined;
|
|
3976
4609
|
/**
|
|
4610
|
+
* @public
|
|
3977
4611
|
* <p>The reference's status.</p>
|
|
3978
4612
|
*/
|
|
3979
4613
|
status?: ReferenceStatus | string;
|
|
3980
4614
|
/**
|
|
4615
|
+
* @public
|
|
3981
4616
|
* <p>The reference's name.</p>
|
|
3982
4617
|
*/
|
|
3983
4618
|
name?: string;
|
|
3984
4619
|
/**
|
|
4620
|
+
* @public
|
|
3985
4621
|
* <p>The reference's description.</p>
|
|
3986
4622
|
*/
|
|
3987
4623
|
description?: string;
|
|
3988
4624
|
/**
|
|
4625
|
+
* @public
|
|
3989
4626
|
* <p>When the reference was created.</p>
|
|
3990
4627
|
*/
|
|
3991
4628
|
creationTime: Date | undefined;
|
|
3992
4629
|
/**
|
|
4630
|
+
* @public
|
|
3993
4631
|
* <p>When the reference was updated.</p>
|
|
3994
4632
|
*/
|
|
3995
4633
|
updateTime: Date | undefined;
|
|
@@ -3999,10 +4637,12 @@ export interface ReferenceListItem {
|
|
|
3999
4637
|
*/
|
|
4000
4638
|
export interface ListReferencesResponse {
|
|
4001
4639
|
/**
|
|
4640
|
+
* @public
|
|
4002
4641
|
* <p>A pagination token that's included if more results are available.</p>
|
|
4003
4642
|
*/
|
|
4004
4643
|
nextToken?: string;
|
|
4005
4644
|
/**
|
|
4645
|
+
* @public
|
|
4006
4646
|
* <p>A list of references.</p>
|
|
4007
4647
|
*/
|
|
4008
4648
|
references: ReferenceListItem[] | undefined;
|
|
@@ -4013,14 +4653,17 @@ export interface ListReferencesResponse {
|
|
|
4013
4653
|
*/
|
|
4014
4654
|
export interface ReferenceStoreFilter {
|
|
4015
4655
|
/**
|
|
4656
|
+
* @public
|
|
4016
4657
|
* <p>The name to filter on.</p>
|
|
4017
4658
|
*/
|
|
4018
4659
|
name?: string;
|
|
4019
4660
|
/**
|
|
4661
|
+
* @public
|
|
4020
4662
|
* <p>The filter's start date.</p>
|
|
4021
4663
|
*/
|
|
4022
4664
|
createdAfter?: Date;
|
|
4023
4665
|
/**
|
|
4666
|
+
* @public
|
|
4024
4667
|
* <p>The filter's end date.</p>
|
|
4025
4668
|
*/
|
|
4026
4669
|
createdBefore?: Date;
|
|
@@ -4030,14 +4673,17 @@ export interface ReferenceStoreFilter {
|
|
|
4030
4673
|
*/
|
|
4031
4674
|
export interface ListReferenceStoresRequest {
|
|
4032
4675
|
/**
|
|
4676
|
+
* @public
|
|
4033
4677
|
* <p>The maximum number of stores to return in one page of results.</p>
|
|
4034
4678
|
*/
|
|
4035
4679
|
maxResults?: number;
|
|
4036
4680
|
/**
|
|
4681
|
+
* @public
|
|
4037
4682
|
* <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
|
|
4038
4683
|
*/
|
|
4039
4684
|
nextToken?: string;
|
|
4040
4685
|
/**
|
|
4686
|
+
* @public
|
|
4041
4687
|
* <p>A filter to apply to the list.</p>
|
|
4042
4688
|
*/
|
|
4043
4689
|
filter?: ReferenceStoreFilter;
|
|
@@ -4048,26 +4694,32 @@ export interface ListReferenceStoresRequest {
|
|
|
4048
4694
|
*/
|
|
4049
4695
|
export interface ReferenceStoreDetail {
|
|
4050
4696
|
/**
|
|
4697
|
+
* @public
|
|
4051
4698
|
* <p>The store's ARN.</p>
|
|
4052
4699
|
*/
|
|
4053
4700
|
arn: string | undefined;
|
|
4054
4701
|
/**
|
|
4702
|
+
* @public
|
|
4055
4703
|
* <p>The store's ID.</p>
|
|
4056
4704
|
*/
|
|
4057
4705
|
id: string | undefined;
|
|
4058
4706
|
/**
|
|
4707
|
+
* @public
|
|
4059
4708
|
* <p>The store's name.</p>
|
|
4060
4709
|
*/
|
|
4061
4710
|
name?: string;
|
|
4062
4711
|
/**
|
|
4712
|
+
* @public
|
|
4063
4713
|
* <p>The store's description.</p>
|
|
4064
4714
|
*/
|
|
4065
4715
|
description?: string;
|
|
4066
4716
|
/**
|
|
4717
|
+
* @public
|
|
4067
4718
|
* <p>The store's server-side encryption (SSE) settings.</p>
|
|
4068
4719
|
*/
|
|
4069
4720
|
sseConfig?: SseConfig;
|
|
4070
4721
|
/**
|
|
4722
|
+
* @public
|
|
4071
4723
|
* <p>When the store was created.</p>
|
|
4072
4724
|
*/
|
|
4073
4725
|
creationTime: Date | undefined;
|
|
@@ -4077,10 +4729,12 @@ export interface ReferenceStoreDetail {
|
|
|
4077
4729
|
*/
|
|
4078
4730
|
export interface ListReferenceStoresResponse {
|
|
4079
4731
|
/**
|
|
4732
|
+
* @public
|
|
4080
4733
|
* <p>A pagination token that's included if more results are available.</p>
|
|
4081
4734
|
*/
|
|
4082
4735
|
nextToken?: string;
|
|
4083
4736
|
/**
|
|
4737
|
+
* @public
|
|
4084
4738
|
* <p>A list of reference stores.</p>
|
|
4085
4739
|
*/
|
|
4086
4740
|
referenceStores: ReferenceStoreDetail[] | undefined;
|
|
@@ -4090,14 +4744,17 @@ export interface ListReferenceStoresResponse {
|
|
|
4090
4744
|
*/
|
|
4091
4745
|
export interface ListRunGroupsRequest {
|
|
4092
4746
|
/**
|
|
4747
|
+
* @public
|
|
4093
4748
|
* <p>The run groups' name.</p>
|
|
4094
4749
|
*/
|
|
4095
4750
|
name?: string;
|
|
4096
4751
|
/**
|
|
4752
|
+
* @public
|
|
4097
4753
|
* <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
|
|
4098
4754
|
*/
|
|
4099
4755
|
startingToken?: string;
|
|
4100
4756
|
/**
|
|
4757
|
+
* @public
|
|
4101
4758
|
* <p>The maximum number of run groups to return in one page of results.</p>
|
|
4102
4759
|
*/
|
|
4103
4760
|
maxResults?: number;
|
|
@@ -4108,34 +4765,42 @@ export interface ListRunGroupsRequest {
|
|
|
4108
4765
|
*/
|
|
4109
4766
|
export interface RunGroupListItem {
|
|
4110
4767
|
/**
|
|
4768
|
+
* @public
|
|
4111
4769
|
* <p>The group's ARN.</p>
|
|
4112
4770
|
*/
|
|
4113
4771
|
arn?: string;
|
|
4114
4772
|
/**
|
|
4773
|
+
* @public
|
|
4115
4774
|
* <p>The group's ID.</p>
|
|
4116
4775
|
*/
|
|
4117
4776
|
id?: string;
|
|
4118
4777
|
/**
|
|
4778
|
+
* @public
|
|
4119
4779
|
* <p>The group's name.</p>
|
|
4120
4780
|
*/
|
|
4121
4781
|
name?: string;
|
|
4122
4782
|
/**
|
|
4783
|
+
* @public
|
|
4123
4784
|
* <p>The group's maximum CPU count setting.</p>
|
|
4124
4785
|
*/
|
|
4125
4786
|
maxCpus?: number;
|
|
4126
4787
|
/**
|
|
4788
|
+
* @public
|
|
4127
4789
|
* <p>The group's maximum concurrent run setting.</p>
|
|
4128
4790
|
*/
|
|
4129
4791
|
maxRuns?: number;
|
|
4130
4792
|
/**
|
|
4793
|
+
* @public
|
|
4131
4794
|
* <p>The group's maximum duration setting in minutes.</p>
|
|
4132
4795
|
*/
|
|
4133
4796
|
maxDuration?: number;
|
|
4134
4797
|
/**
|
|
4798
|
+
* @public
|
|
4135
4799
|
* <p>When the group was created.</p>
|
|
4136
4800
|
*/
|
|
4137
4801
|
creationTime?: Date;
|
|
4138
4802
|
/**
|
|
4803
|
+
* @public
|
|
4139
4804
|
* <p>
|
|
4140
4805
|
* The maximum GPUs that can be used by a run group.
|
|
4141
4806
|
* </p>
|
|
@@ -4147,10 +4812,12 @@ export interface RunGroupListItem {
|
|
|
4147
4812
|
*/
|
|
4148
4813
|
export interface ListRunGroupsResponse {
|
|
4149
4814
|
/**
|
|
4815
|
+
* @public
|
|
4150
4816
|
* <p>A list of groups.</p>
|
|
4151
4817
|
*/
|
|
4152
4818
|
items?: RunGroupListItem[];
|
|
4153
4819
|
/**
|
|
4820
|
+
* @public
|
|
4154
4821
|
* <p>A pagination token that's included if more results are available.</p>
|
|
4155
4822
|
*/
|
|
4156
4823
|
nextToken?: string;
|
|
@@ -4160,22 +4827,27 @@ export interface ListRunGroupsResponse {
|
|
|
4160
4827
|
*/
|
|
4161
4828
|
export interface ListRunsRequest {
|
|
4162
4829
|
/**
|
|
4830
|
+
* @public
|
|
4163
4831
|
* <p>Filter the list by run name.</p>
|
|
4164
4832
|
*/
|
|
4165
4833
|
name?: string;
|
|
4166
4834
|
/**
|
|
4835
|
+
* @public
|
|
4167
4836
|
* <p>Filter the list by run group ID.</p>
|
|
4168
4837
|
*/
|
|
4169
4838
|
runGroupId?: string;
|
|
4170
4839
|
/**
|
|
4840
|
+
* @public
|
|
4171
4841
|
* <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
|
|
4172
4842
|
*/
|
|
4173
4843
|
startingToken?: string;
|
|
4174
4844
|
/**
|
|
4845
|
+
* @public
|
|
4175
4846
|
* <p>The maximum number of runs to return in one page of results.</p>
|
|
4176
4847
|
*/
|
|
4177
4848
|
maxResults?: number;
|
|
4178
4849
|
/**
|
|
4850
|
+
* @public
|
|
4179
4851
|
* <p>
|
|
4180
4852
|
* The status of a run.
|
|
4181
4853
|
* </p>
|
|
@@ -4188,42 +4860,52 @@ export interface ListRunsRequest {
|
|
|
4188
4860
|
*/
|
|
4189
4861
|
export interface RunListItem {
|
|
4190
4862
|
/**
|
|
4863
|
+
* @public
|
|
4191
4864
|
* <p>The run's ARN.</p>
|
|
4192
4865
|
*/
|
|
4193
4866
|
arn?: string;
|
|
4194
4867
|
/**
|
|
4868
|
+
* @public
|
|
4195
4869
|
* <p>The run's ID.</p>
|
|
4196
4870
|
*/
|
|
4197
4871
|
id?: string;
|
|
4198
4872
|
/**
|
|
4873
|
+
* @public
|
|
4199
4874
|
* <p>The run's status.</p>
|
|
4200
4875
|
*/
|
|
4201
4876
|
status?: RunStatus | string;
|
|
4202
4877
|
/**
|
|
4878
|
+
* @public
|
|
4203
4879
|
* <p>The run's workflow ID.</p>
|
|
4204
4880
|
*/
|
|
4205
4881
|
workflowId?: string;
|
|
4206
4882
|
/**
|
|
4883
|
+
* @public
|
|
4207
4884
|
* <p>The run's name.</p>
|
|
4208
4885
|
*/
|
|
4209
4886
|
name?: string;
|
|
4210
4887
|
/**
|
|
4888
|
+
* @public
|
|
4211
4889
|
* <p>The run's priority.</p>
|
|
4212
4890
|
*/
|
|
4213
4891
|
priority?: number;
|
|
4214
4892
|
/**
|
|
4893
|
+
* @public
|
|
4215
4894
|
* <p>The run's storage capacity.</p>
|
|
4216
4895
|
*/
|
|
4217
4896
|
storageCapacity?: number;
|
|
4218
4897
|
/**
|
|
4898
|
+
* @public
|
|
4219
4899
|
* <p>When the run was created.</p>
|
|
4220
4900
|
*/
|
|
4221
4901
|
creationTime?: Date;
|
|
4222
4902
|
/**
|
|
4903
|
+
* @public
|
|
4223
4904
|
* <p>When the run started.</p>
|
|
4224
4905
|
*/
|
|
4225
4906
|
startTime?: Date;
|
|
4226
4907
|
/**
|
|
4908
|
+
* @public
|
|
4227
4909
|
* <p>When the run stopped.</p>
|
|
4228
4910
|
*/
|
|
4229
4911
|
stopTime?: Date;
|
|
@@ -4233,10 +4915,12 @@ export interface RunListItem {
|
|
|
4233
4915
|
*/
|
|
4234
4916
|
export interface ListRunsResponse {
|
|
4235
4917
|
/**
|
|
4918
|
+
* @public
|
|
4236
4919
|
* <p>A list of runs.</p>
|
|
4237
4920
|
*/
|
|
4238
4921
|
items?: RunListItem[];
|
|
4239
4922
|
/**
|
|
4923
|
+
* @public
|
|
4240
4924
|
* <p>A pagination token that's included if more results are available.</p>
|
|
4241
4925
|
*/
|
|
4242
4926
|
nextToken?: string;
|
|
@@ -4246,18 +4930,22 @@ export interface ListRunsResponse {
|
|
|
4246
4930
|
*/
|
|
4247
4931
|
export interface ListRunTasksRequest {
|
|
4248
4932
|
/**
|
|
4933
|
+
* @public
|
|
4249
4934
|
* <p>The run's ID.</p>
|
|
4250
4935
|
*/
|
|
4251
4936
|
id: string | undefined;
|
|
4252
4937
|
/**
|
|
4938
|
+
* @public
|
|
4253
4939
|
* <p>Filter the list by status.</p>
|
|
4254
4940
|
*/
|
|
4255
4941
|
status?: TaskStatus | string;
|
|
4256
4942
|
/**
|
|
4943
|
+
* @public
|
|
4257
4944
|
* <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
|
|
4258
4945
|
*/
|
|
4259
4946
|
startingToken?: string;
|
|
4260
4947
|
/**
|
|
4948
|
+
* @public
|
|
4261
4949
|
* <p>The maximum number of run tasks to return in one page of results.</p>
|
|
4262
4950
|
*/
|
|
4263
4951
|
maxResults?: number;
|
|
@@ -4268,38 +4956,47 @@ export interface ListRunTasksRequest {
|
|
|
4268
4956
|
*/
|
|
4269
4957
|
export interface TaskListItem {
|
|
4270
4958
|
/**
|
|
4959
|
+
* @public
|
|
4271
4960
|
* <p>The task's ID.</p>
|
|
4272
4961
|
*/
|
|
4273
4962
|
taskId?: string;
|
|
4274
4963
|
/**
|
|
4964
|
+
* @public
|
|
4275
4965
|
* <p>The task's status.</p>
|
|
4276
4966
|
*/
|
|
4277
4967
|
status?: TaskStatus | string;
|
|
4278
4968
|
/**
|
|
4969
|
+
* @public
|
|
4279
4970
|
* <p>The task's name.</p>
|
|
4280
4971
|
*/
|
|
4281
4972
|
name?: string;
|
|
4282
4973
|
/**
|
|
4974
|
+
* @public
|
|
4283
4975
|
* <p>The task's CPU count.</p>
|
|
4284
4976
|
*/
|
|
4285
4977
|
cpus?: number;
|
|
4286
4978
|
/**
|
|
4979
|
+
* @public
|
|
4287
4980
|
* <p>The task's memory use in gigabyes.</p>
|
|
4288
4981
|
*/
|
|
4289
4982
|
memory?: number;
|
|
4290
4983
|
/**
|
|
4984
|
+
* @public
|
|
4291
4985
|
* <p>When the task was created.</p>
|
|
4292
4986
|
*/
|
|
4293
4987
|
creationTime?: Date;
|
|
4294
4988
|
/**
|
|
4989
|
+
* @public
|
|
4295
4990
|
* <p>When the task started.</p>
|
|
4296
4991
|
*/
|
|
4297
4992
|
startTime?: Date;
|
|
4298
4993
|
/**
|
|
4994
|
+
* @public
|
|
4299
4995
|
* <p>When the task stopped.</p>
|
|
4300
4996
|
*/
|
|
4301
4997
|
stopTime?: Date;
|
|
4302
4998
|
/**
|
|
4999
|
+
* @public
|
|
4303
5000
|
* <p>
|
|
4304
5001
|
* The number of Graphics Processing Units (GPU) specified for the task.
|
|
4305
5002
|
* </p>
|
|
@@ -4311,10 +5008,12 @@ export interface TaskListItem {
|
|
|
4311
5008
|
*/
|
|
4312
5009
|
export interface ListRunTasksResponse {
|
|
4313
5010
|
/**
|
|
5011
|
+
* @public
|
|
4314
5012
|
* <p>A list of tasks.</p>
|
|
4315
5013
|
*/
|
|
4316
5014
|
items?: TaskListItem[];
|
|
4317
5015
|
/**
|
|
5016
|
+
* @public
|
|
4318
5017
|
* <p>A pagination token that's included if more results are available.</p>
|
|
4319
5018
|
*/
|
|
4320
5019
|
nextToken?: string;
|
|
@@ -4325,14 +5024,17 @@ export interface ListRunTasksResponse {
|
|
|
4325
5024
|
*/
|
|
4326
5025
|
export interface SequenceStoreFilter {
|
|
4327
5026
|
/**
|
|
5027
|
+
* @public
|
|
4328
5028
|
* <p>A name to filter on.</p>
|
|
4329
5029
|
*/
|
|
4330
5030
|
name?: string;
|
|
4331
5031
|
/**
|
|
5032
|
+
* @public
|
|
4332
5033
|
* <p>The filter's start date.</p>
|
|
4333
5034
|
*/
|
|
4334
5035
|
createdAfter?: Date;
|
|
4335
5036
|
/**
|
|
5037
|
+
* @public
|
|
4336
5038
|
* <p>The filter's end date.</p>
|
|
4337
5039
|
*/
|
|
4338
5040
|
createdBefore?: Date;
|
|
@@ -4342,14 +5044,17 @@ export interface SequenceStoreFilter {
|
|
|
4342
5044
|
*/
|
|
4343
5045
|
export interface ListSequenceStoresRequest {
|
|
4344
5046
|
/**
|
|
5047
|
+
* @public
|
|
4345
5048
|
* <p>The maximum number of stores to return in one page of results.</p>
|
|
4346
5049
|
*/
|
|
4347
5050
|
maxResults?: number;
|
|
4348
5051
|
/**
|
|
5052
|
+
* @public
|
|
4349
5053
|
* <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
|
|
4350
5054
|
*/
|
|
4351
5055
|
nextToken?: string;
|
|
4352
5056
|
/**
|
|
5057
|
+
* @public
|
|
4353
5058
|
* <p>A filter to apply to the list.</p>
|
|
4354
5059
|
*/
|
|
4355
5060
|
filter?: SequenceStoreFilter;
|
|
@@ -4360,30 +5065,37 @@ export interface ListSequenceStoresRequest {
|
|
|
4360
5065
|
*/
|
|
4361
5066
|
export interface SequenceStoreDetail {
|
|
4362
5067
|
/**
|
|
5068
|
+
* @public
|
|
4363
5069
|
* <p>The store's ARN.</p>
|
|
4364
5070
|
*/
|
|
4365
5071
|
arn: string | undefined;
|
|
4366
5072
|
/**
|
|
5073
|
+
* @public
|
|
4367
5074
|
* <p>The store's ID.</p>
|
|
4368
5075
|
*/
|
|
4369
5076
|
id: string | undefined;
|
|
4370
5077
|
/**
|
|
5078
|
+
* @public
|
|
4371
5079
|
* <p>The store's name.</p>
|
|
4372
5080
|
*/
|
|
4373
5081
|
name?: string;
|
|
4374
5082
|
/**
|
|
5083
|
+
* @public
|
|
4375
5084
|
* <p>The store's description.</p>
|
|
4376
5085
|
*/
|
|
4377
5086
|
description?: string;
|
|
4378
5087
|
/**
|
|
5088
|
+
* @public
|
|
4379
5089
|
* <p>The store's server-side encryption (SSE) settings.</p>
|
|
4380
5090
|
*/
|
|
4381
5091
|
sseConfig?: SseConfig;
|
|
4382
5092
|
/**
|
|
5093
|
+
* @public
|
|
4383
5094
|
* <p>When the store was created.</p>
|
|
4384
5095
|
*/
|
|
4385
5096
|
creationTime: Date | undefined;
|
|
4386
5097
|
/**
|
|
5098
|
+
* @public
|
|
4387
5099
|
* <p>
|
|
4388
5100
|
* An S3 location that is used to store files that have failed a direct upload.
|
|
4389
5101
|
* </p>
|
|
@@ -4395,10 +5107,12 @@ export interface SequenceStoreDetail {
|
|
|
4395
5107
|
*/
|
|
4396
5108
|
export interface ListSequenceStoresResponse {
|
|
4397
5109
|
/**
|
|
5110
|
+
* @public
|
|
4398
5111
|
* <p>A pagination token that's included if more results are available.</p>
|
|
4399
5112
|
*/
|
|
4400
5113
|
nextToken?: string;
|
|
4401
5114
|
/**
|
|
5115
|
+
* @public
|
|
4402
5116
|
* <p>A list of sequence stores.</p>
|
|
4403
5117
|
*/
|
|
4404
5118
|
sequenceStores: SequenceStoreDetail[] | undefined;
|
|
@@ -4408,6 +5122,7 @@ export interface ListSequenceStoresResponse {
|
|
|
4408
5122
|
*/
|
|
4409
5123
|
export interface ListTagsForResourceRequest {
|
|
4410
5124
|
/**
|
|
5125
|
+
* @public
|
|
4411
5126
|
* <p>The resource's ARN.</p>
|
|
4412
5127
|
*/
|
|
4413
5128
|
resourceArn: string | undefined;
|
|
@@ -4417,6 +5132,7 @@ export interface ListTagsForResourceRequest {
|
|
|
4417
5132
|
*/
|
|
4418
5133
|
export interface ListTagsForResourceResponse {
|
|
4419
5134
|
/**
|
|
5135
|
+
* @public
|
|
4420
5136
|
* <p>A list of tags.</p>
|
|
4421
5137
|
*/
|
|
4422
5138
|
tags: Record<string, string> | undefined;
|
|
@@ -4427,10 +5143,12 @@ export interface ListTagsForResourceResponse {
|
|
|
4427
5143
|
*/
|
|
4428
5144
|
export interface ListVariantImportJobsFilter {
|
|
4429
5145
|
/**
|
|
5146
|
+
* @public
|
|
4430
5147
|
* <p>A status to filter on.</p>
|
|
4431
5148
|
*/
|
|
4432
5149
|
status?: JobStatus | string;
|
|
4433
5150
|
/**
|
|
5151
|
+
* @public
|
|
4434
5152
|
* <p>A store name to filter on.</p>
|
|
4435
5153
|
*/
|
|
4436
5154
|
storeName?: string;
|
|
@@ -4440,18 +5158,22 @@ export interface ListVariantImportJobsFilter {
|
|
|
4440
5158
|
*/
|
|
4441
5159
|
export interface ListVariantImportJobsRequest {
|
|
4442
5160
|
/**
|
|
5161
|
+
* @public
|
|
4443
5162
|
* <p>The maximum number of import jobs to return in one page of results.</p>
|
|
4444
5163
|
*/
|
|
4445
5164
|
maxResults?: number;
|
|
4446
5165
|
/**
|
|
5166
|
+
* @public
|
|
4447
5167
|
* <p>A list of job IDs.</p>
|
|
4448
5168
|
*/
|
|
4449
5169
|
ids?: string[];
|
|
4450
5170
|
/**
|
|
5171
|
+
* @public
|
|
4451
5172
|
* <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
|
|
4452
5173
|
*/
|
|
4453
5174
|
nextToken?: string;
|
|
4454
5175
|
/**
|
|
5176
|
+
* @public
|
|
4455
5177
|
* <p>A filter to apply to the list.</p>
|
|
4456
5178
|
*/
|
|
4457
5179
|
filter?: ListVariantImportJobsFilter;
|
|
@@ -4462,38 +5184,47 @@ export interface ListVariantImportJobsRequest {
|
|
|
4462
5184
|
*/
|
|
4463
5185
|
export interface VariantImportJobItem {
|
|
4464
5186
|
/**
|
|
5187
|
+
* @public
|
|
4465
5188
|
* <p>The job's ID.</p>
|
|
4466
5189
|
*/
|
|
4467
5190
|
id: string | undefined;
|
|
4468
5191
|
/**
|
|
5192
|
+
* @public
|
|
4469
5193
|
* <p>The job's destination variant store.</p>
|
|
4470
5194
|
*/
|
|
4471
5195
|
destinationName: string | undefined;
|
|
4472
5196
|
/**
|
|
5197
|
+
* @public
|
|
4473
5198
|
* <p>The job's service role ARN.</p>
|
|
4474
5199
|
*/
|
|
4475
5200
|
roleArn: string | undefined;
|
|
4476
5201
|
/**
|
|
5202
|
+
* @public
|
|
4477
5203
|
* <p>The job's status.</p>
|
|
4478
5204
|
*/
|
|
4479
5205
|
status: JobStatus | string | undefined;
|
|
4480
5206
|
/**
|
|
5207
|
+
* @public
|
|
4481
5208
|
* <p>When the job was created.</p>
|
|
4482
5209
|
*/
|
|
4483
5210
|
creationTime: Date | undefined;
|
|
4484
5211
|
/**
|
|
5212
|
+
* @public
|
|
4485
5213
|
* <p>When the job was updated.</p>
|
|
4486
5214
|
*/
|
|
4487
5215
|
updateTime: Date | undefined;
|
|
4488
5216
|
/**
|
|
5217
|
+
* @public
|
|
4489
5218
|
* <p>When the job completed.</p>
|
|
4490
5219
|
*/
|
|
4491
5220
|
completionTime?: Date;
|
|
4492
5221
|
/**
|
|
5222
|
+
* @public
|
|
4493
5223
|
* <p>The job's left normalization setting.</p>
|
|
4494
5224
|
*/
|
|
4495
5225
|
runLeftNormalization?: boolean;
|
|
4496
5226
|
/**
|
|
5227
|
+
* @public
|
|
4497
5228
|
* <p>
|
|
4498
5229
|
* The annotation schema generated by the parsed annotation data.
|
|
4499
5230
|
* </p>
|
|
@@ -4505,10 +5236,12 @@ export interface VariantImportJobItem {
|
|
|
4505
5236
|
*/
|
|
4506
5237
|
export interface ListVariantImportJobsResponse {
|
|
4507
5238
|
/**
|
|
5239
|
+
* @public
|
|
4508
5240
|
* <p>A list of jobs.</p>
|
|
4509
5241
|
*/
|
|
4510
5242
|
variantImportJobs?: VariantImportJobItem[];
|
|
4511
5243
|
/**
|
|
5244
|
+
* @public
|
|
4512
5245
|
* <p>A pagination token that's included if more results are available.</p>
|
|
4513
5246
|
*/
|
|
4514
5247
|
nextToken?: string;
|
|
@@ -4519,6 +5252,7 @@ export interface ListVariantImportJobsResponse {
|
|
|
4519
5252
|
*/
|
|
4520
5253
|
export interface ListVariantStoresFilter {
|
|
4521
5254
|
/**
|
|
5255
|
+
* @public
|
|
4522
5256
|
* <p>A status to filter on.</p>
|
|
4523
5257
|
*/
|
|
4524
5258
|
status?: StoreStatus | string;
|
|
@@ -4528,18 +5262,22 @@ export interface ListVariantStoresFilter {
|
|
|
4528
5262
|
*/
|
|
4529
5263
|
export interface ListVariantStoresRequest {
|
|
4530
5264
|
/**
|
|
5265
|
+
* @public
|
|
4531
5266
|
* <p>The maximum number of stores to return in one page of results.</p>
|
|
4532
5267
|
*/
|
|
4533
5268
|
maxResults?: number;
|
|
4534
5269
|
/**
|
|
5270
|
+
* @public
|
|
4535
5271
|
* <p>A list of store IDs.</p>
|
|
4536
5272
|
*/
|
|
4537
5273
|
ids?: string[];
|
|
4538
5274
|
/**
|
|
5275
|
+
* @public
|
|
4539
5276
|
* <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
|
|
4540
5277
|
*/
|
|
4541
5278
|
nextToken?: string;
|
|
4542
5279
|
/**
|
|
5280
|
+
* @public
|
|
4543
5281
|
* <p>A filter to apply to the list.</p>
|
|
4544
5282
|
*/
|
|
4545
5283
|
filter?: ListVariantStoresFilter;
|
|
@@ -4550,46 +5288,57 @@ export interface ListVariantStoresRequest {
|
|
|
4550
5288
|
*/
|
|
4551
5289
|
export interface VariantStoreItem {
|
|
4552
5290
|
/**
|
|
5291
|
+
* @public
|
|
4553
5292
|
* <p>The store's ID.</p>
|
|
4554
5293
|
*/
|
|
4555
5294
|
id: string | undefined;
|
|
4556
5295
|
/**
|
|
5296
|
+
* @public
|
|
4557
5297
|
* <p>The store's genome reference.</p>
|
|
4558
5298
|
*/
|
|
4559
5299
|
reference: ReferenceItem | undefined;
|
|
4560
5300
|
/**
|
|
5301
|
+
* @public
|
|
4561
5302
|
* <p>The store's status.</p>
|
|
4562
5303
|
*/
|
|
4563
5304
|
status: StoreStatus | string | undefined;
|
|
4564
5305
|
/**
|
|
5306
|
+
* @public
|
|
4565
5307
|
* <p>The store's ARN.</p>
|
|
4566
5308
|
*/
|
|
4567
5309
|
storeArn: string | undefined;
|
|
4568
5310
|
/**
|
|
5311
|
+
* @public
|
|
4569
5312
|
* <p>The store's name.</p>
|
|
4570
5313
|
*/
|
|
4571
5314
|
name: string | undefined;
|
|
4572
5315
|
/**
|
|
5316
|
+
* @public
|
|
4573
5317
|
* <p>The store's description.</p>
|
|
4574
5318
|
*/
|
|
4575
5319
|
description: string | undefined;
|
|
4576
5320
|
/**
|
|
5321
|
+
* @public
|
|
4577
5322
|
* <p>The store's server-side encryption (SSE) settings.</p>
|
|
4578
5323
|
*/
|
|
4579
5324
|
sseConfig: SseConfig | undefined;
|
|
4580
5325
|
/**
|
|
5326
|
+
* @public
|
|
4581
5327
|
* <p>When the store was created.</p>
|
|
4582
5328
|
*/
|
|
4583
5329
|
creationTime: Date | undefined;
|
|
4584
5330
|
/**
|
|
5331
|
+
* @public
|
|
4585
5332
|
* <p>When the store was updated.</p>
|
|
4586
5333
|
*/
|
|
4587
5334
|
updateTime: Date | undefined;
|
|
4588
5335
|
/**
|
|
5336
|
+
* @public
|
|
4589
5337
|
* <p>The store's status message.</p>
|
|
4590
5338
|
*/
|
|
4591
5339
|
statusMessage: string | undefined;
|
|
4592
5340
|
/**
|
|
5341
|
+
* @public
|
|
4593
5342
|
* <p>The store's size in bytes.</p>
|
|
4594
5343
|
*/
|
|
4595
5344
|
storeSizeBytes: number | undefined;
|
|
@@ -4599,10 +5348,12 @@ export interface VariantStoreItem {
|
|
|
4599
5348
|
*/
|
|
4600
5349
|
export interface ListVariantStoresResponse {
|
|
4601
5350
|
/**
|
|
5351
|
+
* @public
|
|
4602
5352
|
* <p>A list of variant stores.</p>
|
|
4603
5353
|
*/
|
|
4604
5354
|
variantStores?: VariantStoreItem[];
|
|
4605
5355
|
/**
|
|
5356
|
+
* @public
|
|
4606
5357
|
* <p>A pagination token that's included if more results are available.</p>
|
|
4607
5358
|
*/
|
|
4608
5359
|
nextToken?: string;
|
|
@@ -4612,18 +5363,22 @@ export interface ListVariantStoresResponse {
|
|
|
4612
5363
|
*/
|
|
4613
5364
|
export interface ListWorkflowsRequest {
|
|
4614
5365
|
/**
|
|
5366
|
+
* @public
|
|
4615
5367
|
* <p>The workflows' type.</p>
|
|
4616
5368
|
*/
|
|
4617
5369
|
type?: WorkflowType | string;
|
|
4618
5370
|
/**
|
|
5371
|
+
* @public
|
|
4619
5372
|
* <p>The workflows' name.</p>
|
|
4620
5373
|
*/
|
|
4621
5374
|
name?: string;
|
|
4622
5375
|
/**
|
|
5376
|
+
* @public
|
|
4623
5377
|
* <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
|
|
4624
5378
|
*/
|
|
4625
5379
|
startingToken?: string;
|
|
4626
5380
|
/**
|
|
5381
|
+
* @public
|
|
4627
5382
|
* <p>The maximum number of workflows to return in one page of results.</p>
|
|
4628
5383
|
*/
|
|
4629
5384
|
maxResults?: number;
|
|
@@ -4634,34 +5389,42 @@ export interface ListWorkflowsRequest {
|
|
|
4634
5389
|
*/
|
|
4635
5390
|
export interface WorkflowListItem {
|
|
4636
5391
|
/**
|
|
5392
|
+
* @public
|
|
4637
5393
|
* <p>The workflow's ARN.</p>
|
|
4638
5394
|
*/
|
|
4639
5395
|
arn?: string;
|
|
4640
5396
|
/**
|
|
5397
|
+
* @public
|
|
4641
5398
|
* <p>The workflow's ID.</p>
|
|
4642
5399
|
*/
|
|
4643
5400
|
id?: string;
|
|
4644
5401
|
/**
|
|
5402
|
+
* @public
|
|
4645
5403
|
* <p>The workflow's name.</p>
|
|
4646
5404
|
*/
|
|
4647
5405
|
name?: string;
|
|
4648
5406
|
/**
|
|
5407
|
+
* @public
|
|
4649
5408
|
* <p>The workflow's status.</p>
|
|
4650
5409
|
*/
|
|
4651
5410
|
status?: WorkflowStatus | string;
|
|
4652
5411
|
/**
|
|
5412
|
+
* @public
|
|
4653
5413
|
* <p>The workflow's type.</p>
|
|
4654
5414
|
*/
|
|
4655
5415
|
type?: WorkflowType | string;
|
|
4656
5416
|
/**
|
|
5417
|
+
* @public
|
|
4657
5418
|
* <p>The workflow's digest.</p>
|
|
4658
5419
|
*/
|
|
4659
5420
|
digest?: string;
|
|
4660
5421
|
/**
|
|
5422
|
+
* @public
|
|
4661
5423
|
* <p>When the workflow was created.</p>
|
|
4662
5424
|
*/
|
|
4663
5425
|
creationTime?: Date;
|
|
4664
5426
|
/**
|
|
5427
|
+
* @public
|
|
4665
5428
|
* <p>
|
|
4666
5429
|
* Any metadata available for workflow. The information listed may vary depending on the workflow, and there may also be no metadata to return.
|
|
4667
5430
|
* </p>
|
|
@@ -4673,10 +5436,12 @@ export interface WorkflowListItem {
|
|
|
4673
5436
|
*/
|
|
4674
5437
|
export interface ListWorkflowsResponse {
|
|
4675
5438
|
/**
|
|
5439
|
+
* @public
|
|
4676
5440
|
* <p>The workflows' items.</p>
|
|
4677
5441
|
*/
|
|
4678
5442
|
items?: WorkflowListItem[];
|
|
4679
5443
|
/**
|
|
5444
|
+
* @public
|
|
4680
5445
|
* <p>A pagination token that's included if more results are available.</p>
|
|
4681
5446
|
*/
|
|
4682
5447
|
nextToken?: string;
|
|
@@ -4687,18 +5452,22 @@ export interface ListWorkflowsResponse {
|
|
|
4687
5452
|
*/
|
|
4688
5453
|
export interface StartReferenceImportJobSourceItem {
|
|
4689
5454
|
/**
|
|
5455
|
+
* @public
|
|
4690
5456
|
* <p>The source file's location in Amazon S3.</p>
|
|
4691
5457
|
*/
|
|
4692
5458
|
sourceFile: string | undefined;
|
|
4693
5459
|
/**
|
|
5460
|
+
* @public
|
|
4694
5461
|
* <p>The source's name.</p>
|
|
4695
5462
|
*/
|
|
4696
5463
|
name: string | undefined;
|
|
4697
5464
|
/**
|
|
5465
|
+
* @public
|
|
4698
5466
|
* <p>The source's description.</p>
|
|
4699
5467
|
*/
|
|
4700
5468
|
description?: string;
|
|
4701
5469
|
/**
|
|
5470
|
+
* @public
|
|
4702
5471
|
* <p>The source's tags.</p>
|
|
4703
5472
|
*/
|
|
4704
5473
|
tags?: Record<string, string>;
|
|
@@ -4708,18 +5477,22 @@ export interface StartReferenceImportJobSourceItem {
|
|
|
4708
5477
|
*/
|
|
4709
5478
|
export interface StartReferenceImportJobRequest {
|
|
4710
5479
|
/**
|
|
5480
|
+
* @public
|
|
4711
5481
|
* <p>The job's reference store ID.</p>
|
|
4712
5482
|
*/
|
|
4713
5483
|
referenceStoreId: string | undefined;
|
|
4714
5484
|
/**
|
|
5485
|
+
* @public
|
|
4715
5486
|
* <p>A service role for the job.</p>
|
|
4716
5487
|
*/
|
|
4717
5488
|
roleArn: string | undefined;
|
|
4718
5489
|
/**
|
|
5490
|
+
* @public
|
|
4719
5491
|
* <p>To ensure that jobs don't run multiple times, specify a unique token for each job.</p>
|
|
4720
5492
|
*/
|
|
4721
5493
|
clientToken?: string;
|
|
4722
5494
|
/**
|
|
5495
|
+
* @public
|
|
4723
5496
|
* <p>The job's source files.</p>
|
|
4724
5497
|
*/
|
|
4725
5498
|
sources: StartReferenceImportJobSourceItem[] | undefined;
|
|
@@ -4729,22 +5502,27 @@ export interface StartReferenceImportJobRequest {
|
|
|
4729
5502
|
*/
|
|
4730
5503
|
export interface StartReferenceImportJobResponse {
|
|
4731
5504
|
/**
|
|
5505
|
+
* @public
|
|
4732
5506
|
* <p>The job's ID.</p>
|
|
4733
5507
|
*/
|
|
4734
5508
|
id: string | undefined;
|
|
4735
5509
|
/**
|
|
5510
|
+
* @public
|
|
4736
5511
|
* <p>The job's reference store ID.</p>
|
|
4737
5512
|
*/
|
|
4738
5513
|
referenceStoreId: string | undefined;
|
|
4739
5514
|
/**
|
|
5515
|
+
* @public
|
|
4740
5516
|
* <p>The job's service role ARN.</p>
|
|
4741
5517
|
*/
|
|
4742
5518
|
roleArn: string | undefined;
|
|
4743
5519
|
/**
|
|
5520
|
+
* @public
|
|
4744
5521
|
* <p>The job's status.</p>
|
|
4745
5522
|
*/
|
|
4746
5523
|
status: ReferenceImportJobStatus | string | undefined;
|
|
4747
5524
|
/**
|
|
5525
|
+
* @public
|
|
4748
5526
|
* <p>When the job was created.</p>
|
|
4749
5527
|
*/
|
|
4750
5528
|
creationTime: Date | undefined;
|
|
@@ -4754,26 +5532,32 @@ export interface StartReferenceImportJobResponse {
|
|
|
4754
5532
|
*/
|
|
4755
5533
|
export interface UpdateRunGroupRequest {
|
|
4756
5534
|
/**
|
|
5535
|
+
* @public
|
|
4757
5536
|
* <p>The group's ID.</p>
|
|
4758
5537
|
*/
|
|
4759
5538
|
id: string | undefined;
|
|
4760
5539
|
/**
|
|
5540
|
+
* @public
|
|
4761
5541
|
* <p>A name for the group.</p>
|
|
4762
5542
|
*/
|
|
4763
5543
|
name?: string;
|
|
4764
5544
|
/**
|
|
5545
|
+
* @public
|
|
4765
5546
|
* <p>The maximum number of CPUs to use.</p>
|
|
4766
5547
|
*/
|
|
4767
5548
|
maxCpus?: number;
|
|
4768
5549
|
/**
|
|
5550
|
+
* @public
|
|
4769
5551
|
* <p>The maximum number of concurrent runs for the group.</p>
|
|
4770
5552
|
*/
|
|
4771
5553
|
maxRuns?: number;
|
|
4772
5554
|
/**
|
|
5555
|
+
* @public
|
|
4773
5556
|
* <p>A maximum run time for the group in minutes.</p>
|
|
4774
5557
|
*/
|
|
4775
5558
|
maxDuration?: number;
|
|
4776
5559
|
/**
|
|
5560
|
+
* @public
|
|
4777
5561
|
* <p>
|
|
4778
5562
|
* The maximum GPUs that can be used by a run group.
|
|
4779
5563
|
* </p>
|
|
@@ -4785,54 +5569,67 @@ export interface UpdateRunGroupRequest {
|
|
|
4785
5569
|
*/
|
|
4786
5570
|
export interface StartRunRequest {
|
|
4787
5571
|
/**
|
|
5572
|
+
* @public
|
|
4788
5573
|
* <p>The run's workflow ID.</p>
|
|
4789
5574
|
*/
|
|
4790
5575
|
workflowId?: string;
|
|
4791
5576
|
/**
|
|
5577
|
+
* @public
|
|
4792
5578
|
* <p>The run's workflows type.</p>
|
|
4793
5579
|
*/
|
|
4794
5580
|
workflowType?: WorkflowType | string;
|
|
4795
5581
|
/**
|
|
5582
|
+
* @public
|
|
4796
5583
|
* <p>The run's ID.</p>
|
|
4797
5584
|
*/
|
|
4798
5585
|
runId?: string;
|
|
4799
5586
|
/**
|
|
5587
|
+
* @public
|
|
4800
5588
|
* <p>A service role for the run.</p>
|
|
4801
5589
|
*/
|
|
4802
5590
|
roleArn: string | undefined;
|
|
4803
5591
|
/**
|
|
5592
|
+
* @public
|
|
4804
5593
|
* <p>A name for the run.</p>
|
|
4805
5594
|
*/
|
|
4806
5595
|
name?: string;
|
|
4807
5596
|
/**
|
|
5597
|
+
* @public
|
|
4808
5598
|
* <p>The run's group ID.</p>
|
|
4809
5599
|
*/
|
|
4810
5600
|
runGroupId?: string;
|
|
4811
5601
|
/**
|
|
5602
|
+
* @public
|
|
4812
5603
|
* <p>A priority for the run.</p>
|
|
4813
5604
|
*/
|
|
4814
5605
|
priority?: number;
|
|
4815
5606
|
/**
|
|
5607
|
+
* @public
|
|
4816
5608
|
* <p>Parameters for the run.</p>
|
|
4817
5609
|
*/
|
|
4818
5610
|
parameters?: __DocumentType;
|
|
4819
5611
|
/**
|
|
5612
|
+
* @public
|
|
4820
5613
|
* <p>A storage capacity for the run in gigabytes.</p>
|
|
4821
5614
|
*/
|
|
4822
5615
|
storageCapacity?: number;
|
|
4823
5616
|
/**
|
|
5617
|
+
* @public
|
|
4824
5618
|
* <p>An output URI for the run.</p>
|
|
4825
5619
|
*/
|
|
4826
5620
|
outputUri?: string;
|
|
4827
5621
|
/**
|
|
5622
|
+
* @public
|
|
4828
5623
|
* <p>A log level for the run.</p>
|
|
4829
5624
|
*/
|
|
4830
5625
|
logLevel?: RunLogLevel | string;
|
|
4831
5626
|
/**
|
|
5627
|
+
* @public
|
|
4832
5628
|
* <p>Tags for the run.</p>
|
|
4833
5629
|
*/
|
|
4834
5630
|
tags?: Record<string, string>;
|
|
4835
5631
|
/**
|
|
5632
|
+
* @public
|
|
4836
5633
|
* <p>To ensure that requests don't run multiple times, specify a unique ID for each request.</p>
|
|
4837
5634
|
*/
|
|
4838
5635
|
requestId?: string;
|
|
@@ -4842,18 +5639,22 @@ export interface StartRunRequest {
|
|
|
4842
5639
|
*/
|
|
4843
5640
|
export interface StartRunResponse {
|
|
4844
5641
|
/**
|
|
5642
|
+
* @public
|
|
4845
5643
|
* <p>The run's ARN.</p>
|
|
4846
5644
|
*/
|
|
4847
5645
|
arn?: string;
|
|
4848
5646
|
/**
|
|
5647
|
+
* @public
|
|
4849
5648
|
* <p>The run's ID.</p>
|
|
4850
5649
|
*/
|
|
4851
5650
|
id?: string;
|
|
4852
5651
|
/**
|
|
5652
|
+
* @public
|
|
4853
5653
|
* <p>The run's status.</p>
|
|
4854
5654
|
*/
|
|
4855
5655
|
status?: RunStatus | string;
|
|
4856
5656
|
/**
|
|
5657
|
+
* @public
|
|
4857
5658
|
* <p>The run's tags.</p>
|
|
4858
5659
|
*/
|
|
4859
5660
|
tags?: Record<string, string>;
|
|
@@ -4864,6 +5665,7 @@ export interface StartRunResponse {
|
|
|
4864
5665
|
*/
|
|
4865
5666
|
export interface StartReadSetActivationJobSourceItem {
|
|
4866
5667
|
/**
|
|
5668
|
+
* @public
|
|
4867
5669
|
* <p>The source's read set ID.</p>
|
|
4868
5670
|
*/
|
|
4869
5671
|
readSetId: string | undefined;
|
|
@@ -4873,14 +5675,17 @@ export interface StartReadSetActivationJobSourceItem {
|
|
|
4873
5675
|
*/
|
|
4874
5676
|
export interface StartReadSetActivationJobRequest {
|
|
4875
5677
|
/**
|
|
5678
|
+
* @public
|
|
4876
5679
|
* <p>The read set's sequence store ID.</p>
|
|
4877
5680
|
*/
|
|
4878
5681
|
sequenceStoreId: string | undefined;
|
|
4879
5682
|
/**
|
|
5683
|
+
* @public
|
|
4880
5684
|
* <p>To ensure that jobs don't run multiple times, specify a unique token for each job.</p>
|
|
4881
5685
|
*/
|
|
4882
5686
|
clientToken?: string;
|
|
4883
5687
|
/**
|
|
5688
|
+
* @public
|
|
4884
5689
|
* <p>The job's source files.</p>
|
|
4885
5690
|
*/
|
|
4886
5691
|
sources: StartReadSetActivationJobSourceItem[] | undefined;
|
|
@@ -4890,18 +5695,22 @@ export interface StartReadSetActivationJobRequest {
|
|
|
4890
5695
|
*/
|
|
4891
5696
|
export interface StartReadSetActivationJobResponse {
|
|
4892
5697
|
/**
|
|
5698
|
+
* @public
|
|
4893
5699
|
* <p>The job's ID.</p>
|
|
4894
5700
|
*/
|
|
4895
5701
|
id: string | undefined;
|
|
4896
5702
|
/**
|
|
5703
|
+
* @public
|
|
4897
5704
|
* <p>The read set's sequence store ID.</p>
|
|
4898
5705
|
*/
|
|
4899
5706
|
sequenceStoreId: string | undefined;
|
|
4900
5707
|
/**
|
|
5708
|
+
* @public
|
|
4901
5709
|
* <p>The job's status.</p>
|
|
4902
5710
|
*/
|
|
4903
5711
|
status: ReadSetActivationJobStatus | string | undefined;
|
|
4904
5712
|
/**
|
|
5713
|
+
* @public
|
|
4905
5714
|
* <p>When the job was created.</p>
|
|
4906
5715
|
*/
|
|
4907
5716
|
creationTime: Date | undefined;
|
|
@@ -4911,22 +5720,27 @@ export interface StartReadSetActivationJobResponse {
|
|
|
4911
5720
|
*/
|
|
4912
5721
|
export interface StartReadSetExportJobRequest {
|
|
4913
5722
|
/**
|
|
5723
|
+
* @public
|
|
4914
5724
|
* <p>The read set's sequence store ID.</p>
|
|
4915
5725
|
*/
|
|
4916
5726
|
sequenceStoreId: string | undefined;
|
|
4917
5727
|
/**
|
|
5728
|
+
* @public
|
|
4918
5729
|
* <p>A location for exported files in Amazon S3.</p>
|
|
4919
5730
|
*/
|
|
4920
5731
|
destination: string | undefined;
|
|
4921
5732
|
/**
|
|
5733
|
+
* @public
|
|
4922
5734
|
* <p>A service role for the job.</p>
|
|
4923
5735
|
*/
|
|
4924
5736
|
roleArn: string | undefined;
|
|
4925
5737
|
/**
|
|
5738
|
+
* @public
|
|
4926
5739
|
* <p>To ensure that jobs don't run multiple times, specify a unique token for each job.</p>
|
|
4927
5740
|
*/
|
|
4928
5741
|
clientToken?: string;
|
|
4929
5742
|
/**
|
|
5743
|
+
* @public
|
|
4930
5744
|
* <p>The job's source files.</p>
|
|
4931
5745
|
*/
|
|
4932
5746
|
sources: ExportReadSet[] | undefined;
|
|
@@ -4936,22 +5750,27 @@ export interface StartReadSetExportJobRequest {
|
|
|
4936
5750
|
*/
|
|
4937
5751
|
export interface StartReadSetExportJobResponse {
|
|
4938
5752
|
/**
|
|
5753
|
+
* @public
|
|
4939
5754
|
* <p>The job's ID.</p>
|
|
4940
5755
|
*/
|
|
4941
5756
|
id: string | undefined;
|
|
4942
5757
|
/**
|
|
5758
|
+
* @public
|
|
4943
5759
|
* <p>The read set's sequence store ID.</p>
|
|
4944
5760
|
*/
|
|
4945
5761
|
sequenceStoreId: string | undefined;
|
|
4946
5762
|
/**
|
|
5763
|
+
* @public
|
|
4947
5764
|
* <p>The job's output location.</p>
|
|
4948
5765
|
*/
|
|
4949
5766
|
destination: string | undefined;
|
|
4950
5767
|
/**
|
|
5768
|
+
* @public
|
|
4951
5769
|
* <p>The job's status.</p>
|
|
4952
5770
|
*/
|
|
4953
5771
|
status: ReadSetExportJobStatus | string | undefined;
|
|
4954
5772
|
/**
|
|
5773
|
+
* @public
|
|
4955
5774
|
* <p>When the job was created.</p>
|
|
4956
5775
|
*/
|
|
4957
5776
|
creationTime: Date | undefined;
|
|
@@ -4962,38 +5781,47 @@ export interface StartReadSetExportJobResponse {
|
|
|
4962
5781
|
*/
|
|
4963
5782
|
export interface StartReadSetImportJobSourceItem {
|
|
4964
5783
|
/**
|
|
5784
|
+
* @public
|
|
4965
5785
|
* <p>The source files' location in Amazon S3.</p>
|
|
4966
5786
|
*/
|
|
4967
5787
|
sourceFiles: SourceFiles | undefined;
|
|
4968
5788
|
/**
|
|
5789
|
+
* @public
|
|
4969
5790
|
* <p>The source's file type.</p>
|
|
4970
5791
|
*/
|
|
4971
5792
|
sourceFileType: FileType | string | undefined;
|
|
4972
5793
|
/**
|
|
5794
|
+
* @public
|
|
4973
5795
|
* <p>The source's subject ID.</p>
|
|
4974
5796
|
*/
|
|
4975
5797
|
subjectId: string | undefined;
|
|
4976
5798
|
/**
|
|
5799
|
+
* @public
|
|
4977
5800
|
* <p>The source's sample ID.</p>
|
|
4978
5801
|
*/
|
|
4979
5802
|
sampleId: string | undefined;
|
|
4980
5803
|
/**
|
|
5804
|
+
* @public
|
|
4981
5805
|
* <p>Where the source originated.</p>
|
|
4982
5806
|
*/
|
|
4983
5807
|
generatedFrom?: string;
|
|
4984
5808
|
/**
|
|
5809
|
+
* @public
|
|
4985
5810
|
* <p>The source's reference ARN.</p>
|
|
4986
5811
|
*/
|
|
4987
5812
|
referenceArn: string | undefined;
|
|
4988
5813
|
/**
|
|
5814
|
+
* @public
|
|
4989
5815
|
* <p>The source's name.</p>
|
|
4990
5816
|
*/
|
|
4991
5817
|
name?: string;
|
|
4992
5818
|
/**
|
|
5819
|
+
* @public
|
|
4993
5820
|
* <p>The source's description.</p>
|
|
4994
5821
|
*/
|
|
4995
5822
|
description?: string;
|
|
4996
5823
|
/**
|
|
5824
|
+
* @public
|
|
4997
5825
|
* <p>The source's tags.</p>
|
|
4998
5826
|
*/
|
|
4999
5827
|
tags?: Record<string, string>;
|
|
@@ -5003,18 +5831,22 @@ export interface StartReadSetImportJobSourceItem {
|
|
|
5003
5831
|
*/
|
|
5004
5832
|
export interface StartReadSetImportJobRequest {
|
|
5005
5833
|
/**
|
|
5834
|
+
* @public
|
|
5006
5835
|
* <p>The read set's sequence store ID.</p>
|
|
5007
5836
|
*/
|
|
5008
5837
|
sequenceStoreId: string | undefined;
|
|
5009
5838
|
/**
|
|
5839
|
+
* @public
|
|
5010
5840
|
* <p>A service role for the job.</p>
|
|
5011
5841
|
*/
|
|
5012
5842
|
roleArn: string | undefined;
|
|
5013
5843
|
/**
|
|
5844
|
+
* @public
|
|
5014
5845
|
* <p>To ensure that jobs don't run multiple times, specify a unique token for each job.</p>
|
|
5015
5846
|
*/
|
|
5016
5847
|
clientToken?: string;
|
|
5017
5848
|
/**
|
|
5849
|
+
* @public
|
|
5018
5850
|
* <p>The job's source files.</p>
|
|
5019
5851
|
*/
|
|
5020
5852
|
sources: StartReadSetImportJobSourceItem[] | undefined;
|
|
@@ -5024,22 +5856,27 @@ export interface StartReadSetImportJobRequest {
|
|
|
5024
5856
|
*/
|
|
5025
5857
|
export interface StartReadSetImportJobResponse {
|
|
5026
5858
|
/**
|
|
5859
|
+
* @public
|
|
5027
5860
|
* <p>The job's ID.</p>
|
|
5028
5861
|
*/
|
|
5029
5862
|
id: string | undefined;
|
|
5030
5863
|
/**
|
|
5864
|
+
* @public
|
|
5031
5865
|
* <p>The read set's sequence store ID.</p>
|
|
5032
5866
|
*/
|
|
5033
5867
|
sequenceStoreId: string | undefined;
|
|
5034
5868
|
/**
|
|
5869
|
+
* @public
|
|
5035
5870
|
* <p>The job's service role ARN.</p>
|
|
5036
5871
|
*/
|
|
5037
5872
|
roleArn: string | undefined;
|
|
5038
5873
|
/**
|
|
5874
|
+
* @public
|
|
5039
5875
|
* <p>The job's status.</p>
|
|
5040
5876
|
*/
|
|
5041
5877
|
status: ReadSetImportJobStatus | string | undefined;
|
|
5042
5878
|
/**
|
|
5879
|
+
* @public
|
|
5043
5880
|
* <p>When the job was created.</p>
|
|
5044
5881
|
*/
|
|
5045
5882
|
creationTime: Date | undefined;
|
|
@@ -5049,30 +5886,35 @@ export interface StartReadSetImportJobResponse {
|
|
|
5049
5886
|
*/
|
|
5050
5887
|
export interface UploadReadSetPartRequest {
|
|
5051
5888
|
/**
|
|
5889
|
+
* @public
|
|
5052
5890
|
* <p>
|
|
5053
5891
|
* The Sequence Store ID used for the multipart upload.
|
|
5054
5892
|
* </p>
|
|
5055
5893
|
*/
|
|
5056
5894
|
sequenceStoreId: string | undefined;
|
|
5057
5895
|
/**
|
|
5896
|
+
* @public
|
|
5058
5897
|
* <p>
|
|
5059
5898
|
* The ID for the initiated multipart upload.
|
|
5060
5899
|
* </p>
|
|
5061
5900
|
*/
|
|
5062
5901
|
uploadId: string | undefined;
|
|
5063
5902
|
/**
|
|
5903
|
+
* @public
|
|
5064
5904
|
* <p>
|
|
5065
5905
|
* The source file for an upload part.
|
|
5066
5906
|
* </p>
|
|
5067
5907
|
*/
|
|
5068
5908
|
partSource: ReadSetPartSource | string | undefined;
|
|
5069
5909
|
/**
|
|
5910
|
+
* @public
|
|
5070
5911
|
* <p>
|
|
5071
5912
|
* The number of the part being uploaded.
|
|
5072
5913
|
* </p>
|
|
5073
5914
|
*/
|
|
5074
5915
|
partNumber: number | undefined;
|
|
5075
5916
|
/**
|
|
5917
|
+
* @public
|
|
5076
5918
|
* <p>
|
|
5077
5919
|
* The read set data to upload for a part.
|
|
5078
5920
|
* </p>
|
|
@@ -5084,6 +5926,7 @@ export interface UploadReadSetPartRequest {
|
|
|
5084
5926
|
*/
|
|
5085
5927
|
export interface UploadReadSetPartResponse {
|
|
5086
5928
|
/**
|
|
5929
|
+
* @public
|
|
5087
5930
|
* <p>
|
|
5088
5931
|
* An identifier used to confirm that parts are being added to the intended upload.
|
|
5089
5932
|
* </p>
|
|
@@ -5095,10 +5938,12 @@ export interface UploadReadSetPartResponse {
|
|
|
5095
5938
|
*/
|
|
5096
5939
|
export interface TagResourceRequest {
|
|
5097
5940
|
/**
|
|
5941
|
+
* @public
|
|
5098
5942
|
* <p>The resource's ARN.</p>
|
|
5099
5943
|
*/
|
|
5100
5944
|
resourceArn: string | undefined;
|
|
5101
5945
|
/**
|
|
5946
|
+
* @public
|
|
5102
5947
|
* <p>Tags for the resource.</p>
|
|
5103
5948
|
*/
|
|
5104
5949
|
tags: Record<string, string> | undefined;
|
|
@@ -5113,10 +5958,12 @@ export interface TagResourceResponse {
|
|
|
5113
5958
|
*/
|
|
5114
5959
|
export interface UntagResourceRequest {
|
|
5115
5960
|
/**
|
|
5961
|
+
* @public
|
|
5116
5962
|
* <p>The resource's ARN.</p>
|
|
5117
5963
|
*/
|
|
5118
5964
|
resourceArn: string | undefined;
|
|
5119
5965
|
/**
|
|
5966
|
+
* @public
|
|
5120
5967
|
* <p>Keys of tags to remove.</p>
|
|
5121
5968
|
*/
|
|
5122
5969
|
tagKeys: string[] | undefined;
|
|
@@ -5132,6 +5979,7 @@ export interface UntagResourceResponse {
|
|
|
5132
5979
|
*/
|
|
5133
5980
|
export interface VariantImportItemSource {
|
|
5134
5981
|
/**
|
|
5982
|
+
* @public
|
|
5135
5983
|
* <p>The source file's location in Amazon S3.</p>
|
|
5136
5984
|
*/
|
|
5137
5985
|
source: string | undefined;
|
|
@@ -5141,22 +5989,27 @@ export interface VariantImportItemSource {
|
|
|
5141
5989
|
*/
|
|
5142
5990
|
export interface StartVariantImportRequest {
|
|
5143
5991
|
/**
|
|
5992
|
+
* @public
|
|
5144
5993
|
* <p>The destination variant store for the job.</p>
|
|
5145
5994
|
*/
|
|
5146
5995
|
destinationName: string | undefined;
|
|
5147
5996
|
/**
|
|
5997
|
+
* @public
|
|
5148
5998
|
* <p>A service role for the job.</p>
|
|
5149
5999
|
*/
|
|
5150
6000
|
roleArn: string | undefined;
|
|
5151
6001
|
/**
|
|
6002
|
+
* @public
|
|
5152
6003
|
* <p>Items to import.</p>
|
|
5153
6004
|
*/
|
|
5154
6005
|
items: VariantImportItemSource[] | undefined;
|
|
5155
6006
|
/**
|
|
6007
|
+
* @public
|
|
5156
6008
|
* <p>The job's left normalization setting.</p>
|
|
5157
6009
|
*/
|
|
5158
6010
|
runLeftNormalization?: boolean;
|
|
5159
6011
|
/**
|
|
6012
|
+
* @public
|
|
5160
6013
|
* <p>
|
|
5161
6014
|
* The annotation schema generated by the parsed annotation data.
|
|
5162
6015
|
* </p>
|
|
@@ -5168,6 +6021,7 @@ export interface StartVariantImportRequest {
|
|
|
5168
6021
|
*/
|
|
5169
6022
|
export interface StartVariantImportResponse {
|
|
5170
6023
|
/**
|
|
6024
|
+
* @public
|
|
5171
6025
|
* <p>The job's ID.</p>
|
|
5172
6026
|
*/
|
|
5173
6027
|
jobId: string | undefined;
|
|
@@ -5177,10 +6031,12 @@ export interface StartVariantImportResponse {
|
|
|
5177
6031
|
*/
|
|
5178
6032
|
export interface UpdateVariantStoreRequest {
|
|
5179
6033
|
/**
|
|
6034
|
+
* @public
|
|
5180
6035
|
* <p>A name for the store.</p>
|
|
5181
6036
|
*/
|
|
5182
6037
|
name: string | undefined;
|
|
5183
6038
|
/**
|
|
6039
|
+
* @public
|
|
5184
6040
|
* <p>A description for the store.</p>
|
|
5185
6041
|
*/
|
|
5186
6042
|
description?: string;
|
|
@@ -5190,30 +6046,37 @@ export interface UpdateVariantStoreRequest {
|
|
|
5190
6046
|
*/
|
|
5191
6047
|
export interface UpdateVariantStoreResponse {
|
|
5192
6048
|
/**
|
|
6049
|
+
* @public
|
|
5193
6050
|
* <p>The store's ID.</p>
|
|
5194
6051
|
*/
|
|
5195
6052
|
id: string | undefined;
|
|
5196
6053
|
/**
|
|
6054
|
+
* @public
|
|
5197
6055
|
* <p>The store's genome reference.</p>
|
|
5198
6056
|
*/
|
|
5199
6057
|
reference: ReferenceItem | undefined;
|
|
5200
6058
|
/**
|
|
6059
|
+
* @public
|
|
5201
6060
|
* <p>The store's status.</p>
|
|
5202
6061
|
*/
|
|
5203
6062
|
status: StoreStatus | string | undefined;
|
|
5204
6063
|
/**
|
|
6064
|
+
* @public
|
|
5205
6065
|
* <p>The store's name.</p>
|
|
5206
6066
|
*/
|
|
5207
6067
|
name: string | undefined;
|
|
5208
6068
|
/**
|
|
6069
|
+
* @public
|
|
5209
6070
|
* <p>The store's description.</p>
|
|
5210
6071
|
*/
|
|
5211
6072
|
description: string | undefined;
|
|
5212
6073
|
/**
|
|
6074
|
+
* @public
|
|
5213
6075
|
* <p>When the store was created.</p>
|
|
5214
6076
|
*/
|
|
5215
6077
|
creationTime: Date | undefined;
|
|
5216
6078
|
/**
|
|
6079
|
+
* @public
|
|
5217
6080
|
* <p>When the store was updated.</p>
|
|
5218
6081
|
*/
|
|
5219
6082
|
updateTime: Date | undefined;
|
|
@@ -5223,14 +6086,17 @@ export interface UpdateVariantStoreResponse {
|
|
|
5223
6086
|
*/
|
|
5224
6087
|
export interface UpdateWorkflowRequest {
|
|
5225
6088
|
/**
|
|
6089
|
+
* @public
|
|
5226
6090
|
* <p>The workflow's ID.</p>
|
|
5227
6091
|
*/
|
|
5228
6092
|
id: string | undefined;
|
|
5229
6093
|
/**
|
|
6094
|
+
* @public
|
|
5230
6095
|
* <p>A name for the workflow.</p>
|
|
5231
6096
|
*/
|
|
5232
6097
|
name?: string;
|
|
5233
6098
|
/**
|
|
6099
|
+
* @public
|
|
5234
6100
|
* <p>A description for the workflow.</p>
|
|
5235
6101
|
*/
|
|
5236
6102
|
description?: string;
|