@aws-sdk/client-omics 3.696.0 → 3.699.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/README.md +72 -0
- package/dist-cjs/index.js +575 -5
- package/dist-es/Omics.js +18 -0
- package/dist-es/commands/CreateRunCacheCommand.js +22 -0
- package/dist-es/commands/DeleteRunCacheCommand.js +22 -0
- package/dist-es/commands/DeleteS3AccessPolicyCommand.js +22 -0
- package/dist-es/commands/GetRunCacheCommand.js +22 -0
- package/dist-es/commands/GetS3AccessPolicyCommand.js +22 -0
- package/dist-es/commands/ListRunCachesCommand.js +22 -0
- package/dist-es/commands/PutS3AccessPolicyCommand.js +22 -0
- package/dist-es/commands/UpdateRunCacheCommand.js +22 -0
- package/dist-es/commands/UpdateSequenceStoreCommand.js +22 -0
- package/dist-es/commands/index.js +9 -0
- package/dist-es/models/models_0.js +20 -0
- package/dist-es/pagination/ListRunCachesPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +379 -2
- package/dist-types/Omics.d.ts +64 -0
- package/dist-types/OmicsClient.d.ts +11 -2
- package/dist-types/commands/CreateRunCacheCommand.d.ts +112 -0
- package/dist-types/commands/CreateSequenceStoreCommand.d.ts +16 -0
- package/dist-types/commands/DeleteRunCacheCommand.d.ts +98 -0
- package/dist-types/commands/DeleteS3AccessPolicyCommand.d.ts +92 -0
- package/dist-types/commands/GetRunCacheCommand.d.ts +107 -0
- package/dist-types/commands/GetRunCommand.d.ts +7 -0
- package/dist-types/commands/GetRunTaskCommand.d.ts +2 -0
- package/dist-types/commands/GetS3AccessPolicyCommand.d.ts +101 -0
- package/dist-types/commands/GetSequenceStoreCommand.d.ts +7 -0
- package/dist-types/commands/ListRunCachesCommand.d.ts +107 -0
- package/dist-types/commands/ListRunTasksCommand.d.ts +2 -0
- package/dist-types/commands/ListRunsCommand.d.ts +4 -0
- package/dist-types/commands/ListSequenceStoresCommand.d.ts +6 -0
- package/dist-types/commands/PutS3AccessPolicyCommand.d.ts +97 -0
- package/dist-types/commands/StartRunCommand.d.ts +6 -3
- package/dist-types/commands/UpdateRunCacheCommand.d.ts +96 -0
- package/dist-types/commands/UpdateSequenceStoreCommand.d.ts +123 -0
- package/dist-types/commands/index.d.ts +9 -0
- package/dist-types/models/models_0.d.ts +666 -12
- package/dist-types/pagination/ListRunCachesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +81 -0
- package/dist-types/ts3.4/Omics.d.ts +154 -0
- package/dist-types/ts3.4/OmicsClient.d.ts +54 -0
- package/dist-types/ts3.4/commands/CreateRunCacheCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteRunCacheCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/DeleteS3AccessPolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetRunCacheCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetS3AccessPolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListRunCachesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/PutS3AccessPolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateRunCacheCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/UpdateSequenceStoreCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +9 -0
- package/dist-types/ts3.4/models/models_0.d.ts +166 -5
- package/dist-types/ts3.4/pagination/ListRunCachesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +108 -0
- package/package.json +4 -4
|
@@ -9,6 +9,7 @@ export * from "./CreateAnnotationStoreCommand";
|
|
|
9
9
|
export * from "./CreateAnnotationStoreVersionCommand";
|
|
10
10
|
export * from "./CreateMultipartReadSetUploadCommand";
|
|
11
11
|
export * from "./CreateReferenceStoreCommand";
|
|
12
|
+
export * from "./CreateRunCacheCommand";
|
|
12
13
|
export * from "./CreateRunGroupCommand";
|
|
13
14
|
export * from "./CreateSequenceStoreCommand";
|
|
14
15
|
export * from "./CreateShareCommand";
|
|
@@ -18,8 +19,10 @@ export * from "./DeleteAnnotationStoreCommand";
|
|
|
18
19
|
export * from "./DeleteAnnotationStoreVersionsCommand";
|
|
19
20
|
export * from "./DeleteReferenceCommand";
|
|
20
21
|
export * from "./DeleteReferenceStoreCommand";
|
|
22
|
+
export * from "./DeleteRunCacheCommand";
|
|
21
23
|
export * from "./DeleteRunCommand";
|
|
22
24
|
export * from "./DeleteRunGroupCommand";
|
|
25
|
+
export * from "./DeleteS3AccessPolicyCommand";
|
|
23
26
|
export * from "./DeleteSequenceStoreCommand";
|
|
24
27
|
export * from "./DeleteShareCommand";
|
|
25
28
|
export * from "./DeleteVariantStoreCommand";
|
|
@@ -36,9 +39,11 @@ export * from "./GetReferenceCommand";
|
|
|
36
39
|
export * from "./GetReferenceImportJobCommand";
|
|
37
40
|
export * from "./GetReferenceMetadataCommand";
|
|
38
41
|
export * from "./GetReferenceStoreCommand";
|
|
42
|
+
export * from "./GetRunCacheCommand";
|
|
39
43
|
export * from "./GetRunCommand";
|
|
40
44
|
export * from "./GetRunGroupCommand";
|
|
41
45
|
export * from "./GetRunTaskCommand";
|
|
46
|
+
export * from "./GetS3AccessPolicyCommand";
|
|
42
47
|
export * from "./GetSequenceStoreCommand";
|
|
43
48
|
export * from "./GetShareCommand";
|
|
44
49
|
export * from "./GetVariantImportJobCommand";
|
|
@@ -56,6 +61,7 @@ export * from "./ListReadSetsCommand";
|
|
|
56
61
|
export * from "./ListReferenceImportJobsCommand";
|
|
57
62
|
export * from "./ListReferenceStoresCommand";
|
|
58
63
|
export * from "./ListReferencesCommand";
|
|
64
|
+
export * from "./ListRunCachesCommand";
|
|
59
65
|
export * from "./ListRunGroupsCommand";
|
|
60
66
|
export * from "./ListRunTasksCommand";
|
|
61
67
|
export * from "./ListRunsCommand";
|
|
@@ -65,6 +71,7 @@ export * from "./ListTagsForResourceCommand";
|
|
|
65
71
|
export * from "./ListVariantImportJobsCommand";
|
|
66
72
|
export * from "./ListVariantStoresCommand";
|
|
67
73
|
export * from "./ListWorkflowsCommand";
|
|
74
|
+
export * from "./PutS3AccessPolicyCommand";
|
|
68
75
|
export * from "./StartAnnotationImportJobCommand";
|
|
69
76
|
export * from "./StartReadSetActivationJobCommand";
|
|
70
77
|
export * from "./StartReadSetExportJobCommand";
|
|
@@ -76,7 +83,9 @@ export * from "./TagResourceCommand";
|
|
|
76
83
|
export * from "./UntagResourceCommand";
|
|
77
84
|
export * from "./UpdateAnnotationStoreCommand";
|
|
78
85
|
export * from "./UpdateAnnotationStoreVersionCommand";
|
|
86
|
+
export * from "./UpdateRunCacheCommand";
|
|
79
87
|
export * from "./UpdateRunGroupCommand";
|
|
88
|
+
export * from "./UpdateSequenceStoreCommand";
|
|
80
89
|
export * from "./UpdateVariantStoreCommand";
|
|
81
90
|
export * from "./UpdateWorkflowCommand";
|
|
82
91
|
export * from "./UploadReadSetPartCommand";
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
ExceptionOptionType as __ExceptionOptionType,
|
|
3
|
+
LazyJsonString as __LazyJsonString,
|
|
4
|
+
} from "@smithy/smithy-client";
|
|
2
5
|
import {
|
|
3
6
|
DocumentType as __DocumentType,
|
|
4
7
|
StreamingBlobTypes,
|
|
@@ -565,6 +568,11 @@ export interface ReadSetBatchError {
|
|
|
565
568
|
export interface BatchDeleteReadSetResponse {
|
|
566
569
|
errors?: ReadSetBatchError[] | undefined;
|
|
567
570
|
}
|
|
571
|
+
export declare const CacheBehavior: {
|
|
572
|
+
readonly CACHE_ALWAYS: "CACHE_ALWAYS";
|
|
573
|
+
readonly CACHE_ON_FAILURE: "CACHE_ON_FAILURE";
|
|
574
|
+
};
|
|
575
|
+
export type CacheBehavior = (typeof CacheBehavior)[keyof typeof CacheBehavior];
|
|
568
576
|
export interface CancelRunRequest {
|
|
569
577
|
id: string | undefined;
|
|
570
578
|
}
|
|
@@ -638,6 +646,28 @@ export interface CreateReferenceStoreResponse {
|
|
|
638
646
|
sseConfig?: SseConfig | undefined;
|
|
639
647
|
creationTime: Date | undefined;
|
|
640
648
|
}
|
|
649
|
+
export interface CreateRunCacheRequest {
|
|
650
|
+
cacheBehavior?: CacheBehavior | undefined;
|
|
651
|
+
cacheS3Location: string | undefined;
|
|
652
|
+
description?: string | undefined;
|
|
653
|
+
name?: string | undefined;
|
|
654
|
+
requestId?: string | undefined;
|
|
655
|
+
tags?: Record<string, string> | undefined;
|
|
656
|
+
cacheBucketOwnerId?: string | undefined;
|
|
657
|
+
}
|
|
658
|
+
export declare const RunCacheStatus: {
|
|
659
|
+
readonly ACTIVE: "ACTIVE";
|
|
660
|
+
readonly DELETED: "DELETED";
|
|
661
|
+
readonly FAILED: "FAILED";
|
|
662
|
+
};
|
|
663
|
+
export type RunCacheStatus =
|
|
664
|
+
(typeof RunCacheStatus)[keyof typeof RunCacheStatus];
|
|
665
|
+
export interface CreateRunCacheResponse {
|
|
666
|
+
arn?: string | undefined;
|
|
667
|
+
id?: string | undefined;
|
|
668
|
+
status?: RunCacheStatus | undefined;
|
|
669
|
+
tags?: Record<string, string> | undefined;
|
|
670
|
+
}
|
|
641
671
|
export interface CreateRunGroupRequest {
|
|
642
672
|
name?: string | undefined;
|
|
643
673
|
maxCpus?: number | undefined;
|
|
@@ -659,6 +689,9 @@ export declare const ETagAlgorithmFamily: {
|
|
|
659
689
|
};
|
|
660
690
|
export type ETagAlgorithmFamily =
|
|
661
691
|
(typeof ETagAlgorithmFamily)[keyof typeof ETagAlgorithmFamily];
|
|
692
|
+
export interface S3AccessConfig {
|
|
693
|
+
accessLogLocation?: string | undefined;
|
|
694
|
+
}
|
|
662
695
|
export interface CreateSequenceStoreRequest {
|
|
663
696
|
name: string | undefined;
|
|
664
697
|
description?: string | undefined;
|
|
@@ -667,7 +700,23 @@ export interface CreateSequenceStoreRequest {
|
|
|
667
700
|
clientToken?: string | undefined;
|
|
668
701
|
fallbackLocation?: string | undefined;
|
|
669
702
|
eTagAlgorithmFamily?: ETagAlgorithmFamily | undefined;
|
|
703
|
+
propagatedSetLevelTags?: string[] | undefined;
|
|
704
|
+
s3AccessConfig?: S3AccessConfig | undefined;
|
|
670
705
|
}
|
|
706
|
+
export interface SequenceStoreS3Access {
|
|
707
|
+
s3Uri?: string | undefined;
|
|
708
|
+
s3AccessPointArn?: string | undefined;
|
|
709
|
+
accessLogLocation?: string | undefined;
|
|
710
|
+
}
|
|
711
|
+
export declare const SequenceStoreStatus: {
|
|
712
|
+
readonly ACTIVE: "ACTIVE";
|
|
713
|
+
readonly CREATING: "CREATING";
|
|
714
|
+
readonly DELETING: "DELETING";
|
|
715
|
+
readonly FAILED: "FAILED";
|
|
716
|
+
readonly UPDATING: "UPDATING";
|
|
717
|
+
};
|
|
718
|
+
export type SequenceStoreStatus =
|
|
719
|
+
(typeof SequenceStoreStatus)[keyof typeof SequenceStoreStatus];
|
|
671
720
|
export interface CreateSequenceStoreResponse {
|
|
672
721
|
id: string | undefined;
|
|
673
722
|
arn: string | undefined;
|
|
@@ -677,6 +726,10 @@ export interface CreateSequenceStoreResponse {
|
|
|
677
726
|
creationTime: Date | undefined;
|
|
678
727
|
fallbackLocation?: string | undefined;
|
|
679
728
|
eTagAlgorithmFamily?: ETagAlgorithmFamily | undefined;
|
|
729
|
+
status?: SequenceStoreStatus | undefined;
|
|
730
|
+
statusMessage?: string | undefined;
|
|
731
|
+
propagatedSetLevelTags?: string[] | undefined;
|
|
732
|
+
s3Access?: SequenceStoreS3Access | undefined;
|
|
680
733
|
}
|
|
681
734
|
export interface CreateShareRequest {
|
|
682
735
|
resourceArn: string | undefined;
|
|
@@ -759,9 +812,16 @@ export interface DeleteReferenceStoreResponse {}
|
|
|
759
812
|
export interface DeleteRunRequest {
|
|
760
813
|
id: string | undefined;
|
|
761
814
|
}
|
|
815
|
+
export interface DeleteRunCacheRequest {
|
|
816
|
+
id: string | undefined;
|
|
817
|
+
}
|
|
762
818
|
export interface DeleteRunGroupRequest {
|
|
763
819
|
id: string | undefined;
|
|
764
820
|
}
|
|
821
|
+
export interface DeleteS3AccessPolicyRequest {
|
|
822
|
+
s3AccessPointArn: string | undefined;
|
|
823
|
+
}
|
|
824
|
+
export interface DeleteS3AccessPolicyResponse {}
|
|
765
825
|
export interface DeleteSequenceStoreRequest {
|
|
766
826
|
id: string | undefined;
|
|
767
827
|
}
|
|
@@ -1156,6 +1216,9 @@ export type WorkflowType = (typeof WorkflowType)[keyof typeof WorkflowType];
|
|
|
1156
1216
|
export interface GetRunResponse {
|
|
1157
1217
|
arn?: string | undefined;
|
|
1158
1218
|
id?: string | undefined;
|
|
1219
|
+
cacheId?: string | undefined;
|
|
1220
|
+
cacheBehavior?: CacheBehavior | undefined;
|
|
1221
|
+
engineVersion?: string | undefined;
|
|
1159
1222
|
status?: RunStatus | undefined;
|
|
1160
1223
|
workflowId?: string | undefined;
|
|
1161
1224
|
workflowType?: WorkflowType | undefined;
|
|
@@ -1186,6 +1249,21 @@ export interface GetRunResponse {
|
|
|
1186
1249
|
storageType?: StorageType | undefined;
|
|
1187
1250
|
workflowOwnerId?: string | undefined;
|
|
1188
1251
|
}
|
|
1252
|
+
export interface GetRunCacheRequest {
|
|
1253
|
+
id: string | undefined;
|
|
1254
|
+
}
|
|
1255
|
+
export interface GetRunCacheResponse {
|
|
1256
|
+
arn?: string | undefined;
|
|
1257
|
+
cacheBehavior?: CacheBehavior | undefined;
|
|
1258
|
+
cacheBucketOwnerId?: string | undefined;
|
|
1259
|
+
cacheS3Uri?: string | undefined;
|
|
1260
|
+
creationTime?: Date | undefined;
|
|
1261
|
+
description?: string | undefined;
|
|
1262
|
+
id?: string | undefined;
|
|
1263
|
+
name?: string | undefined;
|
|
1264
|
+
status?: RunCacheStatus | undefined;
|
|
1265
|
+
tags?: Record<string, string> | undefined;
|
|
1266
|
+
}
|
|
1189
1267
|
export interface GetRunGroupRequest {
|
|
1190
1268
|
id: string | undefined;
|
|
1191
1269
|
}
|
|
@@ -1219,6 +1297,8 @@ export interface GetRunTaskResponse {
|
|
|
1219
1297
|
status?: TaskStatus | undefined;
|
|
1220
1298
|
name?: string | undefined;
|
|
1221
1299
|
cpus?: number | undefined;
|
|
1300
|
+
cacheHit?: boolean | undefined;
|
|
1301
|
+
cacheS3Uri?: string | undefined;
|
|
1222
1302
|
memory?: number | undefined;
|
|
1223
1303
|
creationTime?: Date | undefined;
|
|
1224
1304
|
startTime?: Date | undefined;
|
|
@@ -1229,12 +1309,23 @@ export interface GetRunTaskResponse {
|
|
|
1229
1309
|
instanceType?: string | undefined;
|
|
1230
1310
|
failureReason?: string | undefined;
|
|
1231
1311
|
}
|
|
1232
|
-
export interface
|
|
1233
|
-
|
|
1312
|
+
export interface GetS3AccessPolicyRequest {
|
|
1313
|
+
s3AccessPointArn: string | undefined;
|
|
1234
1314
|
}
|
|
1235
|
-
export
|
|
1236
|
-
|
|
1315
|
+
export declare const StoreType: {
|
|
1316
|
+
readonly REFERENCE_STORE: "REFERENCE_STORE";
|
|
1317
|
+
readonly SEQUENCE_STORE: "SEQUENCE_STORE";
|
|
1318
|
+
};
|
|
1319
|
+
export type StoreType = (typeof StoreType)[keyof typeof StoreType];
|
|
1320
|
+
export interface GetS3AccessPolicyResponse {
|
|
1237
1321
|
s3AccessPointArn?: string | undefined;
|
|
1322
|
+
storeId?: string | undefined;
|
|
1323
|
+
storeType?: StoreType | undefined;
|
|
1324
|
+
updateTime?: Date | undefined;
|
|
1325
|
+
s3AccessPolicy: __LazyJsonString | string | undefined;
|
|
1326
|
+
}
|
|
1327
|
+
export interface GetSequenceStoreRequest {
|
|
1328
|
+
id: string | undefined;
|
|
1238
1329
|
}
|
|
1239
1330
|
export interface GetSequenceStoreResponse {
|
|
1240
1331
|
id: string | undefined;
|
|
@@ -1246,6 +1337,10 @@ export interface GetSequenceStoreResponse {
|
|
|
1246
1337
|
fallbackLocation?: string | undefined;
|
|
1247
1338
|
s3Access?: SequenceStoreS3Access | undefined;
|
|
1248
1339
|
eTagAlgorithmFamily?: ETagAlgorithmFamily | undefined;
|
|
1340
|
+
status?: SequenceStoreStatus | undefined;
|
|
1341
|
+
statusMessage?: string | undefined;
|
|
1342
|
+
propagatedSetLevelTags?: string[] | undefined;
|
|
1343
|
+
updateTime?: Date | undefined;
|
|
1249
1344
|
}
|
|
1250
1345
|
export interface GetShareRequest {
|
|
1251
1346
|
shareId: string | undefined;
|
|
@@ -1532,6 +1627,23 @@ export interface ListReferenceStoresResponse {
|
|
|
1532
1627
|
nextToken?: string | undefined;
|
|
1533
1628
|
referenceStores: ReferenceStoreDetail[] | undefined;
|
|
1534
1629
|
}
|
|
1630
|
+
export interface ListRunCachesRequest {
|
|
1631
|
+
maxResults?: number | undefined;
|
|
1632
|
+
startingToken?: string | undefined;
|
|
1633
|
+
}
|
|
1634
|
+
export interface RunCacheListItem {
|
|
1635
|
+
arn?: string | undefined;
|
|
1636
|
+
cacheBehavior?: CacheBehavior | undefined;
|
|
1637
|
+
cacheS3Uri?: string | undefined;
|
|
1638
|
+
creationTime?: Date | undefined;
|
|
1639
|
+
id?: string | undefined;
|
|
1640
|
+
name?: string | undefined;
|
|
1641
|
+
status?: RunCacheStatus | undefined;
|
|
1642
|
+
}
|
|
1643
|
+
export interface ListRunCachesResponse {
|
|
1644
|
+
items?: RunCacheListItem[] | undefined;
|
|
1645
|
+
nextToken?: string | undefined;
|
|
1646
|
+
}
|
|
1535
1647
|
export interface ListRunGroupsRequest {
|
|
1536
1648
|
name?: string | undefined;
|
|
1537
1649
|
startingToken?: string | undefined;
|
|
@@ -1586,6 +1698,8 @@ export interface TaskListItem {
|
|
|
1586
1698
|
status?: TaskStatus | undefined;
|
|
1587
1699
|
name?: string | undefined;
|
|
1588
1700
|
cpus?: number | undefined;
|
|
1701
|
+
cacheHit?: boolean | undefined;
|
|
1702
|
+
cacheS3Uri?: string | undefined;
|
|
1589
1703
|
memory?: number | undefined;
|
|
1590
1704
|
creationTime?: Date | undefined;
|
|
1591
1705
|
startTime?: Date | undefined;
|
|
@@ -1601,6 +1715,9 @@ export interface SequenceStoreFilter {
|
|
|
1601
1715
|
name?: string | undefined;
|
|
1602
1716
|
createdAfter?: Date | undefined;
|
|
1603
1717
|
createdBefore?: Date | undefined;
|
|
1718
|
+
status?: SequenceStoreStatus | undefined;
|
|
1719
|
+
updatedAfter?: Date | undefined;
|
|
1720
|
+
updatedBefore?: Date | undefined;
|
|
1604
1721
|
}
|
|
1605
1722
|
export interface ListSequenceStoresRequest {
|
|
1606
1723
|
maxResults?: number | undefined;
|
|
@@ -1616,6 +1733,9 @@ export interface SequenceStoreDetail {
|
|
|
1616
1733
|
creationTime: Date | undefined;
|
|
1617
1734
|
fallbackLocation?: string | undefined;
|
|
1618
1735
|
eTagAlgorithmFamily?: ETagAlgorithmFamily | undefined;
|
|
1736
|
+
status?: SequenceStoreStatus | undefined;
|
|
1737
|
+
statusMessage?: string | undefined;
|
|
1738
|
+
updateTime?: Date | undefined;
|
|
1619
1739
|
}
|
|
1620
1740
|
export interface ListSequenceStoresResponse {
|
|
1621
1741
|
nextToken?: string | undefined;
|
|
@@ -1713,6 +1833,15 @@ export interface ListWorkflowsResponse {
|
|
|
1713
1833
|
items?: WorkflowListItem[] | undefined;
|
|
1714
1834
|
nextToken?: string | undefined;
|
|
1715
1835
|
}
|
|
1836
|
+
export interface PutS3AccessPolicyRequest {
|
|
1837
|
+
s3AccessPointArn: string | undefined;
|
|
1838
|
+
s3AccessPolicy: __LazyJsonString | string | undefined;
|
|
1839
|
+
}
|
|
1840
|
+
export interface PutS3AccessPolicyResponse {
|
|
1841
|
+
s3AccessPointArn?: string | undefined;
|
|
1842
|
+
storeId?: string | undefined;
|
|
1843
|
+
storeType?: StoreType | undefined;
|
|
1844
|
+
}
|
|
1716
1845
|
export interface StartReferenceImportJobSourceItem {
|
|
1717
1846
|
sourceFile: string | undefined;
|
|
1718
1847
|
name: string | undefined;
|
|
@@ -1732,6 +1861,12 @@ export interface StartReferenceImportJobResponse {
|
|
|
1732
1861
|
status: ReferenceImportJobStatus | undefined;
|
|
1733
1862
|
creationTime: Date | undefined;
|
|
1734
1863
|
}
|
|
1864
|
+
export interface UpdateRunCacheRequest {
|
|
1865
|
+
cacheBehavior?: CacheBehavior | undefined;
|
|
1866
|
+
description?: string | undefined;
|
|
1867
|
+
id: string | undefined;
|
|
1868
|
+
name?: string | undefined;
|
|
1869
|
+
}
|
|
1735
1870
|
export interface UpdateRunGroupRequest {
|
|
1736
1871
|
id: string | undefined;
|
|
1737
1872
|
name?: string | undefined;
|
|
@@ -1746,6 +1881,8 @@ export interface StartRunRequest {
|
|
|
1746
1881
|
runId?: string | undefined;
|
|
1747
1882
|
roleArn: string | undefined;
|
|
1748
1883
|
name?: string | undefined;
|
|
1884
|
+
cacheId?: string | undefined;
|
|
1885
|
+
cacheBehavior?: CacheBehavior | undefined;
|
|
1749
1886
|
runGroupId?: string | undefined;
|
|
1750
1887
|
priority?: number | undefined;
|
|
1751
1888
|
parameters?: __DocumentType | undefined;
|
|
@@ -1818,6 +1955,30 @@ export interface StartReadSetImportJobResponse {
|
|
|
1818
1955
|
status: ReadSetImportJobStatus | undefined;
|
|
1819
1956
|
creationTime: Date | undefined;
|
|
1820
1957
|
}
|
|
1958
|
+
export interface UpdateSequenceStoreRequest {
|
|
1959
|
+
id: string | undefined;
|
|
1960
|
+
name?: string | undefined;
|
|
1961
|
+
description?: string | undefined;
|
|
1962
|
+
clientToken?: string | undefined;
|
|
1963
|
+
fallbackLocation?: string | undefined;
|
|
1964
|
+
propagatedSetLevelTags?: string[] | undefined;
|
|
1965
|
+
s3AccessConfig?: S3AccessConfig | undefined;
|
|
1966
|
+
}
|
|
1967
|
+
export interface UpdateSequenceStoreResponse {
|
|
1968
|
+
id: string | undefined;
|
|
1969
|
+
arn: string | undefined;
|
|
1970
|
+
name?: string | undefined;
|
|
1971
|
+
description?: string | undefined;
|
|
1972
|
+
sseConfig?: SseConfig | undefined;
|
|
1973
|
+
creationTime: Date | undefined;
|
|
1974
|
+
updateTime?: Date | undefined;
|
|
1975
|
+
propagatedSetLevelTags?: string[] | undefined;
|
|
1976
|
+
status?: SequenceStoreStatus | undefined;
|
|
1977
|
+
statusMessage?: string | undefined;
|
|
1978
|
+
fallbackLocation?: string | undefined;
|
|
1979
|
+
s3Access?: SequenceStoreS3Access | undefined;
|
|
1980
|
+
eTagAlgorithmFamily?: ETagAlgorithmFamily | undefined;
|
|
1981
|
+
}
|
|
1821
1982
|
export interface UploadReadSetPartRequest {
|
|
1822
1983
|
sequenceStoreId: string | undefined;
|
|
1823
1984
|
uploadId: string | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListRunCachesCommandInput,
|
|
4
|
+
ListRunCachesCommandOutput,
|
|
5
|
+
} from "../commands/ListRunCachesCommand";
|
|
6
|
+
import { OmicsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListRunCaches: (
|
|
8
|
+
config: OmicsPaginationConfiguration,
|
|
9
|
+
input: ListRunCachesCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListRunCachesCommandOutput>;
|
|
@@ -11,6 +11,7 @@ export * from "./ListReadSetsPaginator";
|
|
|
11
11
|
export * from "./ListReferenceImportJobsPaginator";
|
|
12
12
|
export * from "./ListReferenceStoresPaginator";
|
|
13
13
|
export * from "./ListReferencesPaginator";
|
|
14
|
+
export * from "./ListRunCachesPaginator";
|
|
14
15
|
export * from "./ListRunGroupsPaginator";
|
|
15
16
|
export * from "./ListRunTasksPaginator";
|
|
16
17
|
export * from "./ListRunsPaginator";
|
|
@@ -50,6 +50,10 @@ import {
|
|
|
50
50
|
CreateReferenceStoreCommandInput,
|
|
51
51
|
CreateReferenceStoreCommandOutput,
|
|
52
52
|
} from "../commands/CreateReferenceStoreCommand";
|
|
53
|
+
import {
|
|
54
|
+
CreateRunCacheCommandInput,
|
|
55
|
+
CreateRunCacheCommandOutput,
|
|
56
|
+
} from "../commands/CreateRunCacheCommand";
|
|
53
57
|
import {
|
|
54
58
|
CreateRunGroupCommandInput,
|
|
55
59
|
CreateRunGroupCommandOutput,
|
|
@@ -86,6 +90,10 @@ import {
|
|
|
86
90
|
DeleteReferenceStoreCommandInput,
|
|
87
91
|
DeleteReferenceStoreCommandOutput,
|
|
88
92
|
} from "../commands/DeleteReferenceStoreCommand";
|
|
93
|
+
import {
|
|
94
|
+
DeleteRunCacheCommandInput,
|
|
95
|
+
DeleteRunCacheCommandOutput,
|
|
96
|
+
} from "../commands/DeleteRunCacheCommand";
|
|
89
97
|
import {
|
|
90
98
|
DeleteRunCommandInput,
|
|
91
99
|
DeleteRunCommandOutput,
|
|
@@ -94,6 +102,10 @@ import {
|
|
|
94
102
|
DeleteRunGroupCommandInput,
|
|
95
103
|
DeleteRunGroupCommandOutput,
|
|
96
104
|
} from "../commands/DeleteRunGroupCommand";
|
|
105
|
+
import {
|
|
106
|
+
DeleteS3AccessPolicyCommandInput,
|
|
107
|
+
DeleteS3AccessPolicyCommandOutput,
|
|
108
|
+
} from "../commands/DeleteS3AccessPolicyCommand";
|
|
97
109
|
import {
|
|
98
110
|
DeleteSequenceStoreCommandInput,
|
|
99
111
|
DeleteSequenceStoreCommandOutput,
|
|
@@ -158,6 +170,10 @@ import {
|
|
|
158
170
|
GetReferenceStoreCommandInput,
|
|
159
171
|
GetReferenceStoreCommandOutput,
|
|
160
172
|
} from "../commands/GetReferenceStoreCommand";
|
|
173
|
+
import {
|
|
174
|
+
GetRunCacheCommandInput,
|
|
175
|
+
GetRunCacheCommandOutput,
|
|
176
|
+
} from "../commands/GetRunCacheCommand";
|
|
161
177
|
import {
|
|
162
178
|
GetRunCommandInput,
|
|
163
179
|
GetRunCommandOutput,
|
|
@@ -170,6 +186,10 @@ import {
|
|
|
170
186
|
GetRunTaskCommandInput,
|
|
171
187
|
GetRunTaskCommandOutput,
|
|
172
188
|
} from "../commands/GetRunTaskCommand";
|
|
189
|
+
import {
|
|
190
|
+
GetS3AccessPolicyCommandInput,
|
|
191
|
+
GetS3AccessPolicyCommandOutput,
|
|
192
|
+
} from "../commands/GetS3AccessPolicyCommand";
|
|
173
193
|
import {
|
|
174
194
|
GetSequenceStoreCommandInput,
|
|
175
195
|
GetSequenceStoreCommandOutput,
|
|
@@ -238,6 +258,10 @@ import {
|
|
|
238
258
|
ListReferenceStoresCommandInput,
|
|
239
259
|
ListReferenceStoresCommandOutput,
|
|
240
260
|
} from "../commands/ListReferenceStoresCommand";
|
|
261
|
+
import {
|
|
262
|
+
ListRunCachesCommandInput,
|
|
263
|
+
ListRunCachesCommandOutput,
|
|
264
|
+
} from "../commands/ListRunCachesCommand";
|
|
241
265
|
import {
|
|
242
266
|
ListRunGroupsCommandInput,
|
|
243
267
|
ListRunGroupsCommandOutput,
|
|
@@ -274,6 +298,10 @@ import {
|
|
|
274
298
|
ListWorkflowsCommandInput,
|
|
275
299
|
ListWorkflowsCommandOutput,
|
|
276
300
|
} from "../commands/ListWorkflowsCommand";
|
|
301
|
+
import {
|
|
302
|
+
PutS3AccessPolicyCommandInput,
|
|
303
|
+
PutS3AccessPolicyCommandOutput,
|
|
304
|
+
} from "../commands/PutS3AccessPolicyCommand";
|
|
277
305
|
import {
|
|
278
306
|
StartAnnotationImportJobCommandInput,
|
|
279
307
|
StartAnnotationImportJobCommandOutput,
|
|
@@ -318,10 +346,18 @@ import {
|
|
|
318
346
|
UpdateAnnotationStoreVersionCommandInput,
|
|
319
347
|
UpdateAnnotationStoreVersionCommandOutput,
|
|
320
348
|
} from "../commands/UpdateAnnotationStoreVersionCommand";
|
|
349
|
+
import {
|
|
350
|
+
UpdateRunCacheCommandInput,
|
|
351
|
+
UpdateRunCacheCommandOutput,
|
|
352
|
+
} from "../commands/UpdateRunCacheCommand";
|
|
321
353
|
import {
|
|
322
354
|
UpdateRunGroupCommandInput,
|
|
323
355
|
UpdateRunGroupCommandOutput,
|
|
324
356
|
} from "../commands/UpdateRunGroupCommand";
|
|
357
|
+
import {
|
|
358
|
+
UpdateSequenceStoreCommandInput,
|
|
359
|
+
UpdateSequenceStoreCommandOutput,
|
|
360
|
+
} from "../commands/UpdateSequenceStoreCommand";
|
|
325
361
|
import {
|
|
326
362
|
UpdateVariantStoreCommandInput,
|
|
327
363
|
UpdateVariantStoreCommandOutput,
|
|
@@ -378,6 +414,10 @@ export declare const se_CreateReferenceStoreCommand: (
|
|
|
378
414
|
input: CreateReferenceStoreCommandInput,
|
|
379
415
|
context: __SerdeContext
|
|
380
416
|
) => Promise<__HttpRequest>;
|
|
417
|
+
export declare const se_CreateRunCacheCommand: (
|
|
418
|
+
input: CreateRunCacheCommandInput,
|
|
419
|
+
context: __SerdeContext
|
|
420
|
+
) => Promise<__HttpRequest>;
|
|
381
421
|
export declare const se_CreateRunGroupCommand: (
|
|
382
422
|
input: CreateRunGroupCommandInput,
|
|
383
423
|
context: __SerdeContext
|
|
@@ -418,10 +458,18 @@ export declare const se_DeleteRunCommand: (
|
|
|
418
458
|
input: DeleteRunCommandInput,
|
|
419
459
|
context: __SerdeContext
|
|
420
460
|
) => Promise<__HttpRequest>;
|
|
461
|
+
export declare const se_DeleteRunCacheCommand: (
|
|
462
|
+
input: DeleteRunCacheCommandInput,
|
|
463
|
+
context: __SerdeContext
|
|
464
|
+
) => Promise<__HttpRequest>;
|
|
421
465
|
export declare const se_DeleteRunGroupCommand: (
|
|
422
466
|
input: DeleteRunGroupCommandInput,
|
|
423
467
|
context: __SerdeContext
|
|
424
468
|
) => Promise<__HttpRequest>;
|
|
469
|
+
export declare const se_DeleteS3AccessPolicyCommand: (
|
|
470
|
+
input: DeleteS3AccessPolicyCommandInput,
|
|
471
|
+
context: __SerdeContext
|
|
472
|
+
) => Promise<__HttpRequest>;
|
|
425
473
|
export declare const se_DeleteSequenceStoreCommand: (
|
|
426
474
|
input: DeleteSequenceStoreCommandInput,
|
|
427
475
|
context: __SerdeContext
|
|
@@ -490,6 +538,10 @@ export declare const se_GetRunCommand: (
|
|
|
490
538
|
input: GetRunCommandInput,
|
|
491
539
|
context: __SerdeContext
|
|
492
540
|
) => Promise<__HttpRequest>;
|
|
541
|
+
export declare const se_GetRunCacheCommand: (
|
|
542
|
+
input: GetRunCacheCommandInput,
|
|
543
|
+
context: __SerdeContext
|
|
544
|
+
) => Promise<__HttpRequest>;
|
|
493
545
|
export declare const se_GetRunGroupCommand: (
|
|
494
546
|
input: GetRunGroupCommandInput,
|
|
495
547
|
context: __SerdeContext
|
|
@@ -498,6 +550,10 @@ export declare const se_GetRunTaskCommand: (
|
|
|
498
550
|
input: GetRunTaskCommandInput,
|
|
499
551
|
context: __SerdeContext
|
|
500
552
|
) => Promise<__HttpRequest>;
|
|
553
|
+
export declare const se_GetS3AccessPolicyCommand: (
|
|
554
|
+
input: GetS3AccessPolicyCommandInput,
|
|
555
|
+
context: __SerdeContext
|
|
556
|
+
) => Promise<__HttpRequest>;
|
|
501
557
|
export declare const se_GetSequenceStoreCommand: (
|
|
502
558
|
input: GetSequenceStoreCommandInput,
|
|
503
559
|
context: __SerdeContext
|
|
@@ -566,6 +622,10 @@ export declare const se_ListReferenceStoresCommand: (
|
|
|
566
622
|
input: ListReferenceStoresCommandInput,
|
|
567
623
|
context: __SerdeContext
|
|
568
624
|
) => Promise<__HttpRequest>;
|
|
625
|
+
export declare const se_ListRunCachesCommand: (
|
|
626
|
+
input: ListRunCachesCommandInput,
|
|
627
|
+
context: __SerdeContext
|
|
628
|
+
) => Promise<__HttpRequest>;
|
|
569
629
|
export declare const se_ListRunGroupsCommand: (
|
|
570
630
|
input: ListRunGroupsCommandInput,
|
|
571
631
|
context: __SerdeContext
|
|
@@ -602,6 +662,10 @@ export declare const se_ListWorkflowsCommand: (
|
|
|
602
662
|
input: ListWorkflowsCommandInput,
|
|
603
663
|
context: __SerdeContext
|
|
604
664
|
) => Promise<__HttpRequest>;
|
|
665
|
+
export declare const se_PutS3AccessPolicyCommand: (
|
|
666
|
+
input: PutS3AccessPolicyCommandInput,
|
|
667
|
+
context: __SerdeContext
|
|
668
|
+
) => Promise<__HttpRequest>;
|
|
605
669
|
export declare const se_StartAnnotationImportJobCommand: (
|
|
606
670
|
input: StartAnnotationImportJobCommandInput,
|
|
607
671
|
context: __SerdeContext
|
|
@@ -646,10 +710,18 @@ export declare const se_UpdateAnnotationStoreVersionCommand: (
|
|
|
646
710
|
input: UpdateAnnotationStoreVersionCommandInput,
|
|
647
711
|
context: __SerdeContext
|
|
648
712
|
) => Promise<__HttpRequest>;
|
|
713
|
+
export declare const se_UpdateRunCacheCommand: (
|
|
714
|
+
input: UpdateRunCacheCommandInput,
|
|
715
|
+
context: __SerdeContext
|
|
716
|
+
) => Promise<__HttpRequest>;
|
|
649
717
|
export declare const se_UpdateRunGroupCommand: (
|
|
650
718
|
input: UpdateRunGroupCommandInput,
|
|
651
719
|
context: __SerdeContext
|
|
652
720
|
) => Promise<__HttpRequest>;
|
|
721
|
+
export declare const se_UpdateSequenceStoreCommand: (
|
|
722
|
+
input: UpdateSequenceStoreCommandInput,
|
|
723
|
+
context: __SerdeContext
|
|
724
|
+
) => Promise<__HttpRequest>;
|
|
653
725
|
export declare const se_UpdateVariantStoreCommand: (
|
|
654
726
|
input: UpdateVariantStoreCommandInput,
|
|
655
727
|
context: __SerdeContext
|
|
@@ -706,6 +778,10 @@ export declare const de_CreateReferenceStoreCommand: (
|
|
|
706
778
|
output: __HttpResponse,
|
|
707
779
|
context: __SerdeContext
|
|
708
780
|
) => Promise<CreateReferenceStoreCommandOutput>;
|
|
781
|
+
export declare const de_CreateRunCacheCommand: (
|
|
782
|
+
output: __HttpResponse,
|
|
783
|
+
context: __SerdeContext
|
|
784
|
+
) => Promise<CreateRunCacheCommandOutput>;
|
|
709
785
|
export declare const de_CreateRunGroupCommand: (
|
|
710
786
|
output: __HttpResponse,
|
|
711
787
|
context: __SerdeContext
|
|
@@ -746,10 +822,18 @@ export declare const de_DeleteRunCommand: (
|
|
|
746
822
|
output: __HttpResponse,
|
|
747
823
|
context: __SerdeContext
|
|
748
824
|
) => Promise<DeleteRunCommandOutput>;
|
|
825
|
+
export declare const de_DeleteRunCacheCommand: (
|
|
826
|
+
output: __HttpResponse,
|
|
827
|
+
context: __SerdeContext
|
|
828
|
+
) => Promise<DeleteRunCacheCommandOutput>;
|
|
749
829
|
export declare const de_DeleteRunGroupCommand: (
|
|
750
830
|
output: __HttpResponse,
|
|
751
831
|
context: __SerdeContext
|
|
752
832
|
) => Promise<DeleteRunGroupCommandOutput>;
|
|
833
|
+
export declare const de_DeleteS3AccessPolicyCommand: (
|
|
834
|
+
output: __HttpResponse,
|
|
835
|
+
context: __SerdeContext
|
|
836
|
+
) => Promise<DeleteS3AccessPolicyCommandOutput>;
|
|
753
837
|
export declare const de_DeleteSequenceStoreCommand: (
|
|
754
838
|
output: __HttpResponse,
|
|
755
839
|
context: __SerdeContext
|
|
@@ -818,6 +902,10 @@ export declare const de_GetRunCommand: (
|
|
|
818
902
|
output: __HttpResponse,
|
|
819
903
|
context: __SerdeContext
|
|
820
904
|
) => Promise<GetRunCommandOutput>;
|
|
905
|
+
export declare const de_GetRunCacheCommand: (
|
|
906
|
+
output: __HttpResponse,
|
|
907
|
+
context: __SerdeContext
|
|
908
|
+
) => Promise<GetRunCacheCommandOutput>;
|
|
821
909
|
export declare const de_GetRunGroupCommand: (
|
|
822
910
|
output: __HttpResponse,
|
|
823
911
|
context: __SerdeContext
|
|
@@ -826,6 +914,10 @@ export declare const de_GetRunTaskCommand: (
|
|
|
826
914
|
output: __HttpResponse,
|
|
827
915
|
context: __SerdeContext
|
|
828
916
|
) => Promise<GetRunTaskCommandOutput>;
|
|
917
|
+
export declare const de_GetS3AccessPolicyCommand: (
|
|
918
|
+
output: __HttpResponse,
|
|
919
|
+
context: __SerdeContext
|
|
920
|
+
) => Promise<GetS3AccessPolicyCommandOutput>;
|
|
829
921
|
export declare const de_GetSequenceStoreCommand: (
|
|
830
922
|
output: __HttpResponse,
|
|
831
923
|
context: __SerdeContext
|
|
@@ -894,6 +986,10 @@ export declare const de_ListReferenceStoresCommand: (
|
|
|
894
986
|
output: __HttpResponse,
|
|
895
987
|
context: __SerdeContext
|
|
896
988
|
) => Promise<ListReferenceStoresCommandOutput>;
|
|
989
|
+
export declare const de_ListRunCachesCommand: (
|
|
990
|
+
output: __HttpResponse,
|
|
991
|
+
context: __SerdeContext
|
|
992
|
+
) => Promise<ListRunCachesCommandOutput>;
|
|
897
993
|
export declare const de_ListRunGroupsCommand: (
|
|
898
994
|
output: __HttpResponse,
|
|
899
995
|
context: __SerdeContext
|
|
@@ -930,6 +1026,10 @@ export declare const de_ListWorkflowsCommand: (
|
|
|
930
1026
|
output: __HttpResponse,
|
|
931
1027
|
context: __SerdeContext
|
|
932
1028
|
) => Promise<ListWorkflowsCommandOutput>;
|
|
1029
|
+
export declare const de_PutS3AccessPolicyCommand: (
|
|
1030
|
+
output: __HttpResponse,
|
|
1031
|
+
context: __SerdeContext
|
|
1032
|
+
) => Promise<PutS3AccessPolicyCommandOutput>;
|
|
933
1033
|
export declare const de_StartAnnotationImportJobCommand: (
|
|
934
1034
|
output: __HttpResponse,
|
|
935
1035
|
context: __SerdeContext
|
|
@@ -974,10 +1074,18 @@ export declare const de_UpdateAnnotationStoreVersionCommand: (
|
|
|
974
1074
|
output: __HttpResponse,
|
|
975
1075
|
context: __SerdeContext
|
|
976
1076
|
) => Promise<UpdateAnnotationStoreVersionCommandOutput>;
|
|
1077
|
+
export declare const de_UpdateRunCacheCommand: (
|
|
1078
|
+
output: __HttpResponse,
|
|
1079
|
+
context: __SerdeContext
|
|
1080
|
+
) => Promise<UpdateRunCacheCommandOutput>;
|
|
977
1081
|
export declare const de_UpdateRunGroupCommand: (
|
|
978
1082
|
output: __HttpResponse,
|
|
979
1083
|
context: __SerdeContext
|
|
980
1084
|
) => Promise<UpdateRunGroupCommandOutput>;
|
|
1085
|
+
export declare const de_UpdateSequenceStoreCommand: (
|
|
1086
|
+
output: __HttpResponse,
|
|
1087
|
+
context: __SerdeContext
|
|
1088
|
+
) => Promise<UpdateSequenceStoreCommandOutput>;
|
|
981
1089
|
export declare const de_UpdateVariantStoreCommand: (
|
|
982
1090
|
output: __HttpResponse,
|
|
983
1091
|
context: __SerdeContext
|
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.699.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-omics",
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.699.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.699.0",
|
|
25
25
|
"@aws-sdk/core": "3.696.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.699.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.696.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.696.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.696.0",
|