@aws-sdk/client-omics 3.301.0 → 3.306.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 +181 -209
- package/dist-es/models/models_0.js +181 -209
- package/dist-types/models/models_0.d.ts +321 -181
- package/dist-types/ts3.4/models/models_0.d.ts +225 -181
- package/package.json +37 -37
|
@@ -9,15 +9,17 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
9
9
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
10
10
|
);
|
|
11
11
|
}
|
|
12
|
-
export declare
|
|
13
|
-
CANCELLED
|
|
14
|
-
CANCELLING
|
|
15
|
-
COMPLETED
|
|
16
|
-
COMPLETED_WITH_FAILURES
|
|
17
|
-
FAILED
|
|
18
|
-
IN_PROGRESS
|
|
19
|
-
SUBMITTED
|
|
20
|
-
}
|
|
12
|
+
export declare const ReadSetActivationJobStatus: {
|
|
13
|
+
readonly CANCELLED: "CANCELLED";
|
|
14
|
+
readonly CANCELLING: "CANCELLING";
|
|
15
|
+
readonly COMPLETED: "COMPLETED";
|
|
16
|
+
readonly COMPLETED_WITH_FAILURES: "COMPLETED_WITH_FAILURES";
|
|
17
|
+
readonly FAILED: "FAILED";
|
|
18
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
19
|
+
readonly SUBMITTED: "SUBMITTED";
|
|
20
|
+
};
|
|
21
|
+
export type ReadSetActivationJobStatus =
|
|
22
|
+
(typeof ReadSetActivationJobStatus)[keyof typeof ReadSetActivationJobStatus];
|
|
21
23
|
export interface ActivateReadSetFilter {
|
|
22
24
|
status?: ReadSetActivationJobStatus | string;
|
|
23
25
|
createdAfter?: Date;
|
|
@@ -30,25 +32,28 @@ export interface ActivateReadSetJobItem {
|
|
|
30
32
|
creationTime: Date | undefined;
|
|
31
33
|
completionTime?: Date;
|
|
32
34
|
}
|
|
33
|
-
export declare
|
|
34
|
-
FAILED
|
|
35
|
-
FINISHED
|
|
36
|
-
IN_PROGRESS
|
|
37
|
-
NOT_STARTED
|
|
38
|
-
}
|
|
35
|
+
export declare const ReadSetActivationJobItemStatus: {
|
|
36
|
+
readonly FAILED: "FAILED";
|
|
37
|
+
readonly FINISHED: "FINISHED";
|
|
38
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
39
|
+
readonly NOT_STARTED: "NOT_STARTED";
|
|
40
|
+
};
|
|
41
|
+
export type ReadSetActivationJobItemStatus =
|
|
42
|
+
(typeof ReadSetActivationJobItemStatus)[keyof typeof ReadSetActivationJobItemStatus];
|
|
39
43
|
export interface ActivateReadSetSourceItem {
|
|
40
44
|
readSetId: string | undefined;
|
|
41
45
|
status: ReadSetActivationJobItemStatus | string | undefined;
|
|
42
46
|
statusMessage?: string;
|
|
43
47
|
}
|
|
44
|
-
export declare
|
|
45
|
-
CANCELLED
|
|
46
|
-
COMPLETED
|
|
47
|
-
COMPLETED_WITH_FAILURES
|
|
48
|
-
FAILED
|
|
49
|
-
IN_PROGRESS
|
|
50
|
-
SUBMITTED
|
|
51
|
-
}
|
|
48
|
+
export declare const JobStatus: {
|
|
49
|
+
readonly CANCELLED: "CANCELLED";
|
|
50
|
+
readonly COMPLETED: "COMPLETED";
|
|
51
|
+
readonly COMPLETED_WITH_FAILURES: "COMPLETED_WITH_FAILURES";
|
|
52
|
+
readonly FAILED: "FAILED";
|
|
53
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
54
|
+
readonly SUBMITTED: "SUBMITTED";
|
|
55
|
+
};
|
|
56
|
+
export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
|
|
52
57
|
export interface AnnotationImportItemDetail {
|
|
53
58
|
source: string | undefined;
|
|
54
59
|
jobStatus: JobStatus | string | undefined;
|
|
@@ -217,43 +222,52 @@ export declare namespace ReferenceItem {
|
|
|
217
222
|
}
|
|
218
223
|
const visit: <T>(value: ReferenceItem, visitor: Visitor<T>) => T;
|
|
219
224
|
}
|
|
220
|
-
export declare
|
|
221
|
-
KMS
|
|
222
|
-
}
|
|
225
|
+
export declare const EncryptionType: {
|
|
226
|
+
readonly KMS: "KMS";
|
|
227
|
+
};
|
|
228
|
+
export type EncryptionType =
|
|
229
|
+
(typeof EncryptionType)[keyof typeof EncryptionType];
|
|
223
230
|
export interface SseConfig {
|
|
224
231
|
type: EncryptionType | string | undefined;
|
|
225
232
|
keyArn?: string;
|
|
226
233
|
}
|
|
227
|
-
export declare
|
|
228
|
-
GFF
|
|
229
|
-
TSV
|
|
230
|
-
VCF
|
|
231
|
-
}
|
|
232
|
-
export
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
234
|
+
export declare const StoreFormat: {
|
|
235
|
+
readonly GFF: "GFF";
|
|
236
|
+
readonly TSV: "TSV";
|
|
237
|
+
readonly VCF: "VCF";
|
|
238
|
+
};
|
|
239
|
+
export type StoreFormat = (typeof StoreFormat)[keyof typeof StoreFormat];
|
|
240
|
+
export declare const AnnotationType: {
|
|
241
|
+
readonly CHR_POS: "CHR_POS";
|
|
242
|
+
readonly CHR_POS_REF_ALT: "CHR_POS_REF_ALT";
|
|
243
|
+
readonly CHR_START_END_ONE_BASE: "CHR_START_END_ONE_BASE";
|
|
244
|
+
readonly CHR_START_END_REF_ALT_ONE_BASE: "CHR_START_END_REF_ALT_ONE_BASE";
|
|
245
|
+
readonly CHR_START_END_REF_ALT_ZERO_BASE: "CHR_START_END_REF_ALT_ZERO_BASE";
|
|
246
|
+
readonly CHR_START_END_ZERO_BASE: "CHR_START_END_ZERO_BASE";
|
|
247
|
+
readonly GENERIC: "GENERIC";
|
|
248
|
+
};
|
|
249
|
+
export type AnnotationType =
|
|
250
|
+
(typeof AnnotationType)[keyof typeof AnnotationType];
|
|
251
|
+
export declare const FormatToHeaderKey: {
|
|
252
|
+
readonly ALT: "ALT";
|
|
253
|
+
readonly CHR: "CHR";
|
|
254
|
+
readonly END: "END";
|
|
255
|
+
readonly POS: "POS";
|
|
256
|
+
readonly REF: "REF";
|
|
257
|
+
readonly START: "START";
|
|
258
|
+
};
|
|
259
|
+
export type FormatToHeaderKey =
|
|
260
|
+
(typeof FormatToHeaderKey)[keyof typeof FormatToHeaderKey];
|
|
261
|
+
export declare const SchemaValueType: {
|
|
262
|
+
readonly BOOLEAN: "BOOLEAN";
|
|
263
|
+
readonly DOUBLE: "DOUBLE";
|
|
264
|
+
readonly FLOAT: "FLOAT";
|
|
265
|
+
readonly INT: "INT";
|
|
266
|
+
readonly LONG: "LONG";
|
|
267
|
+
readonly STRING: "STRING";
|
|
268
|
+
};
|
|
269
|
+
export type SchemaValueType =
|
|
270
|
+
(typeof SchemaValueType)[keyof typeof SchemaValueType];
|
|
257
271
|
export interface TsvStoreOptions {
|
|
258
272
|
annotationType?: AnnotationType | string;
|
|
259
273
|
formatToHeader?: Record<string, string>;
|
|
@@ -286,13 +300,14 @@ export interface CreateAnnotationStoreRequest {
|
|
|
286
300
|
storeFormat: StoreFormat | string | undefined;
|
|
287
301
|
storeOptions?: StoreOptions;
|
|
288
302
|
}
|
|
289
|
-
export declare
|
|
290
|
-
ACTIVE
|
|
291
|
-
CREATING
|
|
292
|
-
DELETING
|
|
293
|
-
FAILED
|
|
294
|
-
UPDATING
|
|
295
|
-
}
|
|
303
|
+
export declare const StoreStatus: {
|
|
304
|
+
readonly ACTIVE: "ACTIVE";
|
|
305
|
+
readonly CREATING: "CREATING";
|
|
306
|
+
readonly DELETING: "DELETING";
|
|
307
|
+
readonly FAILED: "FAILED";
|
|
308
|
+
readonly UPDATING: "UPDATING";
|
|
309
|
+
};
|
|
310
|
+
export type StoreStatus = (typeof StoreStatus)[keyof typeof StoreStatus];
|
|
296
311
|
export interface CreateAnnotationStoreResponse {
|
|
297
312
|
id: string | undefined;
|
|
298
313
|
reference?: ReferenceItem;
|
|
@@ -453,10 +468,12 @@ export interface CreateVariantStoreResponse {
|
|
|
453
468
|
name: string | undefined;
|
|
454
469
|
creationTime: Date | undefined;
|
|
455
470
|
}
|
|
456
|
-
export declare
|
|
457
|
-
NEXTFLOW
|
|
458
|
-
WDL
|
|
459
|
-
}
|
|
471
|
+
export declare const WorkflowEngine: {
|
|
472
|
+
readonly NEXTFLOW: "NEXTFLOW";
|
|
473
|
+
readonly WDL: "WDL";
|
|
474
|
+
};
|
|
475
|
+
export type WorkflowEngine =
|
|
476
|
+
(typeof WorkflowEngine)[keyof typeof WorkflowEngine];
|
|
460
477
|
export interface WorkflowParameter {
|
|
461
478
|
description?: string;
|
|
462
479
|
optional?: boolean;
|
|
@@ -473,14 +490,16 @@ export interface CreateWorkflowRequest {
|
|
|
473
490
|
tags?: Record<string, string>;
|
|
474
491
|
requestId?: string;
|
|
475
492
|
}
|
|
476
|
-
export declare
|
|
477
|
-
ACTIVE
|
|
478
|
-
CREATING
|
|
479
|
-
DELETED
|
|
480
|
-
FAILED
|
|
481
|
-
INACTIVE
|
|
482
|
-
UPDATING
|
|
483
|
-
}
|
|
493
|
+
export declare const WorkflowStatus: {
|
|
494
|
+
readonly ACTIVE: "ACTIVE";
|
|
495
|
+
readonly CREATING: "CREATING";
|
|
496
|
+
readonly DELETED: "DELETED";
|
|
497
|
+
readonly FAILED: "FAILED";
|
|
498
|
+
readonly INACTIVE: "INACTIVE";
|
|
499
|
+
readonly UPDATING: "UPDATING";
|
|
500
|
+
};
|
|
501
|
+
export type WorkflowStatus =
|
|
502
|
+
(typeof WorkflowStatus)[keyof typeof WorkflowStatus];
|
|
484
503
|
export interface CreateWorkflowResponse {
|
|
485
504
|
arn?: string;
|
|
486
505
|
id?: string;
|
|
@@ -519,26 +538,30 @@ export interface DeleteWorkflowRequest {
|
|
|
519
538
|
export interface ExportReadSet {
|
|
520
539
|
readSetId: string | undefined;
|
|
521
540
|
}
|
|
522
|
-
export declare
|
|
523
|
-
FAILED
|
|
524
|
-
FINISHED
|
|
525
|
-
IN_PROGRESS
|
|
526
|
-
NOT_STARTED
|
|
527
|
-
}
|
|
541
|
+
export declare const ReadSetExportJobItemStatus: {
|
|
542
|
+
readonly FAILED: "FAILED";
|
|
543
|
+
readonly FINISHED: "FINISHED";
|
|
544
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
545
|
+
readonly NOT_STARTED: "NOT_STARTED";
|
|
546
|
+
};
|
|
547
|
+
export type ReadSetExportJobItemStatus =
|
|
548
|
+
(typeof ReadSetExportJobItemStatus)[keyof typeof ReadSetExportJobItemStatus];
|
|
528
549
|
export interface ExportReadSetDetail {
|
|
529
550
|
id: string | undefined;
|
|
530
551
|
status: ReadSetExportJobItemStatus | string | undefined;
|
|
531
552
|
statusMessage?: string;
|
|
532
553
|
}
|
|
533
|
-
export declare
|
|
534
|
-
CANCELLED
|
|
535
|
-
CANCELLING
|
|
536
|
-
COMPLETED
|
|
537
|
-
COMPLETED_WITH_FAILURES
|
|
538
|
-
FAILED
|
|
539
|
-
IN_PROGRESS
|
|
540
|
-
SUBMITTED
|
|
541
|
-
}
|
|
554
|
+
export declare const ReadSetExportJobStatus: {
|
|
555
|
+
readonly CANCELLED: "CANCELLED";
|
|
556
|
+
readonly CANCELLING: "CANCELLING";
|
|
557
|
+
readonly COMPLETED: "COMPLETED";
|
|
558
|
+
readonly COMPLETED_WITH_FAILURES: "COMPLETED_WITH_FAILURES";
|
|
559
|
+
readonly FAILED: "FAILED";
|
|
560
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
561
|
+
readonly SUBMITTED: "SUBMITTED";
|
|
562
|
+
};
|
|
563
|
+
export type ReadSetExportJobStatus =
|
|
564
|
+
(typeof ReadSetExportJobStatus)[keyof typeof ReadSetExportJobStatus];
|
|
542
565
|
export interface ExportReadSetFilter {
|
|
543
566
|
status?: ReadSetExportJobStatus | string;
|
|
544
567
|
createdAfter?: Date;
|
|
@@ -557,16 +580,18 @@ export interface FileInformation {
|
|
|
557
580
|
partSize?: number;
|
|
558
581
|
contentLength?: number;
|
|
559
582
|
}
|
|
560
|
-
export declare
|
|
561
|
-
BAM
|
|
562
|
-
CRAM
|
|
563
|
-
FASTQ
|
|
564
|
-
}
|
|
565
|
-
export
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
583
|
+
export declare const FileType: {
|
|
584
|
+
readonly BAM: "BAM";
|
|
585
|
+
readonly CRAM: "CRAM";
|
|
586
|
+
readonly FASTQ: "FASTQ";
|
|
587
|
+
};
|
|
588
|
+
export type FileType = (typeof FileType)[keyof typeof FileType];
|
|
589
|
+
export declare const ReadSetFile: {
|
|
590
|
+
readonly INDEX: "INDEX";
|
|
591
|
+
readonly SOURCE1: "SOURCE1";
|
|
592
|
+
readonly SOURCE2: "SOURCE2";
|
|
593
|
+
};
|
|
594
|
+
export type ReadSetFile = (typeof ReadSetFile)[keyof typeof ReadSetFile];
|
|
570
595
|
export interface GetReadSetRequest {
|
|
571
596
|
id: string | undefined;
|
|
572
597
|
sequenceStoreId: string | undefined;
|
|
@@ -619,12 +644,14 @@ export interface SourceFiles {
|
|
|
619
644
|
source1: string | undefined;
|
|
620
645
|
source2?: string;
|
|
621
646
|
}
|
|
622
|
-
export declare
|
|
623
|
-
FAILED
|
|
624
|
-
FINISHED
|
|
625
|
-
IN_PROGRESS
|
|
626
|
-
NOT_STARTED
|
|
627
|
-
}
|
|
647
|
+
export declare const ReadSetImportJobItemStatus: {
|
|
648
|
+
readonly FAILED: "FAILED";
|
|
649
|
+
readonly FINISHED: "FINISHED";
|
|
650
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
651
|
+
readonly NOT_STARTED: "NOT_STARTED";
|
|
652
|
+
};
|
|
653
|
+
export type ReadSetImportJobItemStatus =
|
|
654
|
+
(typeof ReadSetImportJobItemStatus)[keyof typeof ReadSetImportJobItemStatus];
|
|
628
655
|
export interface ImportReadSetSourceItem {
|
|
629
656
|
sourceFiles: SourceFiles | undefined;
|
|
630
657
|
sourceFileType: FileType | string | undefined;
|
|
@@ -638,15 +665,17 @@ export interface ImportReadSetSourceItem {
|
|
|
638
665
|
description?: string;
|
|
639
666
|
tags?: Record<string, string>;
|
|
640
667
|
}
|
|
641
|
-
export declare
|
|
642
|
-
CANCELLED
|
|
643
|
-
CANCELLING
|
|
644
|
-
COMPLETED
|
|
645
|
-
COMPLETED_WITH_FAILURES
|
|
646
|
-
FAILED
|
|
647
|
-
IN_PROGRESS
|
|
648
|
-
SUBMITTED
|
|
649
|
-
}
|
|
668
|
+
export declare const ReadSetImportJobStatus: {
|
|
669
|
+
readonly CANCELLED: "CANCELLED";
|
|
670
|
+
readonly CANCELLING: "CANCELLING";
|
|
671
|
+
readonly COMPLETED: "COMPLETED";
|
|
672
|
+
readonly COMPLETED_WITH_FAILURES: "COMPLETED_WITH_FAILURES";
|
|
673
|
+
readonly FAILED: "FAILED";
|
|
674
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
675
|
+
readonly SUBMITTED: "SUBMITTED";
|
|
676
|
+
};
|
|
677
|
+
export type ReadSetImportJobStatus =
|
|
678
|
+
(typeof ReadSetImportJobStatus)[keyof typeof ReadSetImportJobStatus];
|
|
650
679
|
export interface GetReadSetImportJobResponse {
|
|
651
680
|
id: string | undefined;
|
|
652
681
|
sequenceStoreId: string | undefined;
|
|
@@ -672,13 +701,14 @@ export interface SequenceInformation {
|
|
|
672
701
|
generatedFrom?: string;
|
|
673
702
|
alignment?: string;
|
|
674
703
|
}
|
|
675
|
-
export declare
|
|
676
|
-
ACTIVATING
|
|
677
|
-
ACTIVE
|
|
678
|
-
ARCHIVED
|
|
679
|
-
DELETED
|
|
680
|
-
DELETING
|
|
681
|
-
}
|
|
704
|
+
export declare const ReadSetStatus: {
|
|
705
|
+
readonly ACTIVATING: "ACTIVATING";
|
|
706
|
+
readonly ACTIVE: "ACTIVE";
|
|
707
|
+
readonly ARCHIVED: "ARCHIVED";
|
|
708
|
+
readonly DELETED: "DELETED";
|
|
709
|
+
readonly DELETING: "DELETING";
|
|
710
|
+
};
|
|
711
|
+
export type ReadSetStatus = (typeof ReadSetStatus)[keyof typeof ReadSetStatus];
|
|
682
712
|
export interface GetReadSetMetadataResponse {
|
|
683
713
|
id: string | undefined;
|
|
684
714
|
arn: string | undefined;
|
|
@@ -694,10 +724,11 @@ export interface GetReadSetMetadataResponse {
|
|
|
694
724
|
referenceArn?: string;
|
|
695
725
|
files?: ReadSetFiles;
|
|
696
726
|
}
|
|
697
|
-
export declare
|
|
698
|
-
INDEX
|
|
699
|
-
SOURCE
|
|
700
|
-
}
|
|
727
|
+
export declare const ReferenceFile: {
|
|
728
|
+
readonly INDEX: "INDEX";
|
|
729
|
+
readonly SOURCE: "SOURCE";
|
|
730
|
+
};
|
|
731
|
+
export type ReferenceFile = (typeof ReferenceFile)[keyof typeof ReferenceFile];
|
|
701
732
|
export interface GetReferenceRequest {
|
|
702
733
|
id: string | undefined;
|
|
703
734
|
referenceStoreId: string | undefined;
|
|
@@ -712,12 +743,14 @@ export interface GetReferenceImportJobRequest {
|
|
|
712
743
|
id: string | undefined;
|
|
713
744
|
referenceStoreId: string | undefined;
|
|
714
745
|
}
|
|
715
|
-
export declare
|
|
716
|
-
FAILED
|
|
717
|
-
FINISHED
|
|
718
|
-
IN_PROGRESS
|
|
719
|
-
NOT_STARTED
|
|
720
|
-
}
|
|
746
|
+
export declare const ReferenceImportJobItemStatus: {
|
|
747
|
+
readonly FAILED: "FAILED";
|
|
748
|
+
readonly FINISHED: "FINISHED";
|
|
749
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
750
|
+
readonly NOT_STARTED: "NOT_STARTED";
|
|
751
|
+
};
|
|
752
|
+
export type ReferenceImportJobItemStatus =
|
|
753
|
+
(typeof ReferenceImportJobItemStatus)[keyof typeof ReferenceImportJobItemStatus];
|
|
721
754
|
export interface ImportReferenceSourceItem {
|
|
722
755
|
sourceFile?: string;
|
|
723
756
|
status: ReferenceImportJobItemStatus | string | undefined;
|
|
@@ -726,15 +759,17 @@ export interface ImportReferenceSourceItem {
|
|
|
726
759
|
description?: string;
|
|
727
760
|
tags?: Record<string, string>;
|
|
728
761
|
}
|
|
729
|
-
export declare
|
|
730
|
-
CANCELLED
|
|
731
|
-
CANCELLING
|
|
732
|
-
COMPLETED
|
|
733
|
-
COMPLETED_WITH_FAILURES
|
|
734
|
-
FAILED
|
|
735
|
-
IN_PROGRESS
|
|
736
|
-
SUBMITTED
|
|
737
|
-
}
|
|
762
|
+
export declare const ReferenceImportJobStatus: {
|
|
763
|
+
readonly CANCELLED: "CANCELLED";
|
|
764
|
+
readonly CANCELLING: "CANCELLING";
|
|
765
|
+
readonly COMPLETED: "COMPLETED";
|
|
766
|
+
readonly COMPLETED_WITH_FAILURES: "COMPLETED_WITH_FAILURES";
|
|
767
|
+
readonly FAILED: "FAILED";
|
|
768
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
769
|
+
readonly SUBMITTED: "SUBMITTED";
|
|
770
|
+
};
|
|
771
|
+
export type ReferenceImportJobStatus =
|
|
772
|
+
(typeof ReferenceImportJobStatus)[keyof typeof ReferenceImportJobStatus];
|
|
738
773
|
export interface GetReferenceImportJobResponse {
|
|
739
774
|
id: string | undefined;
|
|
740
775
|
referenceStoreId: string | undefined;
|
|
@@ -753,11 +788,13 @@ export interface ReferenceFiles {
|
|
|
753
788
|
source?: FileInformation;
|
|
754
789
|
index?: FileInformation;
|
|
755
790
|
}
|
|
756
|
-
export declare
|
|
757
|
-
ACTIVE
|
|
758
|
-
DELETED
|
|
759
|
-
DELETING
|
|
760
|
-
}
|
|
791
|
+
export declare const ReferenceStatus: {
|
|
792
|
+
readonly ACTIVE: "ACTIVE";
|
|
793
|
+
readonly DELETED: "DELETED";
|
|
794
|
+
readonly DELETING: "DELETING";
|
|
795
|
+
};
|
|
796
|
+
export type ReferenceStatus =
|
|
797
|
+
(typeof ReferenceStatus)[keyof typeof ReferenceStatus];
|
|
761
798
|
export interface GetReferenceMetadataResponse {
|
|
762
799
|
id: string | undefined;
|
|
763
800
|
arn: string | undefined;
|
|
@@ -781,33 +818,37 @@ export interface GetReferenceStoreResponse {
|
|
|
781
818
|
sseConfig?: SseConfig;
|
|
782
819
|
creationTime: Date | undefined;
|
|
783
820
|
}
|
|
784
|
-
export declare
|
|
785
|
-
DEFINITION
|
|
786
|
-
}
|
|
821
|
+
export declare const RunExport: {
|
|
822
|
+
readonly DEFINITION: "DEFINITION";
|
|
823
|
+
};
|
|
824
|
+
export type RunExport = (typeof RunExport)[keyof typeof RunExport];
|
|
787
825
|
export interface GetRunRequest {
|
|
788
826
|
id: string | undefined;
|
|
789
827
|
export?: (RunExport | string)[];
|
|
790
828
|
}
|
|
791
|
-
export declare
|
|
792
|
-
ALL
|
|
793
|
-
ERROR
|
|
794
|
-
FATAL
|
|
795
|
-
OFF
|
|
796
|
-
}
|
|
797
|
-
export
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
829
|
+
export declare const RunLogLevel: {
|
|
830
|
+
readonly ALL: "ALL";
|
|
831
|
+
readonly ERROR: "ERROR";
|
|
832
|
+
readonly FATAL: "FATAL";
|
|
833
|
+
readonly OFF: "OFF";
|
|
834
|
+
};
|
|
835
|
+
export type RunLogLevel = (typeof RunLogLevel)[keyof typeof RunLogLevel];
|
|
836
|
+
export declare const RunStatus: {
|
|
837
|
+
readonly CANCELLED: "CANCELLED";
|
|
838
|
+
readonly COMPLETED: "COMPLETED";
|
|
839
|
+
readonly DELETED: "DELETED";
|
|
840
|
+
readonly FAILED: "FAILED";
|
|
841
|
+
readonly PENDING: "PENDING";
|
|
842
|
+
readonly RUNNING: "RUNNING";
|
|
843
|
+
readonly STARTING: "STARTING";
|
|
844
|
+
readonly STOPPING: "STOPPING";
|
|
845
|
+
};
|
|
846
|
+
export type RunStatus = (typeof RunStatus)[keyof typeof RunStatus];
|
|
847
|
+
export declare const WorkflowType: {
|
|
848
|
+
readonly PRIVATE: "PRIVATE";
|
|
849
|
+
readonly SERVICE: "SERVICE";
|
|
850
|
+
};
|
|
851
|
+
export type WorkflowType = (typeof WorkflowType)[keyof typeof WorkflowType];
|
|
811
852
|
export interface GetRunResponse {
|
|
812
853
|
arn?: string;
|
|
813
854
|
id?: string;
|
|
@@ -850,15 +891,16 @@ export interface GetRunTaskRequest {
|
|
|
850
891
|
id: string | undefined;
|
|
851
892
|
taskId: string | undefined;
|
|
852
893
|
}
|
|
853
|
-
export declare
|
|
854
|
-
CANCELLED
|
|
855
|
-
COMPLETED
|
|
856
|
-
FAILED
|
|
857
|
-
PENDING
|
|
858
|
-
RUNNING
|
|
859
|
-
STARTING
|
|
860
|
-
STOPPING
|
|
861
|
-
}
|
|
894
|
+
export declare const TaskStatus: {
|
|
895
|
+
readonly CANCELLED: "CANCELLED";
|
|
896
|
+
readonly COMPLETED: "COMPLETED";
|
|
897
|
+
readonly FAILED: "FAILED";
|
|
898
|
+
readonly PENDING: "PENDING";
|
|
899
|
+
readonly RUNNING: "RUNNING";
|
|
900
|
+
readonly STARTING: "STARTING";
|
|
901
|
+
readonly STOPPING: "STOPPING";
|
|
902
|
+
};
|
|
903
|
+
export type TaskStatus = (typeof TaskStatus)[keyof typeof TaskStatus];
|
|
862
904
|
export interface GetRunTaskResponse {
|
|
863
905
|
taskId?: string;
|
|
864
906
|
status?: TaskStatus | string;
|
|
@@ -919,9 +961,11 @@ export interface GetVariantStoreResponse {
|
|
|
919
961
|
statusMessage: string | undefined;
|
|
920
962
|
storeSizeBytes: number | undefined;
|
|
921
963
|
}
|
|
922
|
-
export declare
|
|
923
|
-
DEFINITION
|
|
924
|
-
}
|
|
964
|
+
export declare const WorkflowExport: {
|
|
965
|
+
readonly DEFINITION: "DEFINITION";
|
|
966
|
+
};
|
|
967
|
+
export type WorkflowExport =
|
|
968
|
+
(typeof WorkflowExport)[keyof typeof WorkflowExport];
|
|
925
969
|
export interface GetWorkflowRequest {
|
|
926
970
|
id: string | undefined;
|
|
927
971
|
type?: WorkflowType | string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-omics",
|
|
3
3
|
"description": "AWS SDK for JavaScript Omics Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.306.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,46 +21,46 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/protocol-http": "3.
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
44
|
-
"@aws-sdk/types": "3.
|
|
45
|
-
"@aws-sdk/url-parser": "3.
|
|
46
|
-
"@aws-sdk/util-base64": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
53
|
-
"@aws-sdk/util-stream-browser": "3.
|
|
54
|
-
"@aws-sdk/util-stream-node": "3.
|
|
55
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
56
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
57
|
-
"@aws-sdk/util-utf8": "3.
|
|
58
|
-
"@aws-sdk/util-waiter": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.306.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.306.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.306.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.306.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.306.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.306.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.306.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.306.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.306.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.306.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.306.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.306.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.306.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.306.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.306.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.306.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.306.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.306.0",
|
|
42
|
+
"@aws-sdk/protocol-http": "3.306.0",
|
|
43
|
+
"@aws-sdk/smithy-client": "3.306.0",
|
|
44
|
+
"@aws-sdk/types": "3.306.0",
|
|
45
|
+
"@aws-sdk/url-parser": "3.306.0",
|
|
46
|
+
"@aws-sdk/util-base64": "3.303.0",
|
|
47
|
+
"@aws-sdk/util-body-length-browser": "3.303.0",
|
|
48
|
+
"@aws-sdk/util-body-length-node": "3.303.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.306.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.306.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.306.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.306.0",
|
|
53
|
+
"@aws-sdk/util-stream-browser": "3.306.0",
|
|
54
|
+
"@aws-sdk/util-stream-node": "3.306.0",
|
|
55
|
+
"@aws-sdk/util-user-agent-browser": "3.306.0",
|
|
56
|
+
"@aws-sdk/util-user-agent-node": "3.306.0",
|
|
57
|
+
"@aws-sdk/util-utf8": "3.303.0",
|
|
58
|
+
"@aws-sdk/util-waiter": "3.306.0",
|
|
59
59
|
"tslib": "^2.5.0",
|
|
60
60
|
"uuid": "^8.3.2"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
63
|
+
"@aws-sdk/service-client-documentation-generator": "3.303.0",
|
|
64
64
|
"@tsconfig/node14": "1.0.3",
|
|
65
65
|
"@types/node": "^14.14.31",
|
|
66
66
|
"@types/uuid": "^8.3.0",
|