@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.
@@ -17,16 +17,21 @@ export declare class AccessDeniedException extends __BaseException {
17
17
  }
18
18
  /**
19
19
  * @public
20
+ * @enum
20
21
  */
21
- export declare enum ReadSetActivationJobStatus {
22
- CANCELLED = "CANCELLED",
23
- CANCELLING = "CANCELLING",
24
- COMPLETED = "COMPLETED",
25
- COMPLETED_WITH_FAILURES = "COMPLETED_WITH_FAILURES",
26
- FAILED = "FAILED",
27
- IN_PROGRESS = "IN_PROGRESS",
28
- SUBMITTED = "SUBMITTED"
29
- }
22
+ export declare const ReadSetActivationJobStatus: {
23
+ readonly CANCELLED: "CANCELLED";
24
+ readonly CANCELLING: "CANCELLING";
25
+ readonly COMPLETED: "COMPLETED";
26
+ readonly COMPLETED_WITH_FAILURES: "COMPLETED_WITH_FAILURES";
27
+ readonly FAILED: "FAILED";
28
+ readonly IN_PROGRESS: "IN_PROGRESS";
29
+ readonly SUBMITTED: "SUBMITTED";
30
+ };
31
+ /**
32
+ * @public
33
+ */
34
+ export type ReadSetActivationJobStatus = (typeof ReadSetActivationJobStatus)[keyof typeof ReadSetActivationJobStatus];
30
35
  /**
31
36
  * @public
32
37
  * <p>A read set activation job filter.</p>
@@ -73,13 +78,18 @@ export interface ActivateReadSetJobItem {
73
78
  }
74
79
  /**
75
80
  * @public
81
+ * @enum
76
82
  */
77
- export declare enum ReadSetActivationJobItemStatus {
78
- FAILED = "FAILED",
79
- FINISHED = "FINISHED",
80
- IN_PROGRESS = "IN_PROGRESS",
81
- NOT_STARTED = "NOT_STARTED"
82
- }
83
+ export declare const ReadSetActivationJobItemStatus: {
84
+ readonly FAILED: "FAILED";
85
+ readonly FINISHED: "FINISHED";
86
+ readonly IN_PROGRESS: "IN_PROGRESS";
87
+ readonly NOT_STARTED: "NOT_STARTED";
88
+ };
89
+ /**
90
+ * @public
91
+ */
92
+ export type ReadSetActivationJobItemStatus = (typeof ReadSetActivationJobItemStatus)[keyof typeof ReadSetActivationJobItemStatus];
83
93
  /**
84
94
  * @public
85
95
  * <p>A source for a read set activation job.</p>
@@ -100,33 +110,38 @@ export interface ActivateReadSetSourceItem {
100
110
  }
101
111
  /**
102
112
  * @public
113
+ * @enum
103
114
  */
104
- export declare enum JobStatus {
115
+ export declare const JobStatus: {
105
116
  /**
106
117
  * The Job was cancelled
107
118
  */
108
- CANCELLED = "CANCELLED",
119
+ readonly CANCELLED: "CANCELLED";
109
120
  /**
110
121
  * The Job has completed
111
122
  */
112
- COMPLETED = "COMPLETED",
123
+ readonly COMPLETED: "COMPLETED";
113
124
  /**
114
125
  * The Job completed with failed runs
115
126
  */
116
- COMPLETED_WITH_FAILURES = "COMPLETED_WITH_FAILURES",
127
+ readonly COMPLETED_WITH_FAILURES: "COMPLETED_WITH_FAILURES";
117
128
  /**
118
129
  * The Job failed
119
130
  */
120
- FAILED = "FAILED",
131
+ readonly FAILED: "FAILED";
121
132
  /**
122
133
  * The Job is executing
123
134
  */
124
- IN_PROGRESS = "IN_PROGRESS",
135
+ readonly IN_PROGRESS: "IN_PROGRESS";
125
136
  /**
126
137
  * The Job has been submitted to run
127
138
  */
128
- SUBMITTED = "SUBMITTED"
129
- }
139
+ readonly SUBMITTED: "SUBMITTED";
140
+ };
141
+ /**
142
+ * @public
143
+ */
144
+ export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
130
145
  /**
131
146
  * @public
132
147
  * <p>Details about an imported annotation item.</p>
@@ -550,13 +565,18 @@ export declare namespace ReferenceItem {
550
565
  }
551
566
  /**
552
567
  * @public
568
+ * @enum
553
569
  */
