@aws-sdk/client-omics 3.428.0 → 3.429.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/models/models_0.d.ts +112 -112
- package/dist-types/ts3.4/models/models_0.d.ts +112 -112
- package/package.json +5 -5
|
@@ -194,7 +194,7 @@ export interface AcceptShareResponse {
|
|
|
194
194
|
* The status of an analytics store share.
|
|
195
195
|
* </p>
|
|
196
196
|
*/
|
|
197
|
-
status?: ShareStatus
|
|
197
|
+
status?: ShareStatus;
|
|
198
198
|
}
|
|
199
199
|
/**
|
|
200
200
|
* @public
|
|
@@ -234,7 +234,7 @@ export interface ActivateReadSetFilter {
|
|
|
234
234
|
* @public
|
|
235
235
|
* <p>The filter's status.</p>
|
|
236
236
|
*/
|
|
237
|
-
status?: ReadSetActivationJobStatus
|
|
237
|
+
status?: ReadSetActivationJobStatus;
|
|
238
238
|
/**
|
|
239
239
|
* @public
|
|
240
240
|
* <p>The filter's start date.</p>
|
|
@@ -265,7 +265,7 @@ export interface ActivateReadSetJobItem {
|
|
|
265
265
|
* @public
|
|
266
266
|
* <p>The job's status.</p>
|
|
267
267
|
*/
|
|
268
|
-
status: ReadSetActivationJobStatus |
|
|
268
|
+
status: ReadSetActivationJobStatus | undefined;
|
|
269
269
|
/**
|
|
270
270
|
* @public
|
|
271
271
|
* <p>When the job was created.</p>
|
|
@@ -305,7 +305,7 @@ export interface ActivateReadSetSourceItem {
|
|
|
305
305
|
* @public
|
|
306
306
|
* <p>The source's status.</p>
|
|
307
307
|
*/
|
|
308
|
-
status: ReadSetActivationJobItemStatus |
|
|
308
|
+
status: ReadSetActivationJobItemStatus | undefined;
|
|
309
309
|
/**
|
|
310
310
|
* @public
|
|
311
311
|
* <p>The source's status message.</p>
|
|
@@ -360,7 +360,7 @@ export interface AnnotationImportItemDetail {
|
|
|
360
360
|
* @public
|
|
361
361
|
* <p>The item's job status.</p>
|
|
362
362
|
*/
|
|
363
|
-
jobStatus: JobStatus |
|
|
363
|
+
jobStatus: JobStatus | undefined;
|
|
364
364
|
}
|
|
365
365
|
/**
|
|
366
366
|
* @public
|
|
@@ -548,7 +548,7 @@ export interface GetAnnotationImportResponse {
|
|
|
548
548
|
* @public
|
|
549
549
|
* <p>The job's status.</p>
|
|
550
550
|
*/
|
|
551
|
-
status: JobStatus |
|
|
551
|
+
status: JobStatus | undefined;
|
|
552
552
|
/**
|
|
553
553
|
* @public
|
|
554
554
|
* <p>The job's status message.</p>
|
|
@@ -601,7 +601,7 @@ export interface ListAnnotationImportJobsFilter {
|
|
|
601
601
|
* @public
|
|
602
602
|
* <p>A status to filter on.</p>
|
|
603
603
|
*/
|
|
604
|
-
status?: JobStatus
|
|
604
|
+
status?: JobStatus;
|
|
605
605
|
/**
|
|
606
606
|
* @public
|
|
607
607
|
* <p>A store name to filter on.</p>
|
|
@@ -664,7 +664,7 @@ export interface AnnotationImportJobItem {
|
|
|
664
664
|
* @public
|
|
665
665
|
* <p>The job's status.</p>
|
|
666
666
|
*/
|
|
667
|
-
status: JobStatus |
|
|
667
|
+
status: JobStatus | undefined;
|
|
668
668
|
/**
|
|
669
669
|
* @public
|
|
670
670
|
* <p>When the job was created.</p>
|
|
@@ -815,7 +815,7 @@ export interface SseConfig {
|
|
|
815
815
|
* @public
|
|
816
816
|
* <p>The encryption type.</p>
|
|
817
817
|
*/
|
|
818
|
-
type: EncryptionType |
|
|
818
|
+
type: EncryptionType | undefined;
|
|
819
819
|
/**
|
|
820
820
|
* @public
|
|
821
821
|
* <p>An encryption key ARN.</p>
|
|
@@ -941,17 +941,17 @@ export interface TsvStoreOptions {
|
|
|
941
941
|
* @public
|
|
942
942
|
* <p>The store's annotation type.</p>
|
|
943
943
|
*/
|
|
944
|
-
annotationType?: AnnotationType
|
|
944
|
+
annotationType?: AnnotationType;
|
|
945
945
|
/**
|
|
946
946
|
* @public
|
|
947
947
|
* <p>The store's header key to column name mapping.</p>
|
|
948
948
|
*/
|
|
949
|
-
formatToHeader?: Record<
|
|
949
|
+
formatToHeader?: Record<FormatToHeaderKey, string>;
|
|
950
950
|
/**
|
|
951
951
|
* @public
|
|
952
952
|
* <p>The store's schema.</p>
|
|
953
953
|
*/
|
|
954
|
-
schema?: Record<string, SchemaValueType
|
|
954
|
+
schema?: Record<string, SchemaValueType>[];
|
|
955
955
|
}
|
|
956
956
|
/**
|
|
957
957
|
* @public
|
|
@@ -1023,7 +1023,7 @@ export interface CreateAnnotationStoreRequest {
|
|
|
1023
1023
|
* @public
|
|
1024
1024
|
* <p>The annotation file format of the store.</p>
|
|
1025
1025
|
*/
|
|
1026
|
-
storeFormat: StoreFormat |
|
|
1026
|
+
storeFormat: StoreFormat | undefined;
|
|
1027
1027
|
/**
|
|
1028
1028
|
* @public
|
|
1029
1029
|
* <p>File parsing options for the annotation store.</p>
|
|
@@ -1078,7 +1078,7 @@ export interface CreateAnnotationStoreResponse {
|
|
|
1078
1078
|
* @public
|
|
1079
1079
|
* <p>The annotation file format of the store.</p>
|
|
1080
1080
|
*/
|
|
1081
|
-
storeFormat?: StoreFormat
|
|
1081
|
+
storeFormat?: StoreFormat;
|
|
1082
1082
|
/**
|
|
1083
1083
|
* @public
|
|
1084
1084
|
* <p>The store's file parsing options.</p>
|
|
@@ -1088,7 +1088,7 @@ export interface CreateAnnotationStoreResponse {
|
|
|
1088
1088
|
* @public
|
|
1089
1089
|
* <p>The store's status.</p>
|
|
1090
1090
|
*/
|
|
1091
|
-
status: StoreStatus |
|
|
1091
|
+
status: StoreStatus | undefined;
|
|
1092
1092
|
/**
|
|
1093
1093
|
* @public
|
|
1094
1094
|
* <p>The store's name.</p>
|
|
@@ -1130,7 +1130,7 @@ export interface DeleteAnnotationStoreResponse {
|
|
|
1130
1130
|
* @public
|
|
1131
1131
|
* <p>The store's status.</p>
|
|
1132
1132
|
*/
|
|
1133
|
-
status: StoreStatus |
|
|
1133
|
+
status: StoreStatus | undefined;
|
|
1134
1134
|
}
|
|
1135
1135
|
/**
|
|
1136
1136
|
* @public
|
|
@@ -1160,7 +1160,7 @@ export interface GetAnnotationStoreResponse {
|
|
|
1160
1160
|
* @public
|
|
1161
1161
|
* <p>The store's status.</p>
|
|
1162
1162
|
*/
|
|
1163
|
-
status: StoreStatus |
|
|
1163
|
+
status: StoreStatus | undefined;
|
|
1164
1164
|
/**
|
|
1165
1165
|
* @public
|
|
1166
1166
|
* <p>The store's ARN.</p>
|
|
@@ -1205,7 +1205,7 @@ export interface GetAnnotationStoreResponse {
|
|
|
1205
1205
|
* @public
|
|
1206
1206
|
* <p>The store's annotation file format.</p>
|
|
1207
1207
|
*/
|
|
1208
|
-
storeFormat?: StoreFormat
|
|
1208
|
+
storeFormat?: StoreFormat;
|
|
1209
1209
|
/**
|
|
1210
1210
|
* @public
|
|
1211
1211
|
* <p>A status message.</p>
|
|
@@ -1233,7 +1233,7 @@ export interface ListAnnotationStoresFilter {
|
|
|
1233
1233
|
* @public
|
|
1234
1234
|
* <p>A status to filter on.</p>
|
|
1235
1235
|
*/
|
|
1236
|
-
status?: StoreStatus
|
|
1236
|
+
status?: StoreStatus;
|
|
1237
1237
|
}
|
|
1238
1238
|
/**
|
|
1239
1239
|
* @public
|
|
@@ -1279,7 +1279,7 @@ export interface AnnotationStoreItem {
|
|
|
1279
1279
|
* @public
|
|
1280
1280
|
* <p>The store's status.</p>
|
|
1281
1281
|
*/
|
|
1282
|
-
status: StoreStatus |
|
|
1282
|
+
status: StoreStatus | undefined;
|
|
1283
1283
|
/**
|
|
1284
1284
|
* @public
|
|
1285
1285
|
* <p>The store's ARN.</p>
|
|
@@ -1294,7 +1294,7 @@ export interface AnnotationStoreItem {
|
|
|
1294
1294
|
* @public
|
|
1295
1295
|
* <p>The store's file format.</p>
|
|
1296
1296
|
*/
|
|
1297
|
-
storeFormat: StoreFormat |
|
|
1297
|
+
storeFormat: StoreFormat | undefined;
|
|
1298
1298
|
/**
|
|
1299
1299
|
* @public
|
|
1300
1300
|
* <p>The store's description.</p>
|
|
@@ -1374,7 +1374,7 @@ export interface UpdateAnnotationStoreResponse {
|
|
|
1374
1374
|
* @public
|
|
1375
1375
|
* <p>The store's status.</p>
|
|
1376
1376
|
*/
|
|
1377
|
-
status: StoreStatus |
|
|
1377
|
+
status: StoreStatus | undefined;
|
|
1378
1378
|
/**
|
|
1379
1379
|
* @public
|
|
1380
1380
|
* <p>The store's name.</p>
|
|
@@ -1404,7 +1404,7 @@ export interface UpdateAnnotationStoreResponse {
|
|
|
1404
1404
|
* @public
|
|
1405
1405
|
* <p>The annotation file format of the store.</p>
|
|
1406
1406
|
*/
|
|
1407
|
-
storeFormat?: StoreFormat
|
|
1407
|
+
storeFormat?: StoreFormat;
|
|
1408
1408
|
}
|
|
1409
1409
|
/**
|
|
1410
1410
|
* @public
|
|
@@ -1419,21 +1419,21 @@ export interface TsvVersionOptions {
|
|
|
1419
1419
|
* The store version's annotation type.
|
|
1420
1420
|
* </p>
|
|
1421
1421
|
*/
|
|
1422
|
-
annotationType?: AnnotationType
|
|
1422
|
+
annotationType?: AnnotationType;
|
|
1423
1423
|
/**
|
|
1424
1424
|
* @public
|
|
1425
1425
|
* <p>
|
|
1426
1426
|
* The annotation store version's header key to column name mapping.
|
|
1427
1427
|
* </p>
|
|
1428
1428
|
*/
|
|
1429
|
-
formatToHeader?: Record<
|
|
1429
|
+
formatToHeader?: Record<FormatToHeaderKey, string>;
|
|
1430
1430
|
/**
|
|
1431
1431
|
* @public
|
|
1432
1432
|
* <p>
|
|
1433
1433
|
* The TSV schema for an annotation store version.
|
|
1434
1434
|
* </p>
|
|
1435
1435
|
*/
|
|
1436
|
-
schema?: Record<string, SchemaValueType
|
|
1436
|
+
schema?: Record<string, SchemaValueType>[];
|
|
1437
1437
|
}
|
|
1438
1438
|
/**
|
|
1439
1439
|
* @public
|
|
@@ -1584,7 +1584,7 @@ export interface CreateAnnotationStoreVersionResponse {
|
|
|
1584
1584
|
* The status of a annotation store version.
|
|
1585
1585
|
* </p>
|
|
1586
1586
|
*/
|
|
1587
|
-
status: VersionStatus |
|
|
1587
|
+
status: VersionStatus | undefined;
|
|
1588
1588
|
/**
|
|
1589
1589
|
* @public
|
|
1590
1590
|
* <p>
|
|
@@ -1696,7 +1696,7 @@ export interface GetAnnotationStoreVersionResponse {
|
|
|
1696
1696
|
* The status of an annotation store version.
|
|
1697
1697
|
* </p>
|
|
1698
1698
|
*/
|
|
1699
|
-
status: VersionStatus |
|
|
1699
|
+
status: VersionStatus | undefined;
|
|
1700
1700
|
/**
|
|
1701
1701
|
* @public
|
|
1702
1702
|
* <p>
|
|
@@ -1781,7 +1781,7 @@ export interface ListAnnotationStoreVersionsFilter {
|
|
|
1781
1781
|
* The status of an annotation store version.
|
|
1782
1782
|
* </p>
|
|
1783
1783
|
*/
|
|
1784
|
-
status?: VersionStatus
|
|
1784
|
+
status?: VersionStatus;
|
|
1785
1785
|
}
|
|
1786
1786
|
/**
|
|
1787
1787
|
* @public
|
|
@@ -1843,7 +1843,7 @@ export interface AnnotationStoreVersionItem {
|
|
|
1843
1843
|
* The status of an annotation store version.
|
|
1844
1844
|
* </p>
|
|
1845
1845
|
*/
|
|
1846
|
-
status: VersionStatus |
|
|
1846
|
+
status: VersionStatus | undefined;
|
|
1847
1847
|
/**
|
|
1848
1848
|
* @public
|
|
1849
1849
|
* <p>
|
|
@@ -1970,7 +1970,7 @@ export interface UpdateAnnotationStoreVersionResponse {
|
|
|
1970
1970
|
* The status of an annotation store version.
|
|
1971
1971
|
* </p>
|
|
1972
1972
|
*/
|
|
1973
|
-
status: VersionStatus |
|
|
1973
|
+
status: VersionStatus | undefined;
|
|
1974
1974
|
/**
|
|
1975
1975
|
* @public
|
|
1976
1976
|
* <p>
|
|
@@ -2109,7 +2109,7 @@ export interface CompleteReadSetUploadPartListItem {
|
|
|
2109
2109
|
* The source file of the part being uploaded.
|
|
2110
2110
|
* </p>
|
|
2111
2111
|
*/
|
|
2112
|
-
partSource: ReadSetPartSource |
|
|
2112
|
+
partSource: ReadSetPartSource | undefined;
|
|
2113
2113
|
/**
|
|
2114
2114
|
* @public
|
|
2115
2115
|
* <p>
|
|
@@ -2193,7 +2193,7 @@ export interface CreateMultipartReadSetUploadRequest {
|
|
|
2193
2193
|
* The type of file being uploaded.
|
|
2194
2194
|
* </p>
|
|
2195
2195
|
*/
|
|
2196
|
-
sourceFileType: FileType |
|
|
2196
|
+
sourceFileType: FileType | undefined;
|
|
2197
2197
|
/**
|
|
2198
2198
|
* @public
|
|
2199
2199
|
* <p>
|
|
@@ -2268,7 +2268,7 @@ export interface CreateMultipartReadSetUploadResponse {
|
|
|
2268
2268
|
* The file type of the read set source.
|
|
2269
2269
|
* </p>
|
|
2270
2270
|
*/
|
|
2271
|
-
sourceFileType: FileType |
|
|
2271
|
+
sourceFileType: FileType | undefined;
|
|
2272
2272
|
/**
|
|
2273
2273
|
* @public
|
|
2274
2274
|
* <p>
|
|
@@ -2575,7 +2575,7 @@ export interface CreateShareResponse {
|
|
|
2575
2575
|
* The status of a share.
|
|
2576
2576
|
* </p>
|
|
2577
2577
|
*/
|
|
2578
|
-
status?: ShareStatus
|
|
2578
|
+
status?: ShareStatus;
|
|
2579
2579
|
/**
|
|
2580
2580
|
* @public
|
|
2581
2581
|
* <p>
|
|
@@ -2632,7 +2632,7 @@ export interface CreateVariantStoreResponse {
|
|
|
2632
2632
|
* @public
|
|
2633
2633
|
* <p>The store's status.</p>
|
|
2634
2634
|
*/
|
|
2635
|
-
status: StoreStatus |
|
|
2635
|
+
status: StoreStatus | undefined;
|
|
2636
2636
|
/**
|
|
2637
2637
|
* @public
|
|
2638
2638
|
* <p>The store's name.</p>
|
|
@@ -2691,7 +2691,7 @@ export interface CreateWorkflowRequest {
|
|
|
2691
2691
|
* @public
|
|
2692
2692
|
* <p>An engine for the workflow.</p>
|
|
2693
2693
|
*/
|
|
2694
|
-
engine?: WorkflowEngine
|
|
2694
|
+
engine?: WorkflowEngine;
|
|
2695
2695
|
/**
|
|
2696
2696
|
* @public
|
|
2697
2697
|
* <p>A ZIP archive for the workflow.</p>
|
|
@@ -2733,7 +2733,7 @@ export interface CreateWorkflowRequest {
|
|
|
2733
2733
|
* The computational accelerator specified to run the workflow.
|
|
2734
2734
|
* </p>
|
|
2735
2735
|
*/
|
|
2736
|
-
accelerators?: Accelerators
|
|
2736
|
+
accelerators?: Accelerators;
|
|
2737
2737
|
}
|
|
2738
2738
|
/**
|
|
2739
2739
|
* @public
|
|
@@ -2769,7 +2769,7 @@ export interface CreateWorkflowResponse {
|
|
|
2769
2769
|
* @public
|
|
2770
2770
|
* <p>The workflow's status.</p>
|
|
2771
2771
|
*/
|
|
2772
|
-
status?: WorkflowStatus
|
|
2772
|
+
status?: WorkflowStatus;
|
|
2773
2773
|
/**
|
|
2774
2774
|
* @public
|
|
2775
2775
|
* <p>The workflow's tags.</p>
|
|
@@ -2880,7 +2880,7 @@ export interface DeleteShareResponse {
|
|
|
2880
2880
|
* The status of the share being deleted.
|
|
2881
2881
|
* </p>
|
|
2882
2882
|
*/
|
|
2883
|
-
status?: ShareStatus
|
|
2883
|
+
status?: ShareStatus;
|
|
2884
2884
|
}
|
|
2885
2885
|
/**
|
|
2886
2886
|
* @public
|
|
@@ -2905,7 +2905,7 @@ export interface DeleteVariantStoreResponse {
|
|
|
2905
2905
|
* @public
|
|
2906
2906
|
* <p>The store's status.</p>
|
|
2907
2907
|
*/
|
|
2908
|
-
status: StoreStatus |
|
|
2908
|
+
status: StoreStatus | undefined;
|
|
2909
2909
|
}
|
|
2910
2910
|
/**
|
|
2911
2911
|
* @public
|
|
@@ -2942,7 +2942,7 @@ export interface ETag {
|
|
|
2942
2942
|
* <p>
|
|
2943
2943
|
* The algorithm used to calculate the read set’s ETag(s). </p>
|
|
2944
2944
|
*/
|
|
2945
|
-
algorithm?: ETagAlgorithm
|
|
2945
|
+
algorithm?: ETagAlgorithm;
|
|
2946
2946
|
/**
|
|
2947
2947
|
* @public
|
|
2948
2948
|
* <p>
|
|
@@ -2997,7 +2997,7 @@ export interface ExportReadSetDetail {
|
|
|
2997
2997
|
* @public
|
|
2998
2998
|
* <p>The set's status.</p>
|
|
2999
2999
|
*/
|
|
3000
|
-
status: ReadSetExportJobItemStatus |
|
|
3000
|
+
status: ReadSetExportJobItemStatus | undefined;
|
|
3001
3001
|
/**
|
|
3002
3002
|
* @public
|
|
3003
3003
|
* <p>The set's status message.</p>
|
|
@@ -3030,7 +3030,7 @@ export interface ExportReadSetFilter {
|
|
|
3030
3030
|
* @public
|
|
3031
3031
|
* <p>A status to filter on.</p>
|
|
3032
3032
|
*/
|
|
3033
|
-
status?: ReadSetExportJobStatus
|
|
3033
|
+
status?: ReadSetExportJobStatus;
|
|
3034
3034
|
/**
|
|
3035
3035
|
* @public
|
|
3036
3036
|
* <p>The filter's start date.</p>
|
|
@@ -3066,7 +3066,7 @@ export interface ExportReadSetJobDetail {
|
|
|
3066
3066
|
* @public
|
|
3067
3067
|
* <p>The job's status.</p>
|
|
3068
3068
|
*/
|
|
3069
|
-
status: ReadSetExportJobStatus |
|
|
3069
|
+
status: ReadSetExportJobStatus | undefined;
|
|
3070
3070
|
/**
|
|
3071
3071
|
* @public
|
|
3072
3072
|
* <p>When the job was created.</p>
|
|
@@ -3119,7 +3119,7 @@ export interface Filter {
|
|
|
3119
3119
|
* The status of an annotation store version.
|
|
3120
3120
|
* </p>
|
|
3121
3121
|
*/
|
|
3122
|
-
status?:
|
|
3122
|
+
status?: ShareStatus[];
|
|
3123
3123
|
}
|
|
3124
3124
|
/**
|
|
3125
3125
|
* @public
|
|
@@ -3152,7 +3152,7 @@ export interface GetReadSetRequest {
|
|
|
3152
3152
|
* @public
|
|
3153
3153
|
* <p>The file to retrieve.</p>
|
|
3154
3154
|
*/
|
|
3155
|
-
file?: ReadSetFile
|
|
3155
|
+
file?: ReadSetFile;
|
|
3156
3156
|
/**
|
|
3157
3157
|
* @public
|
|
3158
3158
|
* <p>The part number to retrieve.</p>
|
|
@@ -3215,7 +3215,7 @@ export interface GetReadSetActivationJobResponse {
|
|
|
3215
3215
|
* @public
|
|
3216
3216
|
* <p>The job's status.</p>
|
|
3217
3217
|
*/
|
|
3218
|
-
status: ReadSetActivationJobStatus |
|
|
3218
|
+
status: ReadSetActivationJobStatus | undefined;
|
|
3219
3219
|
/**
|
|
3220
3220
|
* @public
|
|
3221
3221
|
* <p>The job's status message.</p>
|
|
@@ -3275,7 +3275,7 @@ export interface GetReadSetExportJobResponse {
|
|
|
3275
3275
|
* @public
|
|
3276
3276
|
* <p>The job's status.</p>
|
|
3277
3277
|
*/
|
|
3278
|
-
status: ReadSetExportJobStatus |
|
|
3278
|
+
status: ReadSetExportJobStatus | undefined;
|
|
3279
3279
|
/**
|
|
3280
3280
|
* @public
|
|
3281
3281
|
* <p>The job's status message.</p>
|
|
@@ -3356,12 +3356,12 @@ export interface ImportReadSetSourceItem {
|
|
|
3356
3356
|
* @public
|
|
3357
3357
|
* <p>The source's file type.</p>
|
|
3358
3358
|
*/
|
|
3359
|
-
sourceFileType: FileType |
|
|
3359
|
+
sourceFileType: FileType | undefined;
|
|
3360
3360
|
/**
|
|
3361
3361
|
* @public
|
|
3362
3362
|
* <p>The source's status.</p>
|
|
3363
3363
|
*/
|
|
3364
|
-
status: ReadSetImportJobItemStatus |
|
|
3364
|
+
status: ReadSetImportJobItemStatus | undefined;
|
|
3365
3365
|
/**
|
|
3366
3366
|
* @public
|
|
3367
3367
|
* <p>The source's status message.</p>
|
|
@@ -3443,7 +3443,7 @@ export interface GetReadSetImportJobResponse {
|
|
|
3443
3443
|
* @public
|
|
3444
3444
|
* <p>The job's status.</p>
|
|
3445
3445
|
*/
|
|
3446
|
-
status: ReadSetImportJobStatus |
|
|
3446
|
+
status: ReadSetImportJobStatus | undefined;
|
|
3447
3447
|
/**
|
|
3448
3448
|
* @public
|
|
3449
3449
|
* <p>The job's status message.</p>
|
|
@@ -3577,7 +3577,7 @@ export interface GetReadSetMetadataResponse {
|
|
|
3577
3577
|
* @public
|
|
3578
3578
|
* <p>The read set's status.</p>
|
|
3579
3579
|
*/
|
|
3580
|
-
status: ReadSetStatus |
|
|
3580
|
+
status: ReadSetStatus | undefined;
|
|
3581
3581
|
/**
|
|
3582
3582
|
* @public
|
|
3583
3583
|
* <p>The read set's name.</p>
|
|
@@ -3592,7 +3592,7 @@ export interface GetReadSetMetadataResponse {
|
|
|
3592
3592
|
* @public
|
|
3593
3593
|
* <p>The read set's file type.</p>
|
|
3594
3594
|
*/
|
|
3595
|
-
fileType: FileType |
|
|
3595
|
+
fileType: FileType | undefined;
|
|
3596
3596
|
/**
|
|
3597
3597
|
* @public
|
|
3598
3598
|
* <p>When the read set was created.</p>
|
|
@@ -3626,7 +3626,7 @@ export interface GetReadSetMetadataResponse {
|
|
|
3626
3626
|
* The creation type of the read set.
|
|
3627
3627
|
* </p>
|
|
3628
3628
|
*/
|
|
3629
|
-
creationType?: CreationType
|
|
3629
|
+
creationType?: CreationType;
|
|
3630
3630
|
/**
|
|
3631
3631
|
* @public
|
|
3632
3632
|
* <p>
|
|
@@ -3675,7 +3675,7 @@ export interface GetReferenceRequest {
|
|
|
3675
3675
|
* @public
|
|
3676
3676
|
* <p>The file to retrieve.</p>
|
|
3677
3677
|
*/
|
|
3678
|
-
file?: ReferenceFile
|
|
3678
|
+
file?: ReferenceFile;
|
|
3679
3679
|
}
|
|
3680
3680
|
/**
|
|
3681
3681
|
* @public
|
|
@@ -3730,7 +3730,7 @@ export interface ImportReferenceSourceItem {
|
|
|
3730
3730
|
* @public
|
|
3731
3731
|
* <p>The source's status.</p>
|
|
3732
3732
|
*/
|
|
3733
|
-
status: ReferenceImportJobItemStatus |
|
|
3733
|
+
status: ReferenceImportJobItemStatus | undefined;
|
|
3734
3734
|
/**
|
|
3735
3735
|
* @public
|
|
3736
3736
|
* <p>The source's status message.</p>
|
|
@@ -3792,7 +3792,7 @@ export interface GetReferenceImportJobResponse {
|
|
|
3792
3792
|
* @public
|
|
3793
3793
|
* <p>The job's status.</p>
|
|
3794
3794
|
*/
|
|
3795
|
-
status: ReferenceImportJobStatus |
|
|
3795
|
+
status: ReferenceImportJobStatus | undefined;
|
|
3796
3796
|
/**
|
|
3797
3797
|
* @public
|
|
3798
3798
|
* <p>The job's status message.</p>
|
|
@@ -3886,7 +3886,7 @@ export interface GetReferenceMetadataResponse {
|
|
|
3886
3886
|
* @public
|
|
3887
3887
|
* <p>The reference's status.</p>
|
|
3888
3888
|
*/
|
|
3889
|
-
status?: ReferenceStatus
|
|
3889
|
+
status?: ReferenceStatus;
|
|
3890
3890
|
/**
|
|
3891
3891
|
* @public
|
|
3892
3892
|
* <p>The reference's name.</p>
|
|
@@ -3982,7 +3982,7 @@ export interface GetRunRequest {
|
|
|
3982
3982
|
* @public
|
|
3983
3983
|
* <p>The run's export format.</p>
|
|
3984
3984
|
*/
|
|
3985
|
-
export?:
|
|
3985
|
+
export?: RunExport[];
|
|
3986
3986
|
}
|
|
3987
3987
|
/**
|
|
3988
3988
|
* @public
|
|
@@ -4058,7 +4058,7 @@ export interface GetRunResponse {
|
|
|
4058
4058
|
* @public
|
|
4059
4059
|
* <p>The run's status.</p>
|
|
4060
4060
|
*/
|
|
4061
|
-
status?: RunStatus
|
|
4061
|
+
status?: RunStatus;
|
|
4062
4062
|
/**
|
|
4063
4063
|
* @public
|
|
4064
4064
|
* <p>The run's workflow ID.</p>
|
|
@@ -4068,7 +4068,7 @@ export interface GetRunResponse {
|
|
|
4068
4068
|
* @public
|
|
4069
4069
|
* <p>The run's workflow type.</p>
|
|
4070
4070
|
*/
|
|
4071
|
-
workflowType?: WorkflowType
|
|
4071
|
+
workflowType?: WorkflowType;
|
|
4072
4072
|
/**
|
|
4073
4073
|
* @public
|
|
4074
4074
|
* <p>The run's ID.</p>
|
|
@@ -4123,7 +4123,7 @@ export interface GetRunResponse {
|
|
|
4123
4123
|
* @public
|
|
4124
4124
|
* <p>The run's log level.</p>
|
|
4125
4125
|
*/
|
|
4126
|
-
logLevel?: RunLogLevel
|
|
4126
|
+
logLevel?: RunLogLevel;
|
|
4127
4127
|
/**
|
|
4128
4128
|
* @public
|
|
4129
4129
|
* <p>The run's resource digests.</p>
|
|
@@ -4165,12 +4165,12 @@ export interface GetRunResponse {
|
|
|
4165
4165
|
* The computational accelerator used to run the workflow.
|
|
4166
4166
|
* </p>
|
|
4167
4167
|
*/
|
|
4168
|
-
accelerators?: Accelerators
|
|
4168
|
+
accelerators?: Accelerators;
|
|
4169
4169
|
/**
|
|
4170
4170
|
* @public
|
|
4171
4171
|
* <p>The run's retention mode.</p>
|
|
4172
4172
|
*/
|
|
4173
|
-
retentionMode?: RunRetentionMode
|
|
4173
|
+
retentionMode?: RunRetentionMode;
|
|
4174
4174
|
}
|
|
4175
4175
|
/**
|
|
4176
4176
|
* @public
|
|
@@ -4279,7 +4279,7 @@ export interface GetRunTaskResponse {
|
|
|
4279
4279
|
* @public
|
|
4280
4280
|
* <p>The task's status.</p>
|
|
4281
4281
|
*/
|
|
4282
|
-
status?: TaskStatus
|
|
4282
|
+
status?: TaskStatus;
|
|
4283
4283
|
/**
|
|
4284
4284
|
* @public
|
|
4285
4285
|
* <p>The task's name.</p>
|
|
@@ -4440,7 +4440,7 @@ export interface ShareDetails {
|
|
|
4440
4440
|
* The status of a share.
|
|
4441
4441
|
* </p>
|
|
4442
4442
|
*/
|
|
4443
|
-
status?: ShareStatus
|
|
4443
|
+
status?: ShareStatus;
|
|
4444
4444
|
/**
|
|
4445
4445
|
* @public
|
|
4446
4446
|
* <p>
|
|
@@ -4506,7 +4506,7 @@ export interface VariantImportItemDetail {
|
|
|
4506
4506
|
* @public
|
|
4507
4507
|
* <p>The item's job status.</p>
|
|
4508
4508
|
*/
|
|
4509
|
-
jobStatus: JobStatus |
|
|
4509
|
+
jobStatus: JobStatus | undefined;
|
|
4510
4510
|
/**
|
|
4511
4511
|
* @public
|
|
4512
4512
|
* <p> A message that provides additional context about a job </p>
|
|
@@ -4536,7 +4536,7 @@ export interface GetVariantImportResponse {
|
|
|
4536
4536
|
* @public
|
|
4537
4537
|
* <p>The job's status.</p>
|
|
4538
4538
|
*/
|
|
4539
|
-
status: JobStatus |
|
|
4539
|
+
status: JobStatus | undefined;
|
|
4540
4540
|
/**
|
|
4541
4541
|
* @public
|
|
4542
4542
|
* <p>The job's status message.</p>
|
|
@@ -4603,7 +4603,7 @@ export interface GetVariantStoreResponse {
|
|
|
4603
4603
|
* @public
|
|
4604
4604
|
* <p>The store's status.</p>
|
|
4605
4605
|
*/
|
|
4606
|
-
status: StoreStatus |
|
|
4606
|
+
status: StoreStatus | undefined;
|
|
4607
4607
|
/**
|
|
4608
4608
|
* @public
|
|
4609
4609
|
* <p>The store's ARN.</p>
|
|
@@ -4674,12 +4674,12 @@ export interface GetWorkflowRequest {
|
|
|
4674
4674
|
* @public
|
|
4675
4675
|
* <p>The workflow's type.</p>
|
|
4676
4676
|
*/
|
|
4677
|
-
type?: WorkflowType
|
|
4677
|
+
type?: WorkflowType;
|
|
4678
4678
|
/**
|
|
4679
4679
|
* @public
|
|
4680
4680
|
* <p>The export format for the workflow.</p>
|
|
4681
4681
|
*/
|
|
4682
|
-
export?:
|
|
4682
|
+
export?: WorkflowExport[];
|
|
4683
4683
|
}
|
|
4684
4684
|
/**
|
|
4685
4685
|
* @public
|
|
@@ -4699,12 +4699,12 @@ export interface GetWorkflowResponse {
|
|
|
4699
4699
|
* @public
|
|
4700
4700
|
* <p>The workflow's status.</p>
|
|
4701
4701
|
*/
|
|
4702
|
-
status?: WorkflowStatus
|
|
4702
|
+
status?: WorkflowStatus;
|
|
4703
4703
|
/**
|
|
4704
4704
|
* @public
|
|
4705
4705
|
* <p>The workflow's type.</p>
|
|
4706
4706
|
*/
|
|
4707
|
-
type?: WorkflowType
|
|
4707
|
+
type?: WorkflowType;
|
|
4708
4708
|
/**
|
|
4709
4709
|
* @public
|
|
4710
4710
|
* <p>The workflow's name.</p>
|
|
@@ -4719,7 +4719,7 @@ export interface GetWorkflowResponse {
|
|
|
4719
4719
|
* @public
|
|
4720
4720
|
* <p>The workflow's engine.</p>
|
|
4721
4721
|
*/
|
|
4722
|
-
engine?: WorkflowEngine
|
|
4722
|
+
engine?: WorkflowEngine;
|
|
4723
4723
|
/**
|
|
4724
4724
|
* @public
|
|
4725
4725
|
* <p>The workflow's definition.</p>
|
|
@@ -4772,7 +4772,7 @@ export interface GetWorkflowResponse {
|
|
|
4772
4772
|
* <p>
|
|
4773
4773
|
* The computational accelerator specified to run the workflow. </p>
|
|
4774
4774
|
*/
|
|
4775
|
-
accelerators?: Accelerators
|
|
4775
|
+
accelerators?: Accelerators;
|
|
4776
4776
|
}
|
|
4777
4777
|
/**
|
|
4778
4778
|
* @public
|
|
@@ -4783,7 +4783,7 @@ export interface ImportReadSetFilter {
|
|
|
4783
4783
|
* @public
|
|
4784
4784
|
* <p>A status to filter on.</p>
|
|
4785
4785
|
*/
|
|
4786
|
-
status?: ReadSetImportJobStatus
|
|
4786
|
+
status?: ReadSetImportJobStatus;
|
|
4787
4787
|
/**
|
|
4788
4788
|
* @public
|
|
4789
4789
|
* <p>The filter's start date.</p>
|
|
@@ -4819,7 +4819,7 @@ export interface ImportReadSetJobItem {
|
|
|
4819
4819
|
* @public
|
|
4820
4820
|
* <p>The job's status.</p>
|
|
4821
4821
|
*/
|
|
4822
|
-
status: ReadSetImportJobStatus |
|
|
4822
|
+
status: ReadSetImportJobStatus | undefined;
|
|
4823
4823
|
/**
|
|
4824
4824
|
* @public
|
|
4825
4825
|
* <p>When the job was created.</p>
|
|
@@ -4840,7 +4840,7 @@ export interface ImportReferenceFilter {
|
|
|
4840
4840
|
* @public
|
|
4841
4841
|
* <p>A status to filter on.</p>
|
|
4842
4842
|
*/
|
|
4843
|
-
status?: ReferenceImportJobStatus
|
|
4843
|
+
status?: ReferenceImportJobStatus;
|
|
4844
4844
|
/**
|
|
4845
4845
|
* @public
|
|
4846
4846
|
* <p>The filter's start date.</p>
|
|
@@ -4876,7 +4876,7 @@ export interface ImportReferenceJobItem {
|
|
|
4876
4876
|
* @public
|
|
4877
4877
|
* <p>The job's status.</p>
|
|
4878
4878
|
*/
|
|
4879
|
-
status: ReferenceImportJobStatus |
|
|
4879
|
+
status: ReferenceImportJobStatus | undefined;
|
|
4880
4880
|
/**
|
|
4881
4881
|
* @public
|
|
4882
4882
|
* <p>When the job was created.</p>
|
|
@@ -4941,7 +4941,7 @@ export interface MultipartReadSetUploadListItem {
|
|
|
4941
4941
|
* The type of file the read set originated from.
|
|
4942
4942
|
* </p>
|
|
4943
4943
|
*/
|
|
4944
|
-
sourceFileType: FileType |
|
|
4944
|
+
sourceFileType: FileType | undefined;
|
|
4945
4945
|
/**
|
|
4946
4946
|
* @public
|
|
4947
4947
|
* <p>
|
|
@@ -5152,7 +5152,7 @@ export interface ReadSetFilter {
|
|
|
5152
5152
|
* @public
|
|
5153
5153
|
* <p>A status to filter on.</p>
|
|
5154
5154
|
*/
|
|
5155
|
-
status?: ReadSetStatus
|
|
5155
|
+
status?: ReadSetStatus;
|
|
5156
5156
|
/**
|
|
5157
5157
|
* @public
|
|
5158
5158
|
* <p>A genome reference ARN to filter on.</p>
|
|
@@ -5195,7 +5195,7 @@ export interface ReadSetFilter {
|
|
|
5195
5195
|
* The creation type of the read set.
|
|
5196
5196
|
* </p>
|
|
5197
5197
|
*/
|
|
5198
|
-
creationType?: CreationType
|
|
5198
|
+
creationType?: CreationType;
|
|
5199
5199
|
}
|
|
5200
5200
|
/**
|
|
5201
5201
|
* @public
|
|
@@ -5256,7 +5256,7 @@ export interface ReadSetListItem {
|
|
|
5256
5256
|
* @public
|
|
5257
5257
|
* <p>The read set's status.</p>
|
|
5258
5258
|
*/
|
|
5259
|
-
status: ReadSetStatus |
|
|
5259
|
+
status: ReadSetStatus | undefined;
|
|
5260
5260
|
/**
|
|
5261
5261
|
* @public
|
|
5262
5262
|
* <p>The read set's name.</p>
|
|
@@ -5276,7 +5276,7 @@ export interface ReadSetListItem {
|
|
|
5276
5276
|
* @public
|
|
5277
5277
|
* <p>The read set's file type.</p>
|
|
5278
5278
|
*/
|
|
5279
|
-
fileType: FileType |
|
|
5279
|
+
fileType: FileType | undefined;
|
|
5280
5280
|
/**
|
|
5281
5281
|
* @public
|
|
5282
5282
|
* <p>Details about a sequence.</p>
|
|
@@ -5300,7 +5300,7 @@ export interface ReadSetListItem {
|
|
|
5300
5300
|
* The creation type of the read set.
|
|
5301
5301
|
* </p>
|
|
5302
5302
|
*/
|
|
5303
|
-
creationType?: CreationType
|
|
5303
|
+
creationType?: CreationType;
|
|
5304
5304
|
/**
|
|
5305
5305
|
* @public
|
|
5306
5306
|
* <p>
|
|
@@ -5370,7 +5370,7 @@ export interface ListReadSetUploadPartsRequest {
|
|
|
5370
5370
|
* The source file for the upload part.
|
|
5371
5371
|
* </p>
|
|
5372
5372
|
*/
|
|
5373
|
-
partSource: ReadSetPartSource |
|
|
5373
|
+
partSource: ReadSetPartSource | undefined;
|
|
5374
5374
|
/**
|
|
5375
5375
|
* @public
|
|
5376
5376
|
* <p>
|
|
@@ -5420,7 +5420,7 @@ export interface ReadSetUploadPartListItem {
|
|
|
5420
5420
|
* The origin of the part being direct uploaded.
|
|
5421
5421
|
* </p>
|
|
5422
5422
|
*/
|
|
5423
|
-
partSource: ReadSetPartSource |
|
|
5423
|
+
partSource: ReadSetPartSource | undefined;
|
|
5424
5424
|
/**
|
|
5425
5425
|
* @public
|
|
5426
5426
|
* <p>
|
|
@@ -5582,7 +5582,7 @@ export interface ReferenceListItem {
|
|
|
5582
5582
|
* @public
|
|
5583
5583
|
* <p>The reference's status.</p>
|
|
5584
5584
|
*/
|
|
5585
|
-
status?: ReferenceStatus
|
|
5585
|
+
status?: ReferenceStatus;
|
|
5586
5586
|
/**
|
|
5587
5587
|
* @public
|
|
5588
5588
|
* <p>The reference's name.</p>
|
|
@@ -5824,7 +5824,7 @@ export interface ListRunsRequest {
|
|
|
5824
5824
|
* The status of a run.
|
|
5825
5825
|
* </p>
|
|
5826
5826
|
*/
|
|
5827
|
-
status?: RunStatus
|
|
5827
|
+
status?: RunStatus;
|
|
5828
5828
|
}
|
|
5829
5829
|
/**
|
|
5830
5830
|
* @public
|
|
@@ -5845,7 +5845,7 @@ export interface RunListItem {
|
|
|
5845
5845
|
* @public
|
|
5846
5846
|
* <p>The run's status.</p>
|
|
5847
5847
|
*/
|
|
5848
|
-
status?: RunStatus
|
|
5848
|
+
status?: RunStatus;
|
|
5849
5849
|
/**
|
|
5850
5850
|
* @public
|
|
5851
5851
|
* <p>The run's workflow ID.</p>
|
|
@@ -5910,7 +5910,7 @@ export interface ListRunTasksRequest {
|
|
|
5910
5910
|
* @public
|
|
5911
5911
|
* <p>Filter the list by status.</p>
|
|
5912
5912
|
*/
|
|
5913
|
-
status?: TaskStatus
|
|
5913
|
+
status?: TaskStatus;
|
|
5914
5914
|
/**
|
|
5915
5915
|
* @public
|
|
5916
5916
|
* <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
|
|
@@ -5936,7 +5936,7 @@ export interface TaskListItem {
|
|
|
5936
5936
|
* @public
|
|
5937
5937
|
* <p>The task's status.</p>
|
|
5938
5938
|
*/
|
|
5939
|
-
status?: TaskStatus
|
|
5939
|
+
status?: TaskStatus;
|
|
5940
5940
|
/**
|
|
5941
5941
|
* @public
|
|
5942
5942
|
* <p>The task's name.</p>
|
|
@@ -6124,7 +6124,7 @@ export interface ListSharesRequest {
|
|
|
6124
6124
|
* The account that owns the analytics store shared.
|
|
6125
6125
|
* </p>
|
|
6126
6126
|
*/
|
|
6127
|
-
resourceOwner: ResourceOwner |
|
|
6127
|
+
resourceOwner: ResourceOwner | undefined;
|
|
6128
6128
|
/**
|
|
6129
6129
|
* @public
|
|
6130
6130
|
* <p>
|
|
@@ -6195,7 +6195,7 @@ export interface ListVariantImportJobsFilter {
|
|
|
6195
6195
|
* @public
|
|
6196
6196
|
* <p>A status to filter on.</p>
|
|
6197
6197
|
*/
|
|
6198
|
-
status?: JobStatus
|
|
6198
|
+
status?: JobStatus;
|
|
6199
6199
|
/**
|
|
6200
6200
|
* @public
|
|
6201
6201
|
* <p>A store name to filter on.</p>
|
|
@@ -6251,7 +6251,7 @@ export interface VariantImportJobItem {
|
|
|
6251
6251
|
* @public
|
|
6252
6252
|
* <p>The job's status.</p>
|
|
6253
6253
|
*/
|
|
6254
|
-
status: JobStatus |
|
|
6254
|
+
status: JobStatus | undefined;
|
|
6255
6255
|
/**
|
|
6256
6256
|
* @public
|
|
6257
6257
|
* <p>When the job was created.</p>
|
|
@@ -6304,7 +6304,7 @@ export interface ListVariantStoresFilter {
|
|
|
6304
6304
|
* @public
|
|
6305
6305
|
* <p>A status to filter on.</p>
|
|
6306
6306
|
*/
|
|
6307
|
-
status?: StoreStatus
|
|
6307
|
+
status?: StoreStatus;
|
|
6308
6308
|
}
|
|
6309
6309
|
/**
|
|
6310
6310
|
* @public
|
|
@@ -6350,7 +6350,7 @@ export interface VariantStoreItem {
|
|
|
6350
6350
|
* @public
|
|
6351
6351
|
* <p>The store's status.</p>
|
|
6352
6352
|
*/
|
|
6353
|
-
status: StoreStatus |
|
|
6353
|
+
status: StoreStatus | undefined;
|
|
6354
6354
|
/**
|
|
6355
6355
|
* @public
|
|
6356
6356
|
* <p>The store's ARN.</p>
|
|
@@ -6415,7 +6415,7 @@ export interface ListWorkflowsRequest {
|
|
|
6415
6415
|
* @public
|
|
6416
6416
|
* <p>The workflows' type.</p>
|
|
6417
6417
|
*/
|
|
6418
|
-
type?: WorkflowType
|
|
6418
|
+
type?: WorkflowType;
|
|
6419
6419
|
/**
|
|
6420
6420
|
* @public
|
|
6421
6421
|
* <p>The workflows' name.</p>
|
|
@@ -6456,12 +6456,12 @@ export interface WorkflowListItem {
|
|
|
6456
6456
|
* @public
|
|
6457
6457
|
* <p>The workflow's status.</p>
|
|
6458
6458
|
*/
|
|
6459
|
-
status?: WorkflowStatus
|
|
6459
|
+
status?: WorkflowStatus;
|
|
6460
6460
|
/**
|
|
6461
6461
|
* @public
|
|
6462
6462
|
* <p>The workflow's type.</p>
|
|
6463
6463
|
*/
|
|
6464
|
-
type?: WorkflowType
|
|
6464
|
+
type?: WorkflowType;
|
|
6465
6465
|
/**
|
|
6466
6466
|
* @public
|
|
6467
6467
|
* <p>The workflow's digest.</p>
|
|
@@ -6569,7 +6569,7 @@ export interface StartReferenceImportJobResponse {
|
|
|
6569
6569
|
* @public
|
|
6570
6570
|
* <p>The job's status.</p>
|
|
6571
6571
|
*/
|
|
6572
|
-
status: ReferenceImportJobStatus |
|
|
6572
|
+
status: ReferenceImportJobStatus | undefined;
|
|
6573
6573
|
/**
|
|
6574
6574
|
* @public
|
|
6575
6575
|
* <p>When the job was created.</p>
|
|
@@ -6626,7 +6626,7 @@ export interface StartRunRequest {
|
|
|
6626
6626
|
* @public
|
|
6627
6627
|
* <p>The run's workflow type.</p>
|
|
6628
6628
|
*/
|
|
6629
|
-
workflowType?: WorkflowType
|
|
6629
|
+
workflowType?: WorkflowType;
|
|
6630
6630
|
/**
|
|
6631
6631
|
* @public
|
|
6632
6632
|
* <p>The ID of a run to duplicate.</p>
|
|
@@ -6671,7 +6671,7 @@ export interface StartRunRequest {
|
|
|
6671
6671
|
* @public
|
|
6672
6672
|
* <p>A log level for the run.</p>
|
|
6673
6673
|
*/
|
|
6674
|
-
logLevel?: RunLogLevel
|
|
6674
|
+
logLevel?: RunLogLevel;
|
|
6675
6675
|
/**
|
|
6676
6676
|
* @public
|
|
6677
6677
|
* <p>Tags for the run.</p>
|
|
@@ -6686,7 +6686,7 @@ export interface StartRunRequest {
|
|
|
6686
6686
|
* @public
|
|
6687
6687
|
* <p>The retention mode for the run.</p>
|
|
6688
6688
|
*/
|
|
6689
|
-
retentionMode?: RunRetentionMode
|
|
6689
|
+
retentionMode?: RunRetentionMode;
|
|
6690
6690
|
}
|
|
6691
6691
|
/**
|
|
6692
6692
|
* @public
|
|
@@ -6706,7 +6706,7 @@ export interface StartRunResponse {
|
|
|
6706
6706
|
* @public
|
|
6707
6707
|
* <p>The run's status.</p>
|
|
6708
6708
|
*/
|
|
6709
|
-
status?: RunStatus
|
|
6709
|
+
status?: RunStatus;
|
|
6710
6710
|
/**
|
|
6711
6711
|
* @public
|
|
6712
6712
|
* <p>The run's tags.</p>
|
|
@@ -6762,7 +6762,7 @@ export interface StartReadSetActivationJobResponse {
|
|
|
6762
6762
|
* @public
|
|
6763
6763
|
* <p>The job's status.</p>
|
|
6764
6764
|
*/
|
|
6765
|
-
status: ReadSetActivationJobStatus |
|
|
6765
|
+
status: ReadSetActivationJobStatus | undefined;
|
|
6766
6766
|
/**
|
|
6767
6767
|
* @public
|
|
6768
6768
|
* <p>When the job was created.</p>
|
|
@@ -6822,7 +6822,7 @@ export interface StartReadSetExportJobResponse {
|
|
|
6822
6822
|
* @public
|
|
6823
6823
|
* <p>The job's status.</p>
|
|
6824
6824
|
*/
|
|
6825
|
-
status: ReadSetExportJobStatus |
|
|
6825
|
+
status: ReadSetExportJobStatus | undefined;
|
|
6826
6826
|
/**
|
|
6827
6827
|
* @public
|
|
6828
6828
|
* <p>When the job was created.</p>
|
|
@@ -6843,7 +6843,7 @@ export interface StartReadSetImportJobSourceItem {
|
|
|
6843
6843
|
* @public
|
|
6844
6844
|
* <p>The source's file type.</p>
|
|
6845
6845
|
*/
|
|
6846
|
-
sourceFileType: FileType |
|
|
6846
|
+
sourceFileType: FileType | undefined;
|
|
6847
6847
|
/**
|
|
6848
6848
|
* @public
|
|
6849
6849
|
* <p>The source's subject ID.</p>
|
|
@@ -6928,7 +6928,7 @@ export interface StartReadSetImportJobResponse {
|
|
|
6928
6928
|
* @public
|
|
6929
6929
|
* <p>The job's status.</p>
|
|
6930
6930
|
*/
|
|
6931
|
-
status: ReadSetImportJobStatus |
|
|
6931
|
+
status: ReadSetImportJobStatus | undefined;
|
|
6932
6932
|
/**
|
|
6933
6933
|
* @public
|
|
6934
6934
|
* <p>When the job was created.</p>
|
|
@@ -6959,7 +6959,7 @@ export interface UploadReadSetPartRequest {
|
|
|
6959
6959
|
* The source file for an upload part.
|
|
6960
6960
|
* </p>
|
|
6961
6961
|
*/
|
|
6962
|
-
partSource: ReadSetPartSource |
|
|
6962
|
+
partSource: ReadSetPartSource | undefined;
|
|
6963
6963
|
/**
|
|
6964
6964
|
* @public
|
|
6965
6965
|
* <p>
|
|
@@ -7113,7 +7113,7 @@ export interface UpdateVariantStoreResponse {
|
|
|
7113
7113
|
* @public
|
|
7114
7114
|
* <p>The store's status.</p>
|
|
7115
7115
|
*/
|
|
7116
|
-
status: StoreStatus |
|
|
7116
|
+
status: StoreStatus | undefined;
|
|
7117
7117
|
/**
|
|
7118
7118
|
* @public
|
|
7119
7119
|
* <p>The store's name.</p>
|