@aws-sdk/client-omics 3.301.0 → 3.303.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.
@@ -9,15 +9,17 @@ export declare class AccessDeniedException extends __BaseException {
9
9
  opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
10
10
  );
11
11
  }
12
- export declare enum ReadSetActivationJobStatus {
13
- CANCELLED = "CANCELLED",
14
- CANCELLING = "CANCELLING",
15
- COMPLETED = "COMPLETED",
16
- COMPLETED_WITH_FAILURES = "COMPLETED_WITH_FAILURES",
17
- FAILED = "FAILED",
18
- IN_PROGRESS = "IN_PROGRESS",
19
- SUBMITTED = "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 enum ReadSetActivationJobItemStatus {
34
- FAILED = "FAILED",
35
- FINISHED = "FINISHED",
36
- IN_PROGRESS = "IN_PROGRESS",
37
- NOT_STARTED = "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 enum JobStatus {
45
- CANCELLED = "CANCELLED",
46
- COMPLETED = "COMPLETED",
47
- COMPLETED_WITH_FAILURES = "COMPLETED_WITH_FAILURES",
48
- FAILED = "FAILED",
49
- IN_PROGRESS = "IN_PROGRESS",
50
- SUBMITTED = "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 enum EncryptionType {
221
- KMS = "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 enum StoreFormat {
228
- GFF = "GFF",
229
- TSV = "TSV",
230
- VCF = "VCF",
231
- }
232
- export declare enum AnnotationType {
233
- CHR_POS = "CHR_POS",
234
- CHR_POS_REF_ALT = "CHR_POS_REF_ALT",
235
- CHR_START_END_ONE_BASE = "CHR_START_END_ONE_BASE",
236
- CHR_START_END_REF_ALT_ONE_BASE = "CHR_START_END_REF_ALT_ONE_BASE",
237
- CHR_START_END_REF_ALT_ZERO_BASE = "CHR_START_END_REF_ALT_ZERO_BASE",
238
- CHR_START_END_ZERO_BASE = "CHR_START_END_ZERO_BASE",
239
- GENERIC = "GENERIC",
240
- }
241
- export declare enum FormatToHeaderKey {
242
- ALT = "ALT",
243
- CHR = "CHR",
244
- END = "END",
245
- POS = "POS",
246
- REF = "REF",
247
- START = "START",
248
- }
249
- export declare enum SchemaValueType {
250
- BOOLEAN = "BOOLEAN",
251
- DOUBLE = "DOUBLE",
252
- FLOAT = "FLOAT",
253
- INT = "INT",
254
- LONG = "LONG",
255
- STRING = "STRING",
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 enum StoreStatus {
290
- ACTIVE = "ACTIVE",
291
- CREATING = "CREATING",
292
- DELETING = "DELETING",
293
- FAILED = "FAILED",
294
- UPDATING = "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 enum WorkflowEngine {
457
- NEXTFLOW = "NEXTFLOW",
458
- WDL = "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 enum WorkflowStatus {
477
- ACTIVE = "ACTIVE",
478
- CREATING = "CREATING",
479
- DELETED = "DELETED",
480
- FAILED = "FAILED",
481
- INACTIVE = "INACTIVE",
482
- UPDATING = "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 enum ReadSetExportJobItemStatus {
523
- FAILED = "FAILED",
524
- FINISHED = "FINISHED",
525
- IN_PROGRESS = "IN_PROGRESS",
526
- NOT_STARTED = "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 enum ReadSetExportJobStatus {
534
- CANCELLED = "CANCELLED",
535
- CANCELLING = "CANCELLING",
536
- COMPLETED = "COMPLETED",
537
- COMPLETED_WITH_FAILURES = "COMPLETED_WITH_FAILURES",
538
- FAILED = "FAILED",
539
- IN_PROGRESS = "IN_PROGRESS",
540
- SUBMITTED = "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 enum FileType {
561
- BAM = "BAM",
562
- CRAM = "CRAM",
563
- FASTQ = "FASTQ",
564
- }
565
- export declare enum ReadSetFile {
566
- INDEX = "INDEX",
567
- SOURCE1 = "SOURCE1",
568
- SOURCE2 = "SOURCE2",
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 enum ReadSetImportJobItemStatus {
623
- FAILED = "FAILED",
624
- FINISHED = "FINISHED",
625
- IN_PROGRESS = "IN_PROGRESS",
626
- NOT_STARTED = "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 enum ReadSetImportJobStatus {
642
- CANCELLED = "CANCELLED",
643
- CANCELLING = "CANCELLING",
644
- COMPLETED = "COMPLETED",
645
- COMPLETED_WITH_FAILURES = "COMPLETED_WITH_FAILURES",
646
- FAILED = "FAILED",
647
- IN_PROGRESS = "IN_PROGRESS",
648
- SUBMITTED = "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 enum ReadSetStatus {
676
- ACTIVATING = "ACTIVATING",
677
- ACTIVE = "ACTIVE",
678
- ARCHIVED = "ARCHIVED",
679
- DELETED = "DELETED",
680
- DELETING = "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 enum ReferenceFile {
698
- INDEX = "INDEX",
699
- SOURCE = "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 enum ReferenceImportJobItemStatus {
716
- FAILED = "FAILED",
717
- FINISHED = "FINISHED",
718
- IN_PROGRESS = "IN_PROGRESS",
719
- NOT_STARTED = "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 enum ReferenceImportJobStatus {
730
- CANCELLED = "CANCELLED",
731
- CANCELLING = "CANCELLING",
732
- COMPLETED = "COMPLETED",
733
- COMPLETED_WITH_FAILURES = "COMPLETED_WITH_FAILURES",
734
- FAILED = "FAILED",
735
- IN_PROGRESS = "IN_PROGRESS",
736
- SUBMITTED = "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 enum ReferenceStatus {
757
- ACTIVE = "ACTIVE",
758
- DELETED = "DELETED",
759
- DELETING = "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 enum RunExport {
785
- DEFINITION = "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 enum RunLogLevel {
792
- ALL = "ALL",
793
- ERROR = "ERROR",
794
- FATAL = "FATAL",
795
- OFF = "OFF",
796
- }
797
- export declare enum RunStatus {
798
- CANCELLED = "CANCELLED",
799
- COMPLETED = "COMPLETED",
800
- DELETED = "DELETED",
801
- FAILED = "FAILED",
802
- PENDING = "PENDING",
803
- RUNNING = "RUNNING",
804
- STARTING = "STARTING",
805
- STOPPING = "STOPPING",
806
- }
807
- export declare enum WorkflowType {
808
- PRIVATE = "PRIVATE",
809
- SERVICE = "SERVICE",
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 enum TaskStatus {
854
- CANCELLED = "CANCELLED",
855
- COMPLETED = "COMPLETED",
856
- FAILED = "FAILED",
857
- PENDING = "PENDING",
858
- RUNNING = "RUNNING",
859
- STARTING = "STARTING",
860
- STOPPING = "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 enum WorkflowExport {
923
- DEFINITION = "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.301.0",
4
+ "version": "3.303.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.301.0",
25
- "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.301.0",
27
- "@aws-sdk/fetch-http-handler": "3.296.0",
28
- "@aws-sdk/hash-node": "3.296.0",
29
- "@aws-sdk/invalid-dependency": "3.296.0",
30
- "@aws-sdk/middleware-content-length": "3.296.0",
31
- "@aws-sdk/middleware-endpoint": "3.299.0",
32
- "@aws-sdk/middleware-host-header": "3.296.0",
33
- "@aws-sdk/middleware-logger": "3.296.0",
34
- "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.300.0",
36
- "@aws-sdk/middleware-serde": "3.296.0",
37
- "@aws-sdk/middleware-signing": "3.299.0",
38
- "@aws-sdk/middleware-stack": "3.296.0",
39
- "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.300.0",
41
- "@aws-sdk/node-http-handler": "3.296.0",
42
- "@aws-sdk/protocol-http": "3.296.0",
43
- "@aws-sdk/smithy-client": "3.296.0",
44
- "@aws-sdk/types": "3.296.0",
45
- "@aws-sdk/url-parser": "3.296.0",
46
- "@aws-sdk/util-base64": "3.295.0",
47
- "@aws-sdk/util-body-length-browser": "3.295.0",
48
- "@aws-sdk/util-body-length-node": "3.295.0",
49
- "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
- "@aws-sdk/util-endpoints": "3.296.0",
52
- "@aws-sdk/util-retry": "3.296.0",
53
- "@aws-sdk/util-stream-browser": "3.296.0",
54
- "@aws-sdk/util-stream-node": "3.296.0",
55
- "@aws-sdk/util-user-agent-browser": "3.299.0",
56
- "@aws-sdk/util-user-agent-node": "3.300.0",
57
- "@aws-sdk/util-utf8": "3.295.0",
58
- "@aws-sdk/util-waiter": "3.296.0",
24
+ "@aws-sdk/client-sts": "3.303.0",
25
+ "@aws-sdk/config-resolver": "3.303.0",
26
+ "@aws-sdk/credential-provider-node": "3.303.0",
27
+ "@aws-sdk/fetch-http-handler": "3.303.0",
28
+ "@aws-sdk/hash-node": "3.303.0",
29
+ "@aws-sdk/invalid-dependency": "3.303.0",
30
+ "@aws-sdk/middleware-content-length": "3.303.0",
31
+ "@aws-sdk/middleware-endpoint": "3.303.0",
32
+ "@aws-sdk/middleware-host-header": "3.303.0",
33
+ "@aws-sdk/middleware-logger": "3.303.0",
34
+ "@aws-sdk/middleware-recursion-detection": "3.303.0",
35
+ "@aws-sdk/middleware-retry": "3.303.0",
36
+ "@aws-sdk/middleware-serde": "3.303.0",
37
+ "@aws-sdk/middleware-signing": "3.303.0",
38
+ "@aws-sdk/middleware-stack": "3.303.0",
39
+ "@aws-sdk/middleware-user-agent": "3.303.0",
40
+ "@aws-sdk/node-config-provider": "3.303.0",
41
+ "@aws-sdk/node-http-handler": "3.303.0",
42
+ "@aws-sdk/protocol-http": "3.303.0",
43
+ "@aws-sdk/smithy-client": "3.303.0",
44
+ "@aws-sdk/types": "3.303.0",
45
+ "@aws-sdk/url-parser": "3.303.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.303.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.303.0",
51
+ "@aws-sdk/util-endpoints": "3.303.0",
52
+ "@aws-sdk/util-retry": "3.303.0",
53
+ "@aws-sdk/util-stream-browser": "3.303.0",
54
+ "@aws-sdk/util-stream-node": "3.303.0",
55
+ "@aws-sdk/util-user-agent-browser": "3.303.0",
56
+ "@aws-sdk/util-user-agent-node": "3.303.0",
57
+ "@aws-sdk/util-utf8": "3.303.0",
58
+ "@aws-sdk/util-waiter": "3.303.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.295.0",
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",