554
- export declare enum EncryptionType {
570
+ export declare const EncryptionType: {
555
571
  /**
556
572
  * KMS
557
573
  */
558
- KMS = "KMS"
559
- }
574
+ readonly KMS: "KMS";
575
+ };
576
+ /**
577
+ * @public
578
+ */
579
+ export type EncryptionType = (typeof EncryptionType)[keyof typeof EncryptionType];
560
580
  /**
561
581
  * @public
562
582
  * <p>Server-side encryption (SSE) settings for a store.</p>
@@ -573,94 +593,114 @@ export interface SseConfig {
573
593
  }
574
594
  /**
575
595
  * @public
596
+ * @enum
576
597
  */
577
- export declare enum StoreFormat {
598
+ export declare const StoreFormat: {
578
599
  /**
579
600
  * GFF3 Format
580
601
  */
581
- GFF = "GFF",
602
+ readonly GFF: "GFF";
582
603
  /**
583
604
  * TSV Format
584
605
  */
585
- TSV = "TSV",
606
+ readonly TSV: "TSV";
586
607
  /**
587
608
  * VCF Format
588
609
  */
589
- VCF = "VCF"
590
- }
610
+ readonly VCF: "VCF";
611
+ };
591
612
  /**
592
613
  * @public
593
614
  */
594
- export declare enum AnnotationType {
615
+ export type StoreFormat = (typeof StoreFormat)[keyof typeof StoreFormat];
616
+ /**
617
+ * @public
618
+ * @enum
619
+ */
620
+ export declare const AnnotationType: {
595
621
  /**
596
622
  * Contains contig and 1-base position
597
623
  */
598
- CHR_POS = "CHR_POS",
624
+ readonly CHR_POS: "CHR_POS";
599
625
  /**
600
626
  * Contains contig, 1-base position, ref and alt allele information
601
627
  */
602
- CHR_POS_REF_ALT = "CHR_POS_REF_ALT",
628
+ readonly CHR_POS_REF_ALT: "CHR_POS_REF_ALT";
603
629
  /**
604
630
  * Contains contig, start, and end positions. Coordinates are 1-based
605
631
  */
606
- CHR_START_END_ONE_BASE = "CHR_START_END_ONE_BASE",
632
+ readonly CHR_START_END_ONE_BASE: "CHR_START_END_ONE_BASE";
607
633
  /**
608
634
  * Contains contig, start, end, ref and alt allele information. Coordinates are 1-based
609
635
  */
610
- CHR_START_END_REF_ALT_ONE_BASE = "CHR_START_END_REF_ALT_ONE_BASE",
636
+ readonly CHR_START_END_REF_ALT_ONE_BASE: "CHR_START_END_REF_ALT_ONE_BASE";
611
637
  /**
612
638
  * Contains contig, start, end, ref and alt allele information. Coordinates are 0-based
613
639
  */
614
- CHR_START_END_REF_ALT_ZERO_BASE = "CHR_START_END_REF_ALT_ZERO_BASE",
640
+ readonly CHR_START_END_REF_ALT_ZERO_BASE: "CHR_START_END_REF_ALT_ZERO_BASE";
615
641
  /**
616
642
  * Contains contig, start, and end positions. Coordinates are 0-based
617
643
  */
618
- CHR_START_END_ZERO_BASE = "CHR_START_END_ZERO_BASE",
644
+ readonly CHR_START_END_ZERO_BASE: "CHR_START_END_ZERO_BASE";
619
645
  /**
620
646
  * Generic text file. No genomic information
621
647
  */
622
- GENERIC = "GENERIC"
623
- }
648
+ readonly GENERIC: "GENERIC";
649
+ };
624
650
  /**
625
651
  * @public
626
652
  */
627
- export declare enum FormatToHeaderKey {
628
- ALT = "ALT",
629
- CHR = "CHR",
630
- END = "END",
631
- POS = "POS",
632
- REF = "REF",
633
- START = "START"
634
- }
653
+ export type AnnotationType = (typeof AnnotationType)[keyof typeof AnnotationType];
654
+ /**
655
+ * @public
656
+ * @enum
657
+ */
658
+ export declare const FormatToHeaderKey: {
659
+ readonly ALT: "ALT";
660
+ readonly CHR: "CHR";
661
+ readonly END: "END";
662
+ readonly POS: "POS";
663
+ readonly REF: "REF";
664
+ readonly START: "START";
665
+ };
666
+ /**
667
+ * @public
668
+ */
669
+ export type FormatToHeaderKey = (typeof FormatToHeaderKey)[keyof typeof FormatToHeaderKey];
635
670
  /**
636
671
  * @public
672
+ * @enum
637
673
  */
638
- export declare enum SchemaValueType {
674
+ export declare const SchemaValueType: {
639
675
  /**
640
676
  * BOOLEAN type
641
677
  */
642
- BOOLEAN = "BOOLEAN",
678
+ readonly BOOLEAN: "BOOLEAN";
643
679
  /**
644
680
  * DOUBLE type
645
681
  */
646
- DOUBLE = "DOUBLE",
682
+ readonly DOUBLE: "DOUBLE";
647
683
  /**
648
684
  * FLOAT type
649
685
  */
650
- FLOAT = "FLOAT",
686
+ readonly FLOAT: "FLOAT";
651
687
  /**
652
688
  * INT type
653
689
  */
654
- INT = "INT",
690
+ readonly INT: "INT";
655
691
  /**
656
692
  * LONG type
657
693
  */
658
- LONG = "LONG",
694
+ readonly LONG: "LONG";
659
695
  /**
660
696
  * STRING type
661
697
  */
662
- STRING = "STRING"
663
- }
698
+ readonly STRING: "STRING";
699
+ };
700
+ /**
701
+ * @public
702
+ */
703
+ export type SchemaValueType = (typeof SchemaValueType)[keyof typeof SchemaValueType];
664
704
  /**
665
705
  * @public
666
706
  * <p>File settings for a TSV store.</p>
@@ -740,29 +780,34 @@ export interface CreateAnnotationStoreRequest {
740
780
  }
741
781
  /**
742
782
  * @public
783
+ * @enum
743
784
  */
744
- export declare enum StoreStatus {
785
+ export declare const StoreStatus: {
745
786
  /**
746
787
  * The Store is active
747
788
  */
748
- ACTIVE = "ACTIVE",
789
+ readonly ACTIVE: "ACTIVE";
749
790
  /**
750
791
  * The Store is being created
751
792
  */
752
- CREATING = "CREATING",
793
+ readonly CREATING: "CREATING";
753
794
  /**
754
795
  * The Store is deleting
755
796
  */
756
- DELETING = "DELETING",
797
+ readonly DELETING: "DELETING";
757
798
  /**
758
799
  * The Store creation failed
759
800
  */
760
- FAILED = "FAILED",
801
+ readonly FAILED: "FAILED";
761
802
  /**
762
803
  * The Store is updating
763
804
  */
764
- UPDATING = "UPDATING"
765
- }
805
+ readonly UPDATING: "UPDATING";
806
+ };
807
+ /**
808
+ * @public
809
+ */
810
+ export type StoreStatus = (typeof StoreStatus)[keyof typeof StoreStatus];
766
811
  /**
767
812
  * @public
768
813
  */
@@ -1321,11 +1366,16 @@ export interface CreateVariantStoreResponse {
1321
1366
  }
1322
1367
  /**
1323
1368
  * @public
1369
+ * @enum
1324
1370
  */
1325
- export declare enum WorkflowEngine {
1326
- NEXTFLOW = "NEXTFLOW",
1327
- WDL = "WDL"
1328
- }
1371
+ export declare const WorkflowEngine: {
1372
+ readonly NEXTFLOW: "NEXTFLOW";
1373
+ readonly WDL: "WDL";
1374
+ };
1375
+ /**
1376
+ * @public
1377
+ */
1378
+ export type WorkflowEngine = (typeof WorkflowEngine)[keyof typeof WorkflowEngine];
1329
1379
  /**
1330
1380
  * @public
1331
1381
  * <p>A workflow parameter.</p>
@@ -1387,15 +1437,20 @@ export interface CreateWorkflowRequest {
1387
1437
  }
1388
1438
  /**
1389
1439
  * @public
1440
+ * @enum
1390
1441
  */
1391
- export declare enum WorkflowStatus {
1392
- ACTIVE = "ACTIVE",
1393
- CREATING = "CREATING",
1394
- DELETED = "DELETED",
1395
- FAILED = "FAILED",
1396
- INACTIVE = "INACTIVE",
1397
- UPDATING = "UPDATING"
1398
- }
1442
+ export declare const WorkflowStatus: {
1443
+ readonly ACTIVE: "ACTIVE";
1444
+ readonly CREATING: "CREATING";
1445
+ readonly DELETED: "DELETED";
1446
+ readonly FAILED: "FAILED";
1447
+ readonly INACTIVE: "INACTIVE";
1448
+ readonly UPDATING: "UPDATING";
1449
+ };
1450
+ /**
1451
+ * @public
1452
+ */
1453
+ export type WorkflowStatus = (typeof WorkflowStatus)[keyof typeof WorkflowStatus];
1399
1454
  /**
1400
1455
  * @public
1401
1456
  */
@@ -1524,13 +1579,18 @@ export interface ExportReadSet {
1524
1579
  }
1525
1580
  /**
1526
1581
  * @public
1582
+ * @enum
1527
1583
  */
1528
- export declare enum ReadSetExportJobItemStatus {
1529
- FAILED = "FAILED",
1530
- FINISHED = "FINISHED",
1531
- IN_PROGRESS = "IN_PROGRESS",
1532
- NOT_STARTED = "NOT_STARTED"
1533
- }
1584
+ export declare const ReadSetExportJobItemStatus: {
1585
+ readonly FAILED: "FAILED";
1586
+ readonly FINISHED: "FINISHED";
1587
+ readonly IN_PROGRESS: "IN_PROGRESS";
1588
+ readonly NOT_STARTED: "NOT_STARTED";
1589
+ };
1590
+ /**
1591
+ * @public
1592
+ */
1593
+ export type ReadSetExportJobItemStatus = (typeof ReadSetExportJobItemStatus)[keyof typeof ReadSetExportJobItemStatus];
1534
1594
  /**
1535
1595
  * @public
1536
1596
  * <p>Details about a read set.</p>
@@ -1551,16 +1611,21 @@ export interface ExportReadSetDetail {
1551
1611
  }
1552
1612
  /**
1553
1613
  * @public
1614
+ * @enum
1554
1615
  */
1555
- export declare enum ReadSetExportJobStatus {
1556
- CANCELLED = "CANCELLED",
1557
- CANCELLING = "CANCELLING",
1558
- COMPLETED = "COMPLETED",
1559
- COMPLETED_WITH_FAILURES = "COMPLETED_WITH_FAILURES",
1560
- FAILED = "FAILED",
1561
- IN_PROGRESS = "IN_PROGRESS",
1562
- SUBMITTED = "SUBMITTED"
1563
- }
1616
+ export declare const ReadSetExportJobStatus: {
1617
+ readonly CANCELLED: "CANCELLED";
1618
+ readonly CANCELLING: "CANCELLING";
1619
+ readonly COMPLETED: "COMPLETED";
1620
+ readonly COMPLETED_WITH_FAILURES: "COMPLETED_WITH_FAILURES";
1621
+ readonly FAILED: "FAILED";
1622
+ readonly IN_PROGRESS: "IN_PROGRESS";
1623
+ readonly SUBMITTED: "SUBMITTED";
1624
+ };
1625
+ /**
1626
+ * @public
1627
+ */
1628
+ export type ReadSetExportJobStatus = (typeof ReadSetExportJobStatus)[keyof typeof ReadSetExportJobStatus];
1564
1629
  /**
1565
1630
  * @public
1566
1631
  * <p>An read set export job filter.</p>
@@ -1629,20 +1694,30 @@ export interface FileInformation {
1629
1694
  }
1630
1695
  /**
1631
1696
  * @public
1697
+ * @enum
1632
1698
  */
1633
- export declare enum FileType {
1634
- BAM = "BAM",
1635
- CRAM = "CRAM",
1636
- FASTQ = "FASTQ"
1637
- }
1699
+ export declare const FileType: {
1700
+ readonly BAM: "BAM";
1701
+ readonly CRAM: "CRAM";
1702
+ readonly FASTQ: "FASTQ";
1703
+ };
1638
1704
  /**
1639
1705
  * @public
1640
1706
  */
1641
- export declare enum ReadSetFile {
1642
- INDEX = "INDEX",
1643
- SOURCE1 = "SOURCE1",
1644
- SOURCE2 = "SOURCE2"
1645
- }
1707
+ export type FileType = (typeof FileType)[keyof typeof FileType];
1708
+ /**
1709
+ * @public
1710
+ * @enum
1711
+ */
1712
+ export declare const ReadSetFile: {
1713
+ readonly INDEX: "INDEX";
1714
+ readonly SOURCE1: "SOURCE1";
1715
+ readonly SOURCE2: "SOURCE2";
1716
+ };
1717
+ /**
1718
+ * @public
1719
+ */
1720
+ export type ReadSetFile = (typeof ReadSetFile)[keyof typeof ReadSetFile];
1646
1721
  /**
1647
1722
  * @public
1648
1723
  */
@@ -1811,13 +1886,18 @@ export interface SourceFiles {
1811
1886
  }
1812
1887
  /**
1813
1888
  * @public
1889
+ * @enum
1814
1890
  */
1815
- export declare enum ReadSetImportJobItemStatus {
1816
- FAILED = "FAILED",
1817
- FINISHED = "FINISHED",
1818
- IN_PROGRESS = "IN_PROGRESS",
1819
- NOT_STARTED = "NOT_STARTED"
1820
- }
1891
+ export declare const ReadSetImportJobItemStatus: {
1892
+ readonly FAILED: "FAILED";
1893
+ readonly FINISHED: "FINISHED";
1894
+ readonly IN_PROGRESS: "IN_PROGRESS";
1895
+ readonly NOT_STARTED: "NOT_STARTED";
1896
+ };
1897
+ /**
1898
+ * @public
1899
+ */
1900
+ export type ReadSetImportJobItemStatus = (typeof ReadSetImportJobItemStatus)[keyof typeof ReadSetImportJobItemStatus];
1821
1901
  /**
1822
1902
  * @public
1823
1903
  * <p>A source for an import read set job.</p>
@@ -1870,16 +1950,21 @@ export interface ImportReadSetSourceItem {
1870
1950
  }
1871
1951
  /**
1872
1952
  * @public
1953
+ * @enum
1873
1954
  */
1874
- export declare enum ReadSetImportJobStatus {
1875
- CANCELLED = "CANCELLED",
1876
- CANCELLING = "CANCELLING",
1877
- COMPLETED = "COMPLETED",
1878
- COMPLETED_WITH_FAILURES = "COMPLETED_WITH_FAILURES",
1879
- FAILED = "FAILED",
1880
- IN_PROGRESS = "IN_PROGRESS",
1881
- SUBMITTED = "SUBMITTED"
1882
- }
1955
+ export declare const ReadSetImportJobStatus: {
1956
+ readonly CANCELLED: "CANCELLED";
1957
+ readonly CANCELLING: "CANCELLING";
1958
+ readonly COMPLETED: "COMPLETED";
1959
+ readonly COMPLETED_WITH_FAILURES: "COMPLETED_WITH_FAILURES";
1960
+ readonly FAILED: "FAILED";
1961
+ readonly IN_PROGRESS: "IN_PROGRESS";
1962
+ readonly SUBMITTED: "SUBMITTED";
1963
+ };
1964
+ /**
1965
+ * @public
1966
+ */
1967
+ export type ReadSetImportJobStatus = (typeof ReadSetImportJobStatus)[keyof typeof ReadSetImportJobStatus];
1883
1968
  /**
1884
1969
  * @public
1885
1970
  */
@@ -1972,14 +2057,19 @@ export interface SequenceInformation {
1972
2057
  }
1973
2058
  /**
1974
2059
  * @public
2060
+ * @enum
1975
2061
  */
1976
- export declare enum ReadSetStatus {
1977
- ACTIVATING = "ACTIVATING",
1978
- ACTIVE = "ACTIVE",
1979
- ARCHIVED = "ARCHIVED",
1980
- DELETED = "DELETED",
1981
- DELETING = "DELETING"
1982
- }
2062
+ export declare const ReadSetStatus: {
2063
+ readonly ACTIVATING: "ACTIVATING";
2064
+ readonly ACTIVE: "ACTIVE";
2065
+ readonly ARCHIVED: "ARCHIVED";
2066
+ readonly DELETED: "DELETED";
2067
+ readonly DELETING: "DELETING";
2068
+ };
2069
+ /**
2070
+ * @public
2071
+ */
2072
+ export type ReadSetStatus = (typeof ReadSetStatus)[keyof typeof ReadSetStatus];
1983
2073
  /**
1984
2074
  * @public
1985
2075
  */
@@ -2039,11 +2129,16 @@ export interface GetReadSetMetadataResponse {
2039
2129
  }
2040
2130
  /**
2041
2131
  * @public
2132
+ * @enum
2042
2133
  */
2043
- export declare enum ReferenceFile {
2044
- INDEX = "INDEX",
2045
- SOURCE = "SOURCE"
2046
- }
2134
+ export declare const ReferenceFile: {
2135
+ readonly INDEX: "INDEX";
2136
+ readonly SOURCE: "SOURCE";
2137
+ };
2138
+ /**
2139
+ * @public
2140
+ */
2141
+ export type ReferenceFile = (typeof ReferenceFile)[keyof typeof ReferenceFile];
2047
2142
  /**
2048
2143
  * @public
2049
2144
  */
@@ -2093,13 +2188,18 @@ export interface GetReferenceImportJobRequest {
2093
2188
  }
2094
2189
  /**
2095
2190
  * @public
2191
+ * @enum
2096
2192
  */
2097
- export declare enum ReferenceImportJobItemStatus {
2098
- FAILED = "FAILED",
2099
- FINISHED = "FINISHED",
2100
- IN_PROGRESS = "IN_PROGRESS",
2101
- NOT_STARTED = "NOT_STARTED"
2102
- }
2193
+ export declare const ReferenceImportJobItemStatus: {
2194
+ readonly FAILED: "FAILED";
2195
+ readonly FINISHED: "FINISHED";
2196
+ readonly IN_PROGRESS: "IN_PROGRESS";
2197
+ readonly NOT_STARTED: "NOT_STARTED";
2198
+ };
2199
+ /**
2200
+ * @public
2201
+ */
2202
+ export type ReferenceImportJobItemStatus = (typeof ReferenceImportJobItemStatus)[keyof typeof ReferenceImportJobItemStatus];
2103
2203
  /**
2104
2204
  * @public
2105
2205
  * <p>An genome reference source.</p>
@@ -2132,16 +2232,21 @@ export interface ImportReferenceSourceItem {
2132
2232
  }
2133
2233
  /**
2134
2234
  * @public
2235
+ * @enum
2135
2236
  */
2136
- export declare enum ReferenceImportJobStatus {
2137
- CANCELLED = "CANCELLED",
2138
- CANCELLING = "CANCELLING",
2139
- COMPLETED = "COMPLETED",
2140
- COMPLETED_WITH_FAILURES = "COMPLETED_WITH_FAILURES",
2141
- FAILED = "FAILED",
2142
- IN_PROGRESS = "IN_PROGRESS",
2143
- SUBMITTED = "SUBMITTED"
2144
- }
2237
+ export declare const ReferenceImportJobStatus: {
2238
+ readonly CANCELLED: "CANCELLED";
2239
+ readonly CANCELLING: "CANCELLING";
2240
+ readonly COMPLETED: "COMPLETED";
2241
+ readonly COMPLETED_WITH_FAILURES: "COMPLETED_WITH_FAILURES";
2242
+ readonly FAILED: "FAILED";
2243
+ readonly IN_PROGRESS: "IN_PROGRESS";
2244
+ readonly SUBMITTED: "SUBMITTED";
2245
+ };
2246
+ /**
2247
+ * @public
2248
+ */
2249
+ export type ReferenceImportJobStatus = (typeof ReferenceImportJobStatus)[keyof typeof ReferenceImportJobStatus];
2145
2250
  /**
2146
2251
  * @public
2147
2252
  */
@@ -2208,12 +2313,17 @@ export interface ReferenceFiles {
2208
2313
  }
2209
2314
  /**
2210
2315
  * @public
2316
+ * @enum
2211
2317
  */
2212
- export declare enum ReferenceStatus {
2213
- ACTIVE = "ACTIVE",
2214
- DELETED = "DELETED",
2215
- DELETING = "DELETING"
2216
- }
2318
+ export declare const ReferenceStatus: {
2319
+ readonly ACTIVE: "ACTIVE";
2320
+ readonly DELETED: "DELETED";
2321
+ readonly DELETING: "DELETING";
2322
+ };
2323
+ /**
2324
+ * @public
2325
+ */
2326
+ export type ReferenceStatus = (typeof ReferenceStatus)[keyof typeof ReferenceStatus];
2217
2327
  /**
2218
2328
  * @public
2219
2329
  */
@@ -2299,10 +2409,15 @@ export interface GetReferenceStoreResponse {
2299
2409
  }
2300
2410
  /**
2301
2411
  * @public
2412
+ * @enum
2302
2413
  */
2303
- export declare enum RunExport {
2304
- DEFINITION = "DEFINITION"
2305
- }
2414
+ export declare const RunExport: {
2415
+ readonly DEFINITION: "DEFINITION";
2416
+ };
2417
+ /**
2418
+ * @public
2419
+ */
2420
+ export type RunExport = (typeof RunExport)[keyof typeof RunExport];
2306
2421
  /**
2307
2422
  * @public
2308
2423
  */
@@ -2318,33 +2433,48 @@ export interface GetRunRequest {
2318
2433
  }
2319
2434
  /**
2320
2435
  * @public
2436
+ * @enum
2321
2437
  */
2322
- export declare enum RunLogLevel {
2323
- ALL = "ALL",
2324
- ERROR = "ERROR",
2325
- FATAL = "FATAL",
2326
- OFF = "OFF"
2327
- }
2438
+ export declare const RunLogLevel: {
2439
+ readonly ALL: "ALL";
2440
+ readonly ERROR: "ERROR";
2441
+ readonly FATAL: "FATAL";
2442
+ readonly OFF: "OFF";
2443
+ };
2328
2444
  /**
2329
2445
  * @public
2330
2446
  */
2331
- export declare enum RunStatus {
2332
- CANCELLED = "CANCELLED",
2333
- COMPLETED = "COMPLETED",
2334
- DELETED = "DELETED",
2335
- FAILED = "FAILED",
2336
- PENDING = "PENDING",
2337
- RUNNING = "RUNNING",
2338
- STARTING = "STARTING",
2339
- STOPPING = "STOPPING"
2340
- }
2447
+ export type RunLogLevel = (typeof RunLogLevel)[keyof typeof RunLogLevel];
2341
2448
  /**
2342
2449
  * @public
2450
+ * @enum
2343
2451
  */
2344
- export declare enum WorkflowType {
2345
- PRIVATE = "PRIVATE",
2346
- SERVICE = "SERVICE"
2347
- }
2452
+ export declare const RunStatus: {
2453
+ readonly CANCELLED: "CANCELLED";
2454
+ readonly COMPLETED: "COMPLETED";
2455
+ readonly DELETED: "DELETED";
2456
+ readonly FAILED: "FAILED";
2457
+ readonly PENDING: "PENDING";
2458
+ readonly RUNNING: "RUNNING";
2459
+ readonly STARTING: "STARTING";
2460
+ readonly STOPPING: "STOPPING";
2461
+ };
2462
+ /**
2463
+ * @public
2464
+ */
2465
+ export type RunStatus = (typeof RunStatus)[keyof typeof RunStatus];
2466
+ /**
2467
+ * @public
2468
+ * @enum
2469
+ */
2470
+ export declare const WorkflowType: {
2471
+ readonly PRIVATE: "PRIVATE";
2472
+ readonly SERVICE: "SERVICE";
2473
+ };
2474
+ /**
2475
+ * @public
2476
+ */
2477
+ export type WorkflowType = (typeof WorkflowType)[keyof typeof WorkflowType];
2348
2478
  /**
2349
2479
  * @public
2350
2480
  */
@@ -2503,16 +2633,21 @@ export interface GetRunTaskRequest {
2503
2633
  }
2504
2634
  /**
2505
2635
  * @public
2636
+ * @enum
2506
2637
  */
2507
- export declare enum TaskStatus {
2508
- CANCELLED = "CANCELLED",
2509
- COMPLETED = "COMPLETED",
2510
- FAILED = "FAILED",
2511
- PENDING = "PENDING",
2512
- RUNNING = "RUNNING",
2513
- STARTING = "STARTING",
2514
- STOPPING = "STOPPING"
2515
- }
2638
+ export declare const TaskStatus: {
2639
+ readonly CANCELLED: "CANCELLED";
2640
+ readonly COMPLETED: "COMPLETED";
2641
+ readonly FAILED: "FAILED";
2642
+ readonly PENDING: "PENDING";
2643
+ readonly RUNNING: "RUNNING";
2644
+ readonly STARTING: "STARTING";
2645
+ readonly STOPPING: "STOPPING";
2646
+ };
2647
+ /**
2648
+ * @public
2649
+ */
2650
+ export type TaskStatus = (typeof TaskStatus)[keyof typeof TaskStatus];
2516
2651
  /**
2517
2652
  * @public
2518
2653
  */
@@ -2732,10 +2867,15 @@ export interface GetVariantStoreResponse {
2732
2867
  }
2733
2868
  /**
2734
2869
  * @public
2870
+ * @enum
2735
2871
  */
2736
- export declare enum WorkflowExport {
2737
- DEFINITION = "DEFINITION"
2738
- }
2872
+ export declare const WorkflowExport: {
2873
+ readonly DEFINITION: "DEFINITION";
2874
+ };
2875
+ /**
2876
+ * @public
2877
+ */
2878
+ export type WorkflowExport = (typeof WorkflowExport)[keyof typeof WorkflowExport];
2739
2879
  /**
2740
2880
  * @public
2741
2881
  */