@aws-sdk/client-omics 3.1013.0 → 3.1015.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 +56 -7
- package/dist-cjs/index.js +141 -14
- package/dist-cjs/schemas/schemas_0.js +230 -32
- package/dist-es/Omics.js +18 -0
- package/dist-es/commands/CancelRunBatchCommand.js +16 -0
- package/dist-es/commands/DeleteBatchCommand.js +16 -0
- package/dist-es/commands/DeleteRunBatchCommand.js +16 -0
- package/dist-es/commands/GetBatchCommand.js +16 -0
- package/dist-es/commands/ListBatchCommand.js +16 -0
- package/dist-es/commands/ListRunsInBatchCommand.js +16 -0
- package/dist-es/commands/StartRunBatchCommand.js +16 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/models/enums.js +33 -14
- package/dist-es/pagination/ListBatchPaginator.js +4 -0
- package/dist-es/pagination/ListRunsInBatchPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/schemas/schemas_0.js +222 -24
- package/dist-types/Omics.d.ts +64 -0
- package/dist-types/OmicsClient.d.ts +9 -2
- package/dist-types/commands/CancelAnnotationImportJobCommand.d.ts +1 -1
- package/dist-types/commands/CancelRunBatchCommand.d.ts +96 -0
- package/dist-types/commands/CancelVariantImportJobCommand.d.ts +1 -1
- package/dist-types/commands/CreateAnnotationStoreCommand.d.ts +1 -1
- package/dist-types/commands/CreateVariantStoreCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAnnotationStoreCommand.d.ts +1 -1
- package/dist-types/commands/DeleteBatchCommand.d.ts +96 -0
- package/dist-types/commands/DeleteRunBatchCommand.d.ts +96 -0
- package/dist-types/commands/DeleteVariantStoreCommand.d.ts +1 -1
- package/dist-types/commands/GetAnnotationImportJobCommand.d.ts +1 -1
- package/dist-types/commands/GetAnnotationStoreCommand.d.ts +1 -1
- package/dist-types/commands/GetBatchCommand.d.ts +146 -0
- package/dist-types/commands/GetRunCommand.d.ts +1 -0
- package/dist-types/commands/GetVariantImportJobCommand.d.ts +1 -1
- package/dist-types/commands/GetVariantStoreCommand.d.ts +1 -1
- package/dist-types/commands/ListAnnotationImportJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListAnnotationStoresCommand.d.ts +1 -1
- package/dist-types/commands/ListBatchCommand.d.ts +103 -0
- package/dist-types/commands/ListRunsCommand.d.ts +2 -0
- package/dist-types/commands/ListRunsInBatchCommand.d.ts +114 -0
- package/dist-types/commands/ListVariantImportJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListVariantStoresCommand.d.ts +1 -1
- package/dist-types/commands/StartAnnotationImportJobCommand.d.ts +1 -1
- package/dist-types/commands/StartRunBatchCommand.d.ts +144 -0
- package/dist-types/commands/StartVariantImportJobCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAnnotationStoreCommand.d.ts +1 -1
- package/dist-types/commands/UpdateVariantStoreCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/models/enums.d.ts +73 -38
- package/dist-types/models/models_0.d.ts +648 -2
- package/dist-types/pagination/ListBatchPaginator.d.ts +7 -0
- package/dist-types/pagination/ListRunsInBatchPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/schemas/schemas_0.d.ts +27 -0
- package/dist-types/ts3.4/Omics.d.ts +134 -0
- package/dist-types/ts3.4/OmicsClient.d.ts +42 -0
- package/dist-types/ts3.4/commands/CancelRunBatchCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteBatchCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/DeleteRunBatchCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetBatchCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListBatchCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListRunsInBatchCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/StartRunBatchCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/models/enums.d.ts +40 -18
- package/dist-types/ts3.4/models/models_0.d.ts +164 -0
- package/dist-types/ts3.4/pagination/ListBatchPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListRunsInBatchPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +27 -0
- package/package.json +12 -12
package/dist-types/Omics.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ import { AbortMultipartReadSetUploadCommandInput, AbortMultipartReadSetUploadCom
|
|
|
4
4
|
import { AcceptShareCommandInput, AcceptShareCommandOutput } from "./commands/AcceptShareCommand";
|
|
5
5
|
import { BatchDeleteReadSetCommandInput, BatchDeleteReadSetCommandOutput } from "./commands/BatchDeleteReadSetCommand";
|
|
6
6
|
import { CancelAnnotationImportJobCommandInput, CancelAnnotationImportJobCommandOutput } from "./commands/CancelAnnotationImportJobCommand";
|
|
7
|
+
import { CancelRunBatchCommandInput, CancelRunBatchCommandOutput } from "./commands/CancelRunBatchCommand";
|
|
7
8
|
import { CancelRunCommandInput, CancelRunCommandOutput } from "./commands/CancelRunCommand";
|
|
8
9
|
import { CancelVariantImportJobCommandInput, CancelVariantImportJobCommandOutput } from "./commands/CancelVariantImportJobCommand";
|
|
9
10
|
import { CompleteMultipartReadSetUploadCommandInput, CompleteMultipartReadSetUploadCommandOutput } from "./commands/CompleteMultipartReadSetUploadCommand";
|
|
@@ -20,8 +21,10 @@ import { CreateWorkflowCommandInput, CreateWorkflowCommandOutput } from "./comma
|
|
|
20
21
|
import { CreateWorkflowVersionCommandInput, CreateWorkflowVersionCommandOutput } from "./commands/CreateWorkflowVersionCommand";
|
|
21
22
|
import { DeleteAnnotationStoreCommandInput, DeleteAnnotationStoreCommandOutput } from "./commands/DeleteAnnotationStoreCommand";
|
|
22
23
|
import { DeleteAnnotationStoreVersionsCommandInput, DeleteAnnotationStoreVersionsCommandOutput } from "./commands/DeleteAnnotationStoreVersionsCommand";
|
|
24
|
+
import { DeleteBatchCommandInput, DeleteBatchCommandOutput } from "./commands/DeleteBatchCommand";
|
|
23
25
|
import { DeleteReferenceCommandInput, DeleteReferenceCommandOutput } from "./commands/DeleteReferenceCommand";
|
|
24
26
|
import { DeleteReferenceStoreCommandInput, DeleteReferenceStoreCommandOutput } from "./commands/DeleteReferenceStoreCommand";
|
|
27
|
+
import { DeleteRunBatchCommandInput, DeleteRunBatchCommandOutput } from "./commands/DeleteRunBatchCommand";
|
|
25
28
|
import { DeleteRunCacheCommandInput, DeleteRunCacheCommandOutput } from "./commands/DeleteRunCacheCommand";
|
|
26
29
|
import { DeleteRunCommandInput, DeleteRunCommandOutput } from "./commands/DeleteRunCommand";
|
|
27
30
|
import { DeleteRunGroupCommandInput, DeleteRunGroupCommandOutput } from "./commands/DeleteRunGroupCommand";
|
|
@@ -34,6 +37,7 @@ import { DeleteWorkflowVersionCommandInput, DeleteWorkflowVersionCommandOutput }
|
|
|
34
37
|
import { GetAnnotationImportJobCommandInput, GetAnnotationImportJobCommandOutput } from "./commands/GetAnnotationImportJobCommand";
|
|
35
38
|
import { GetAnnotationStoreCommandInput, GetAnnotationStoreCommandOutput } from "./commands/GetAnnotationStoreCommand";
|
|
36
39
|
import { GetAnnotationStoreVersionCommandInput, GetAnnotationStoreVersionCommandOutput } from "./commands/GetAnnotationStoreVersionCommand";
|
|
40
|
+
import { GetBatchCommandInput, GetBatchCommandOutput } from "./commands/GetBatchCommand";
|
|
37
41
|
import { GetReadSetActivationJobCommandInput, GetReadSetActivationJobCommandOutput } from "./commands/GetReadSetActivationJobCommand";
|
|
38
42
|
import { GetReadSetCommandInput, GetReadSetCommandOutput } from "./commands/GetReadSetCommand";
|
|
39
43
|
import { GetReadSetExportJobCommandInput, GetReadSetExportJobCommandOutput } from "./commands/GetReadSetExportJobCommand";
|
|
@@ -57,6 +61,7 @@ import { GetWorkflowVersionCommandInput, GetWorkflowVersionCommandOutput } from
|
|
|
57
61
|
import { ListAnnotationImportJobsCommandInput, ListAnnotationImportJobsCommandOutput } from "./commands/ListAnnotationImportJobsCommand";
|
|
58
62
|
import { ListAnnotationStoresCommandInput, ListAnnotationStoresCommandOutput } from "./commands/ListAnnotationStoresCommand";
|
|
59
63
|
import { ListAnnotationStoreVersionsCommandInput, ListAnnotationStoreVersionsCommandOutput } from "./commands/ListAnnotationStoreVersionsCommand";
|
|
64
|
+
import { ListBatchCommandInput, ListBatchCommandOutput } from "./commands/ListBatchCommand";
|
|
60
65
|
import { ListMultipartReadSetUploadsCommandInput, ListMultipartReadSetUploadsCommandOutput } from "./commands/ListMultipartReadSetUploadsCommand";
|
|
61
66
|
import { ListReadSetActivationJobsCommandInput, ListReadSetActivationJobsCommandOutput } from "./commands/ListReadSetActivationJobsCommand";
|
|
62
67
|
import { ListReadSetExportJobsCommandInput, ListReadSetExportJobsCommandOutput } from "./commands/ListReadSetExportJobsCommand";
|
|
@@ -69,6 +74,7 @@ import { ListReferenceStoresCommandInput, ListReferenceStoresCommandOutput } fro
|
|
|
69
74
|
import { ListRunCachesCommandInput, ListRunCachesCommandOutput } from "./commands/ListRunCachesCommand";
|
|
70
75
|
import { ListRunGroupsCommandInput, ListRunGroupsCommandOutput } from "./commands/ListRunGroupsCommand";
|
|
71
76
|
import { ListRunsCommandInput, ListRunsCommandOutput } from "./commands/ListRunsCommand";
|
|
77
|
+
import { ListRunsInBatchCommandInput, ListRunsInBatchCommandOutput } from "./commands/ListRunsInBatchCommand";
|
|
72
78
|
import { ListRunTasksCommandInput, ListRunTasksCommandOutput } from "./commands/ListRunTasksCommand";
|
|
73
79
|
import { ListSequenceStoresCommandInput, ListSequenceStoresCommandOutput } from "./commands/ListSequenceStoresCommand";
|
|
74
80
|
import { ListSharesCommandInput, ListSharesCommandOutput } from "./commands/ListSharesCommand";
|
|
@@ -83,6 +89,7 @@ import { StartReadSetActivationJobCommandInput, StartReadSetActivationJobCommand
|
|
|
83
89
|
import { StartReadSetExportJobCommandInput, StartReadSetExportJobCommandOutput } from "./commands/StartReadSetExportJobCommand";
|
|
84
90
|
import { StartReadSetImportJobCommandInput, StartReadSetImportJobCommandOutput } from "./commands/StartReadSetImportJobCommand";
|
|
85
91
|
import { StartReferenceImportJobCommandInput, StartReferenceImportJobCommandOutput } from "./commands/StartReferenceImportJobCommand";
|
|
92
|
+
import { StartRunBatchCommandInput, StartRunBatchCommandOutput } from "./commands/StartRunBatchCommand";
|
|
86
93
|
import { StartRunCommandInput, StartRunCommandOutput } from "./commands/StartRunCommand";
|
|
87
94
|
import { StartVariantImportJobCommandInput, StartVariantImportJobCommandOutput } from "./commands/StartVariantImportJobCommand";
|
|
88
95
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
@@ -128,6 +135,12 @@ export interface Omics {
|
|
|
128
135
|
cancelRun(args: CancelRunCommandInput, options?: __HttpHandlerOptions): Promise<CancelRunCommandOutput>;
|
|
129
136
|
cancelRun(args: CancelRunCommandInput, cb: (err: any, data?: CancelRunCommandOutput) => void): void;
|
|
130
137
|
cancelRun(args: CancelRunCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelRunCommandOutput) => void): void;
|
|
138
|
+
/**
|
|
139
|
+
* @see {@link CancelRunBatchCommand}
|
|
140
|
+
*/
|
|
141
|
+
cancelRunBatch(args: CancelRunBatchCommandInput, options?: __HttpHandlerOptions): Promise<CancelRunBatchCommandOutput>;
|
|
142
|
+
cancelRunBatch(args: CancelRunBatchCommandInput, cb: (err: any, data?: CancelRunBatchCommandOutput) => void): void;
|
|
143
|
+
cancelRunBatch(args: CancelRunBatchCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelRunBatchCommandOutput) => void): void;
|
|
131
144
|
/**
|
|
132
145
|
* @see {@link CancelVariantImportJobCommand}
|
|
133
146
|
*/
|
|
@@ -218,6 +231,12 @@ export interface Omics {
|
|
|
218
231
|
deleteAnnotationStoreVersions(args: DeleteAnnotationStoreVersionsCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAnnotationStoreVersionsCommandOutput>;
|
|
219
232
|
deleteAnnotationStoreVersions(args: DeleteAnnotationStoreVersionsCommandInput, cb: (err: any, data?: DeleteAnnotationStoreVersionsCommandOutput) => void): void;
|
|
220
233
|
deleteAnnotationStoreVersions(args: DeleteAnnotationStoreVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAnnotationStoreVersionsCommandOutput) => void): void;
|
|
234
|
+
/**
|
|
235
|
+
* @see {@link DeleteBatchCommand}
|
|
236
|
+
*/
|
|
237
|
+
deleteBatch(args: DeleteBatchCommandInput, options?: __HttpHandlerOptions): Promise<DeleteBatchCommandOutput>;
|
|
238
|
+
deleteBatch(args: DeleteBatchCommandInput, cb: (err: any, data?: DeleteBatchCommandOutput) => void): void;
|
|
239
|
+
deleteBatch(args: DeleteBatchCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteBatchCommandOutput) => void): void;
|
|
221
240
|
/**
|
|
222
241
|
* @see {@link DeleteReferenceCommand}
|
|
223
242
|
*/
|
|
@@ -236,6 +255,12 @@ export interface Omics {
|
|
|
236
255
|
deleteRun(args: DeleteRunCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRunCommandOutput>;
|
|
237
256
|
deleteRun(args: DeleteRunCommandInput, cb: (err: any, data?: DeleteRunCommandOutput) => void): void;
|
|
238
257
|
deleteRun(args: DeleteRunCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRunCommandOutput) => void): void;
|
|
258
|
+
/**
|
|
259
|
+
* @see {@link DeleteRunBatchCommand}
|
|
260
|
+
*/
|
|
261
|
+
deleteRunBatch(args: DeleteRunBatchCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRunBatchCommandOutput>;
|
|
262
|
+
deleteRunBatch(args: DeleteRunBatchCommandInput, cb: (err: any, data?: DeleteRunBatchCommandOutput) => void): void;
|
|
263
|
+
deleteRunBatch(args: DeleteRunBatchCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRunBatchCommandOutput) => void): void;
|
|
239
264
|
/**
|
|
240
265
|
* @see {@link DeleteRunCacheCommand}
|
|
241
266
|
*/
|
|
@@ -302,6 +327,12 @@ export interface Omics {
|
|
|
302
327
|
getAnnotationStoreVersion(args: GetAnnotationStoreVersionCommandInput, options?: __HttpHandlerOptions): Promise<GetAnnotationStoreVersionCommandOutput>;
|
|
303
328
|
getAnnotationStoreVersion(args: GetAnnotationStoreVersionCommandInput, cb: (err: any, data?: GetAnnotationStoreVersionCommandOutput) => void): void;
|
|
304
329
|
getAnnotationStoreVersion(args: GetAnnotationStoreVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAnnotationStoreVersionCommandOutput) => void): void;
|
|
330
|
+
/**
|
|
331
|
+
* @see {@link GetBatchCommand}
|
|
332
|
+
*/
|
|
333
|
+
getBatch(args: GetBatchCommandInput, options?: __HttpHandlerOptions): Promise<GetBatchCommandOutput>;
|
|
334
|
+
getBatch(args: GetBatchCommandInput, cb: (err: any, data?: GetBatchCommandOutput) => void): void;
|
|
335
|
+
getBatch(args: GetBatchCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBatchCommandOutput) => void): void;
|
|
305
336
|
/**
|
|
306
337
|
* @see {@link GetReadSetCommand}
|
|
307
338
|
*/
|
|
@@ -442,6 +473,13 @@ export interface Omics {
|
|
|
442
473
|
listAnnotationStoreVersions(args: ListAnnotationStoreVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListAnnotationStoreVersionsCommandOutput>;
|
|
443
474
|
listAnnotationStoreVersions(args: ListAnnotationStoreVersionsCommandInput, cb: (err: any, data?: ListAnnotationStoreVersionsCommandOutput) => void): void;
|
|
444
475
|
listAnnotationStoreVersions(args: ListAnnotationStoreVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAnnotationStoreVersionsCommandOutput) => void): void;
|
|
476
|
+
/**
|
|
477
|
+
* @see {@link ListBatchCommand}
|
|
478
|
+
*/
|
|
479
|
+
listBatch(): Promise<ListBatchCommandOutput>;
|
|
480
|
+
listBatch(args: ListBatchCommandInput, options?: __HttpHandlerOptions): Promise<ListBatchCommandOutput>;
|
|
481
|
+
listBatch(args: ListBatchCommandInput, cb: (err: any, data?: ListBatchCommandOutput) => void): void;
|
|
482
|
+
listBatch(args: ListBatchCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBatchCommandOutput) => void): void;
|
|
445
483
|
/**
|
|
446
484
|
* @see {@link ListMultipartReadSetUploadsCommand}
|
|
447
485
|
*/
|
|
@@ -518,6 +556,12 @@ export interface Omics {
|
|
|
518
556
|
listRuns(args: ListRunsCommandInput, options?: __HttpHandlerOptions): Promise<ListRunsCommandOutput>;
|
|
519
557
|
listRuns(args: ListRunsCommandInput, cb: (err: any, data?: ListRunsCommandOutput) => void): void;
|
|
520
558
|
listRuns(args: ListRunsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRunsCommandOutput) => void): void;
|
|
559
|
+
/**
|
|
560
|
+
* @see {@link ListRunsInBatchCommand}
|
|
561
|
+
*/
|
|
562
|
+
listRunsInBatch(args: ListRunsInBatchCommandInput, options?: __HttpHandlerOptions): Promise<ListRunsInBatchCommandOutput>;
|
|
563
|
+
listRunsInBatch(args: ListRunsInBatchCommandInput, cb: (err: any, data?: ListRunsInBatchCommandOutput) => void): void;
|
|
564
|
+
listRunsInBatch(args: ListRunsInBatchCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRunsInBatchCommandOutput) => void): void;
|
|
521
565
|
/**
|
|
522
566
|
* @see {@link ListRunTasksCommand}
|
|
523
567
|
*/
|
|
@@ -612,6 +656,12 @@ export interface Omics {
|
|
|
612
656
|
startRun(args: StartRunCommandInput, options?: __HttpHandlerOptions): Promise<StartRunCommandOutput>;
|
|
613
657
|
startRun(args: StartRunCommandInput, cb: (err: any, data?: StartRunCommandOutput) => void): void;
|
|
614
658
|
startRun(args: StartRunCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartRunCommandOutput) => void): void;
|
|
659
|
+
/**
|
|
660
|
+
* @see {@link StartRunBatchCommand}
|
|
661
|
+
*/
|
|
662
|
+
startRunBatch(args: StartRunBatchCommandInput, options?: __HttpHandlerOptions): Promise<StartRunBatchCommandOutput>;
|
|
663
|
+
startRunBatch(args: StartRunBatchCommandInput, cb: (err: any, data?: StartRunBatchCommandOutput) => void): void;
|
|
664
|
+
startRunBatch(args: StartRunBatchCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartRunBatchCommandOutput) => void): void;
|
|
615
665
|
/**
|
|
616
666
|
* @see {@link StartVariantImportJobCommand}
|
|
617
667
|
*/
|
|
@@ -705,6 +755,13 @@ export interface Omics {
|
|
|
705
755
|
* @returns AsyncIterable of {@link ListAnnotationStoreVersionsCommandOutput}.
|
|
706
756
|
*/
|
|
707
757
|
paginateListAnnotationStoreVersions(args: ListAnnotationStoreVersionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAnnotationStoreVersionsCommandOutput>;
|
|
758
|
+
/**
|
|
759
|
+
* @see {@link ListBatchCommand}
|
|
760
|
+
* @param args - command input.
|
|
761
|
+
* @param paginationConfig - optional pagination config.
|
|
762
|
+
* @returns AsyncIterable of {@link ListBatchCommandOutput}.
|
|
763
|
+
*/
|
|
764
|
+
paginateListBatch(args?: ListBatchCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListBatchCommandOutput>;
|
|
708
765
|
/**
|
|
709
766
|
* @see {@link ListMultipartReadSetUploadsCommand}
|
|
710
767
|
* @param args - command input.
|
|
@@ -789,6 +846,13 @@ export interface Omics {
|
|
|
789
846
|
* @returns AsyncIterable of {@link ListRunsCommandOutput}.
|
|
790
847
|
*/
|
|
791
848
|
paginateListRuns(args?: ListRunsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListRunsCommandOutput>;
|
|
849
|
+
/**
|
|
850
|
+
* @see {@link ListRunsInBatchCommand}
|
|
851
|
+
* @param args - command input.
|
|
852
|
+
* @param paginationConfig - optional pagination config.
|
|
853
|
+
* @returns AsyncIterable of {@link ListRunsInBatchCommandOutput}.
|
|
854
|
+
*/
|
|
855
|
+
paginateListRunsInBatch(args: ListRunsInBatchCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListRunsInBatchCommandOutput>;
|
|
792
856
|
/**
|
|
793
857
|
* @see {@link ListRunTasksCommand}
|
|
794
858
|
* @param args - command input.
|
|
@@ -11,6 +11,7 @@ import { AbortMultipartReadSetUploadCommandInput, AbortMultipartReadSetUploadCom
|
|
|
11
11
|
import { AcceptShareCommandInput, AcceptShareCommandOutput } from "./commands/AcceptShareCommand";
|
|
12
12
|
import { BatchDeleteReadSetCommandInput, BatchDeleteReadSetCommandOutput } from "./commands/BatchDeleteReadSetCommand";
|
|
13
13
|
import { CancelAnnotationImportJobCommandInput, CancelAnnotationImportJobCommandOutput } from "./commands/CancelAnnotationImportJobCommand";
|
|
14
|
+
import { CancelRunBatchCommandInput, CancelRunBatchCommandOutput } from "./commands/CancelRunBatchCommand";
|
|
14
15
|
import { CancelRunCommandInput, CancelRunCommandOutput } from "./commands/CancelRunCommand";
|
|
15
16
|
import { CancelVariantImportJobCommandInput, CancelVariantImportJobCommandOutput } from "./commands/CancelVariantImportJobCommand";
|
|
16
17
|
import { CompleteMultipartReadSetUploadCommandInput, CompleteMultipartReadSetUploadCommandOutput } from "./commands/CompleteMultipartReadSetUploadCommand";
|
|
@@ -27,8 +28,10 @@ import { CreateWorkflowCommandInput, CreateWorkflowCommandOutput } from "./comma
|
|
|
27
28
|
import { CreateWorkflowVersionCommandInput, CreateWorkflowVersionCommandOutput } from "./commands/CreateWorkflowVersionCommand";
|
|
28
29
|
import { DeleteAnnotationStoreCommandInput, DeleteAnnotationStoreCommandOutput } from "./commands/DeleteAnnotationStoreCommand";
|
|
29
30
|
import { DeleteAnnotationStoreVersionsCommandInput, DeleteAnnotationStoreVersionsCommandOutput } from "./commands/DeleteAnnotationStoreVersionsCommand";
|
|
31
|
+
import { DeleteBatchCommandInput, DeleteBatchCommandOutput } from "./commands/DeleteBatchCommand";
|
|
30
32
|
import { DeleteReferenceCommandInput, DeleteReferenceCommandOutput } from "./commands/DeleteReferenceCommand";
|
|
31
33
|
import { DeleteReferenceStoreCommandInput, DeleteReferenceStoreCommandOutput } from "./commands/DeleteReferenceStoreCommand";
|
|
34
|
+
import { DeleteRunBatchCommandInput, DeleteRunBatchCommandOutput } from "./commands/DeleteRunBatchCommand";
|
|
32
35
|
import { DeleteRunCacheCommandInput, DeleteRunCacheCommandOutput } from "./commands/DeleteRunCacheCommand";
|
|
33
36
|
import { DeleteRunCommandInput, DeleteRunCommandOutput } from "./commands/DeleteRunCommand";
|
|
34
37
|
import { DeleteRunGroupCommandInput, DeleteRunGroupCommandOutput } from "./commands/DeleteRunGroupCommand";
|
|
@@ -41,6 +44,7 @@ import { DeleteWorkflowVersionCommandInput, DeleteWorkflowVersionCommandOutput }
|
|
|
41
44
|
import { GetAnnotationImportJobCommandInput, GetAnnotationImportJobCommandOutput } from "./commands/GetAnnotationImportJobCommand";
|
|
42
45
|
import { GetAnnotationStoreCommandInput, GetAnnotationStoreCommandOutput } from "./commands/GetAnnotationStoreCommand";
|
|
43
46
|
import { GetAnnotationStoreVersionCommandInput, GetAnnotationStoreVersionCommandOutput } from "./commands/GetAnnotationStoreVersionCommand";
|
|
47
|
+
import { GetBatchCommandInput, GetBatchCommandOutput } from "./commands/GetBatchCommand";
|
|
44
48
|
import { GetReadSetActivationJobCommandInput, GetReadSetActivationJobCommandOutput } from "./commands/GetReadSetActivationJobCommand";
|
|
45
49
|
import { GetReadSetCommandInput, GetReadSetCommandOutput } from "./commands/GetReadSetCommand";
|
|
46
50
|
import { GetReadSetExportJobCommandInput, GetReadSetExportJobCommandOutput } from "./commands/GetReadSetExportJobCommand";
|
|
@@ -64,6 +68,7 @@ import { GetWorkflowVersionCommandInput, GetWorkflowVersionCommandOutput } from
|
|
|
64
68
|
import { ListAnnotationImportJobsCommandInput, ListAnnotationImportJobsCommandOutput } from "./commands/ListAnnotationImportJobsCommand";
|
|
65
69
|
import { ListAnnotationStoresCommandInput, ListAnnotationStoresCommandOutput } from "./commands/ListAnnotationStoresCommand";
|
|
66
70
|
import { ListAnnotationStoreVersionsCommandInput, ListAnnotationStoreVersionsCommandOutput } from "./commands/ListAnnotationStoreVersionsCommand";
|
|
71
|
+
import { ListBatchCommandInput, ListBatchCommandOutput } from "./commands/ListBatchCommand";
|
|
67
72
|
import { ListMultipartReadSetUploadsCommandInput, ListMultipartReadSetUploadsCommandOutput } from "./commands/ListMultipartReadSetUploadsCommand";
|
|
68
73
|
import { ListReadSetActivationJobsCommandInput, ListReadSetActivationJobsCommandOutput } from "./commands/ListReadSetActivationJobsCommand";
|
|
69
74
|
import { ListReadSetExportJobsCommandInput, ListReadSetExportJobsCommandOutput } from "./commands/ListReadSetExportJobsCommand";
|
|
@@ -76,6 +81,7 @@ import { ListReferenceStoresCommandInput, ListReferenceStoresCommandOutput } fro
|
|
|
76
81
|
import { ListRunCachesCommandInput, ListRunCachesCommandOutput } from "./commands/ListRunCachesCommand";
|
|
77
82
|
import { ListRunGroupsCommandInput, ListRunGroupsCommandOutput } from "./commands/ListRunGroupsCommand";
|
|
78
83
|
import { ListRunsCommandInput, ListRunsCommandOutput } from "./commands/ListRunsCommand";
|
|
84
|
+
import { ListRunsInBatchCommandInput, ListRunsInBatchCommandOutput } from "./commands/ListRunsInBatchCommand";
|
|
79
85
|
import { ListRunTasksCommandInput, ListRunTasksCommandOutput } from "./commands/ListRunTasksCommand";
|
|
80
86
|
import { ListSequenceStoresCommandInput, ListSequenceStoresCommandOutput } from "./commands/ListSequenceStoresCommand";
|
|
81
87
|
import { ListSharesCommandInput, ListSharesCommandOutput } from "./commands/ListSharesCommand";
|
|
@@ -90,6 +96,7 @@ import { StartReadSetActivationJobCommandInput, StartReadSetActivationJobCommand
|
|
|
90
96
|
import { StartReadSetExportJobCommandInput, StartReadSetExportJobCommandOutput } from "./commands/StartReadSetExportJobCommand";
|
|
91
97
|
import { StartReadSetImportJobCommandInput, StartReadSetImportJobCommandOutput } from "./commands/StartReadSetImportJobCommand";
|
|
92
98
|
import { StartReferenceImportJobCommandInput, StartReferenceImportJobCommandOutput } from "./commands/StartReferenceImportJobCommand";
|
|
99
|
+
import { StartRunBatchCommandInput, StartRunBatchCommandOutput } from "./commands/StartRunBatchCommand";
|
|
93
100
|
import { StartRunCommandInput, StartRunCommandOutput } from "./commands/StartRunCommand";
|
|
94
101
|
import { StartVariantImportJobCommandInput, StartVariantImportJobCommandOutput } from "./commands/StartVariantImportJobCommand";
|
|
95
102
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
@@ -109,11 +116,11 @@ export { __Client };
|
|
|
109
116
|
/**
|
|
110
117
|
* @public
|
|
111
118
|
*/
|
|
112
|
-
export type ServiceInputTypes = AbortMultipartReadSetUploadCommandInput | AcceptShareCommandInput | BatchDeleteReadSetCommandInput | CancelAnnotationImportJobCommandInput | CancelRunCommandInput | CancelVariantImportJobCommandInput | CompleteMultipartReadSetUploadCommandInput | CreateAnnotationStoreCommandInput | CreateAnnotationStoreVersionCommandInput | CreateMultipartReadSetUploadCommandInput | CreateReferenceStoreCommandInput | CreateRunCacheCommandInput | CreateRunGroupCommandInput | CreateSequenceStoreCommandInput | CreateShareCommandInput | CreateVariantStoreCommandInput | CreateWorkflowCommandInput | CreateWorkflowVersionCommandInput | DeleteAnnotationStoreCommandInput | DeleteAnnotationStoreVersionsCommandInput | DeleteReferenceCommandInput | DeleteReferenceStoreCommandInput | DeleteRunCacheCommandInput | DeleteRunCommandInput | DeleteRunGroupCommandInput | DeleteS3AccessPolicyCommandInput | DeleteSequenceStoreCommandInput | DeleteShareCommandInput | DeleteVariantStoreCommandInput | DeleteWorkflowCommandInput | DeleteWorkflowVersionCommandInput | GetAnnotationImportJobCommandInput | GetAnnotationStoreCommandInput | GetAnnotationStoreVersionCommandInput | GetReadSetActivationJobCommandInput | GetReadSetCommandInput | GetReadSetExportJobCommandInput | GetReadSetImportJobCommandInput | GetReadSetMetadataCommandInput | GetReferenceCommandInput | GetReferenceImportJobCommandInput | GetReferenceMetadataCommandInput | GetReferenceStoreCommandInput | GetRunCacheCommandInput | GetRunCommandInput | GetRunGroupCommandInput | GetRunTaskCommandInput | GetS3AccessPolicyCommandInput | GetSequenceStoreCommandInput | GetShareCommandInput | GetVariantImportJobCommandInput | GetVariantStoreCommandInput | GetWorkflowCommandInput | GetWorkflowVersionCommandInput | ListAnnotationImportJobsCommandInput | ListAnnotationStoreVersionsCommandInput | ListAnnotationStoresCommandInput | ListMultipartReadSetUploadsCommandInput | ListReadSetActivationJobsCommandInput | ListReadSetExportJobsCommandInput | ListReadSetImportJobsCommandInput | ListReadSetUploadPartsCommandInput | ListReadSetsCommandInput | ListReferenceImportJobsCommandInput | ListReferenceStoresCommandInput | ListReferencesCommandInput | ListRunCachesCommandInput | ListRunGroupsCommandInput | ListRunTasksCommandInput | ListRunsCommandInput | ListSequenceStoresCommandInput | ListSharesCommandInput | ListTagsForResourceCommandInput | ListVariantImportJobsCommandInput | ListVariantStoresCommandInput | ListWorkflowVersionsCommandInput | ListWorkflowsCommandInput | PutS3AccessPolicyCommandInput | StartAnnotationImportJobCommandInput | StartReadSetActivationJobCommandInput | StartReadSetExportJobCommandInput | StartReadSetImportJobCommandInput | StartReferenceImportJobCommandInput | StartRunCommandInput | StartVariantImportJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAnnotationStoreCommandInput | UpdateAnnotationStoreVersionCommandInput | UpdateRunCacheCommandInput | UpdateRunGroupCommandInput | UpdateSequenceStoreCommandInput | UpdateVariantStoreCommandInput | UpdateWorkflowCommandInput | UpdateWorkflowVersionCommandInput | UploadReadSetPartCommandInput;
|
|
119
|
+
export type ServiceInputTypes = AbortMultipartReadSetUploadCommandInput | AcceptShareCommandInput | BatchDeleteReadSetCommandInput | CancelAnnotationImportJobCommandInput | CancelRunBatchCommandInput | CancelRunCommandInput | CancelVariantImportJobCommandInput | CompleteMultipartReadSetUploadCommandInput | CreateAnnotationStoreCommandInput | CreateAnnotationStoreVersionCommandInput | CreateMultipartReadSetUploadCommandInput | CreateReferenceStoreCommandInput | CreateRunCacheCommandInput | CreateRunGroupCommandInput | CreateSequenceStoreCommandInput | CreateShareCommandInput | CreateVariantStoreCommandInput | CreateWorkflowCommandInput | CreateWorkflowVersionCommandInput | DeleteAnnotationStoreCommandInput | DeleteAnnotationStoreVersionsCommandInput | DeleteBatchCommandInput | DeleteReferenceCommandInput | DeleteReferenceStoreCommandInput | DeleteRunBatchCommandInput | DeleteRunCacheCommandInput | DeleteRunCommandInput | DeleteRunGroupCommandInput | DeleteS3AccessPolicyCommandInput | DeleteSequenceStoreCommandInput | DeleteShareCommandInput | DeleteVariantStoreCommandInput | DeleteWorkflowCommandInput | DeleteWorkflowVersionCommandInput | GetAnnotationImportJobCommandInput | GetAnnotationStoreCommandInput | GetAnnotationStoreVersionCommandInput | GetBatchCommandInput | GetReadSetActivationJobCommandInput | GetReadSetCommandInput | GetReadSetExportJobCommandInput | GetReadSetImportJobCommandInput | GetReadSetMetadataCommandInput | GetReferenceCommandInput | GetReferenceImportJobCommandInput | GetReferenceMetadataCommandInput | GetReferenceStoreCommandInput | GetRunCacheCommandInput | GetRunCommandInput | GetRunGroupCommandInput | GetRunTaskCommandInput | GetS3AccessPolicyCommandInput | GetSequenceStoreCommandInput | GetShareCommandInput | GetVariantImportJobCommandInput | GetVariantStoreCommandInput | GetWorkflowCommandInput | GetWorkflowVersionCommandInput | ListAnnotationImportJobsCommandInput | ListAnnotationStoreVersionsCommandInput | ListAnnotationStoresCommandInput | ListBatchCommandInput | ListMultipartReadSetUploadsCommandInput | ListReadSetActivationJobsCommandInput | ListReadSetExportJobsCommandInput | ListReadSetImportJobsCommandInput | ListReadSetUploadPartsCommandInput | ListReadSetsCommandInput | ListReferenceImportJobsCommandInput | ListReferenceStoresCommandInput | ListReferencesCommandInput | ListRunCachesCommandInput | ListRunGroupsCommandInput | ListRunTasksCommandInput | ListRunsCommandInput | ListRunsInBatchCommandInput | ListSequenceStoresCommandInput | ListSharesCommandInput | ListTagsForResourceCommandInput | ListVariantImportJobsCommandInput | ListVariantStoresCommandInput | ListWorkflowVersionsCommandInput | ListWorkflowsCommandInput | PutS3AccessPolicyCommandInput | StartAnnotationImportJobCommandInput | StartReadSetActivationJobCommandInput | StartReadSetExportJobCommandInput | StartReadSetImportJobCommandInput | StartReferenceImportJobCommandInput | StartRunBatchCommandInput | StartRunCommandInput | StartVariantImportJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAnnotationStoreCommandInput | UpdateAnnotationStoreVersionCommandInput | UpdateRunCacheCommandInput | UpdateRunGroupCommandInput | UpdateSequenceStoreCommandInput | UpdateVariantStoreCommandInput | UpdateWorkflowCommandInput | UpdateWorkflowVersionCommandInput | UploadReadSetPartCommandInput;
|
|
113
120
|
/**
|
|
114
121
|
* @public
|
|
115
122
|
*/
|
|
116
|
-
export type ServiceOutputTypes = AbortMultipartReadSetUploadCommandOutput | AcceptShareCommandOutput | BatchDeleteReadSetCommandOutput | CancelAnnotationImportJobCommandOutput | CancelRunCommandOutput | CancelVariantImportJobCommandOutput | CompleteMultipartReadSetUploadCommandOutput | CreateAnnotationStoreCommandOutput | CreateAnnotationStoreVersionCommandOutput | CreateMultipartReadSetUploadCommandOutput | CreateReferenceStoreCommandOutput | CreateRunCacheCommandOutput | CreateRunGroupCommandOutput | CreateSequenceStoreCommandOutput | CreateShareCommandOutput | CreateVariantStoreCommandOutput | CreateWorkflowCommandOutput | CreateWorkflowVersionCommandOutput | DeleteAnnotationStoreCommandOutput | DeleteAnnotationStoreVersionsCommandOutput | DeleteReferenceCommandOutput | DeleteReferenceStoreCommandOutput | DeleteRunCacheCommandOutput | DeleteRunCommandOutput | DeleteRunGroupCommandOutput | DeleteS3AccessPolicyCommandOutput | DeleteSequenceStoreCommandOutput | DeleteShareCommandOutput | DeleteVariantStoreCommandOutput | DeleteWorkflowCommandOutput | DeleteWorkflowVersionCommandOutput | GetAnnotationImportJobCommandOutput | GetAnnotationStoreCommandOutput | GetAnnotationStoreVersionCommandOutput | GetReadSetActivationJobCommandOutput | GetReadSetCommandOutput | GetReadSetExportJobCommandOutput | GetReadSetImportJobCommandOutput | GetReadSetMetadataCommandOutput | GetReferenceCommandOutput | GetReferenceImportJobCommandOutput | GetReferenceMetadataCommandOutput | GetReferenceStoreCommandOutput | GetRunCacheCommandOutput | GetRunCommandOutput | GetRunGroupCommandOutput | GetRunTaskCommandOutput | GetS3AccessPolicyCommandOutput | GetSequenceStoreCommandOutput | GetShareCommandOutput | GetVariantImportJobCommandOutput | GetVariantStoreCommandOutput | GetWorkflowCommandOutput | GetWorkflowVersionCommandOutput | ListAnnotationImportJobsCommandOutput | ListAnnotationStoreVersionsCommandOutput | ListAnnotationStoresCommandOutput | ListMultipartReadSetUploadsCommandOutput | ListReadSetActivationJobsCommandOutput | ListReadSetExportJobsCommandOutput | ListReadSetImportJobsCommandOutput | ListReadSetUploadPartsCommandOutput | ListReadSetsCommandOutput | ListReferenceImportJobsCommandOutput | ListReferenceStoresCommandOutput | ListReferencesCommandOutput | ListRunCachesCommandOutput | ListRunGroupsCommandOutput | ListRunTasksCommandOutput | ListRunsCommandOutput | ListSequenceStoresCommandOutput | ListSharesCommandOutput | ListTagsForResourceCommandOutput | ListVariantImportJobsCommandOutput | ListVariantStoresCommandOutput | ListWorkflowVersionsCommandOutput | ListWorkflowsCommandOutput | PutS3AccessPolicyCommandOutput | StartAnnotationImportJobCommandOutput | StartReadSetActivationJobCommandOutput | StartReadSetExportJobCommandOutput | StartReadSetImportJobCommandOutput | StartReferenceImportJobCommandOutput | StartRunCommandOutput | StartVariantImportJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAnnotationStoreCommandOutput | UpdateAnnotationStoreVersionCommandOutput | UpdateRunCacheCommandOutput | UpdateRunGroupCommandOutput | UpdateSequenceStoreCommandOutput | UpdateVariantStoreCommandOutput | UpdateWorkflowCommandOutput | UpdateWorkflowVersionCommandOutput | UploadReadSetPartCommandOutput;
|
|
123
|
+
export type ServiceOutputTypes = AbortMultipartReadSetUploadCommandOutput | AcceptShareCommandOutput | BatchDeleteReadSetCommandOutput | CancelAnnotationImportJobCommandOutput | CancelRunBatchCommandOutput | CancelRunCommandOutput | CancelVariantImportJobCommandOutput | CompleteMultipartReadSetUploadCommandOutput | CreateAnnotationStoreCommandOutput | CreateAnnotationStoreVersionCommandOutput | CreateMultipartReadSetUploadCommandOutput | CreateReferenceStoreCommandOutput | CreateRunCacheCommandOutput | CreateRunGroupCommandOutput | CreateSequenceStoreCommandOutput | CreateShareCommandOutput | CreateVariantStoreCommandOutput | CreateWorkflowCommandOutput | CreateWorkflowVersionCommandOutput | DeleteAnnotationStoreCommandOutput | DeleteAnnotationStoreVersionsCommandOutput | DeleteBatchCommandOutput | DeleteReferenceCommandOutput | DeleteReferenceStoreCommandOutput | DeleteRunBatchCommandOutput | DeleteRunCacheCommandOutput | DeleteRunCommandOutput | DeleteRunGroupCommandOutput | DeleteS3AccessPolicyCommandOutput | DeleteSequenceStoreCommandOutput | DeleteShareCommandOutput | DeleteVariantStoreCommandOutput | DeleteWorkflowCommandOutput | DeleteWorkflowVersionCommandOutput | GetAnnotationImportJobCommandOutput | GetAnnotationStoreCommandOutput | GetAnnotationStoreVersionCommandOutput | GetBatchCommandOutput | GetReadSetActivationJobCommandOutput | GetReadSetCommandOutput | GetReadSetExportJobCommandOutput | GetReadSetImportJobCommandOutput | GetReadSetMetadataCommandOutput | GetReferenceCommandOutput | GetReferenceImportJobCommandOutput | GetReferenceMetadataCommandOutput | GetReferenceStoreCommandOutput | GetRunCacheCommandOutput | GetRunCommandOutput | GetRunGroupCommandOutput | GetRunTaskCommandOutput | GetS3AccessPolicyCommandOutput | GetSequenceStoreCommandOutput | GetShareCommandOutput | GetVariantImportJobCommandOutput | GetVariantStoreCommandOutput | GetWorkflowCommandOutput | GetWorkflowVersionCommandOutput | ListAnnotationImportJobsCommandOutput | ListAnnotationStoreVersionsCommandOutput | ListAnnotationStoresCommandOutput | ListBatchCommandOutput | ListMultipartReadSetUploadsCommandOutput | ListReadSetActivationJobsCommandOutput | ListReadSetExportJobsCommandOutput | ListReadSetImportJobsCommandOutput | ListReadSetUploadPartsCommandOutput | ListReadSetsCommandOutput | ListReferenceImportJobsCommandOutput | ListReferenceStoresCommandOutput | ListReferencesCommandOutput | ListRunCachesCommandOutput | ListRunGroupsCommandOutput | ListRunTasksCommandOutput | ListRunsCommandOutput | ListRunsInBatchCommandOutput | ListSequenceStoresCommandOutput | ListSharesCommandOutput | ListTagsForResourceCommandOutput | ListVariantImportJobsCommandOutput | ListVariantStoresCommandOutput | ListWorkflowVersionsCommandOutput | ListWorkflowsCommandOutput | PutS3AccessPolicyCommandOutput | StartAnnotationImportJobCommandOutput | StartReadSetActivationJobCommandOutput | StartReadSetExportJobCommandOutput | StartReadSetImportJobCommandOutput | StartReferenceImportJobCommandOutput | StartRunBatchCommandOutput | StartRunCommandOutput | StartVariantImportJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAnnotationStoreCommandOutput | UpdateAnnotationStoreVersionCommandOutput | UpdateRunCacheCommandOutput | UpdateRunGroupCommandOutput | UpdateSequenceStoreCommandOutput | UpdateVariantStoreCommandOutput | UpdateWorkflowCommandOutput | UpdateWorkflowVersionCommandOutput | UploadReadSetPartCommandOutput;
|
|
117
124
|
/**
|
|
118
125
|
* @public
|
|
119
126
|
*/
|
|
@@ -27,7 +27,7 @@ declare const CancelAnnotationImportJobCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <important> <p>Amazon Web Services HealthOmics variant stores and annotation stores
|
|
30
|
+
* <important> <p>Amazon Web Services HealthOmics variant stores and annotation stores are no longer open to new customers. Existing customers can continue to use the service as normal. For more information, see <a href="https://docs.aws.amazon.com/omics/latest/dev/variant-store-availability-change.html"> Amazon Web Services HealthOmics variant store and annotation store availability change</a>.</p> </important> <p>Cancels an annotation import job.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { CancelRunBatchRequest, CancelRunBatchResponse } from "../models/models_0";
|
|
4
|
+
import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link CancelRunBatchCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface CancelRunBatchCommandInput extends CancelRunBatchRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link CancelRunBatchCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface CancelRunBatchCommandOutput extends CancelRunBatchResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const CancelRunBatchCommand_base: {
|
|
25
|
+
new (input: CancelRunBatchCommandInput): import("@smithy/smithy-client").CommandImpl<CancelRunBatchCommandInput, CancelRunBatchCommandOutput, OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: CancelRunBatchCommandInput): import("@smithy/smithy-client").CommandImpl<CancelRunBatchCommandInput, CancelRunBatchCommandOutput, OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Cancels all runs within a specified batch. This operation prevents not-yet-submitted runs from starting and submits <code>CancelRun</code> requests for runs that have already started.</p> <p>Cancel is only allowed on batches in <code>PENDING</code>, <code>SUBMITTING</code>, or <code>INPROGRESS</code> state. Cancel operations are non-atomic and may be partially successful. Use <code>GetBatch</code> to review <code>successfulCancelSubmissionCount</code> and <code>failedCancelSubmissionCount</code> in the <code>submissionSummary</code>. Only one cancel or delete operation per batch is allowed at a time.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { OmicsClient, CancelRunBatchCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
35
|
+
* // const { OmicsClient, CancelRunBatchCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
36
|
+
* // import type { OmicsClientConfig } from "@aws-sdk/client-omics";
|
|
37
|
+
* const config = {}; // type is OmicsClientConfig
|
|
38
|
+
* const client = new OmicsClient(config);
|
|
39
|
+
* const input = { // CancelRunBatchRequest
|
|
40
|
+
* batchId: "STRING_VALUE", // required
|
|
41
|
+
* };
|
|
42
|
+
* const command = new CancelRunBatchCommand(input);
|
|
43
|
+
* const response = await client.send(command);
|
|
44
|
+
* // {};
|
|
45
|
+
*
|
|
46
|
+
* ```
|
|
47
|
+
*
|
|
48
|
+
* @param CancelRunBatchCommandInput - {@link CancelRunBatchCommandInput}
|
|
49
|
+
* @returns {@link CancelRunBatchCommandOutput}
|
|
50
|
+
* @see {@link CancelRunBatchCommandInput} for command's `input` shape.
|
|
51
|
+
* @see {@link CancelRunBatchCommandOutput} for command's `response` shape.
|
|
52
|
+
* @see {@link OmicsClientResolvedConfig | config} for OmicsClient's `config` shape.
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
55
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ConflictException} (client fault)
|
|
58
|
+
* <p>The request cannot be applied to the target resource in its current state.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link InternalServerException} (server fault)
|
|
61
|
+
* <p>An unexpected error occurred. Try the request again.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link RequestTimeoutException} (client fault)
|
|
64
|
+
* <p>The request timed out.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
67
|
+
* <p>The target resource was not found in the current Region.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
70
|
+
* <p>The request exceeds a service quota.</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
73
|
+
* <p>The request was denied due to request throttling.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link ValidationException} (client fault)
|
|
76
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link OmicsServiceException}
|
|
79
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
80
|
+
*
|
|
81
|
+
*
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
84
|
+
export declare class CancelRunBatchCommand extends CancelRunBatchCommand_base {
|
|
85
|
+
/** @internal type navigation helper, not in runtime. */
|
|
86
|
+
protected static __types: {
|
|
87
|
+
api: {
|
|
88
|
+
input: CancelRunBatchRequest;
|
|
89
|
+
output: {};
|
|
90
|
+
};
|
|
91
|
+
sdk: {
|
|
92
|
+
input: CancelRunBatchCommandInput;
|
|
93
|
+
output: CancelRunBatchCommandOutput;
|
|
94
|
+
};
|
|
95
|
+
};
|
|
96
|
+
}
|
|
@@ -27,7 +27,7 @@ declare const CancelVariantImportJobCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <important> <p>Amazon Web Services HealthOmics variant stores and annotation stores
|
|
30
|
+
* <important> <p>Amazon Web Services HealthOmics variant stores and annotation stores are no longer open to new customers. Existing customers can continue to use the service as normal. For more information, see <a href="https://docs.aws.amazon.com/omics/latest/dev/variant-store-availability-change.html"> Amazon Web Services HealthOmics variant store and annotation store availability change</a>.</p> </important> <p>Cancels a variant import job.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -27,7 +27,7 @@ declare const CreateAnnotationStoreCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <important> <p>Amazon Web Services HealthOmics variant stores and annotation stores
|
|
30
|
+
* <important> <p>Amazon Web Services HealthOmics variant stores and annotation stores are no longer open to new customers. Existing customers can continue to use the service as normal. For more information, see <a href="https://docs.aws.amazon.com/omics/latest/dev/variant-store-availability-change.html"> Amazon Web Services HealthOmics variant store and annotation store availability change</a>.</p> </important> <p>Creates an annotation store.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -27,7 +27,7 @@ declare const CreateVariantStoreCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <important> <p>Amazon Web Services HealthOmics variant stores and annotation stores
|
|
30
|
+
* <important> <p>Amazon Web Services HealthOmics variant stores and annotation stores are no longer open to new customers. Existing customers can continue to use the service as normal. For more information, see <a href="https://docs.aws.amazon.com/omics/latest/dev/variant-store-availability-change.html"> Amazon Web Services HealthOmics variant store and annotation store availability change</a>.</p> </important> <p>Creates a variant store.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -27,7 +27,7 @@ declare const DeleteAnnotationStoreCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <important> <p>Amazon Web Services HealthOmics variant stores and annotation stores
|
|
30
|
+
* <important> <p>Amazon Web Services HealthOmics variant stores and annotation stores are no longer open to new customers. Existing customers can continue to use the service as normal. For more information, see <a href="https://docs.aws.amazon.com/omics/latest/dev/variant-store-availability-change.html"> Amazon Web Services HealthOmics variant store and annotation store availability change</a>.</p> </important> <p>Deletes an annotation store.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { DeleteBatchRequest } from "../models/models_0";
|
|
4
|
+
import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DeleteBatchCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DeleteBatchCommandInput extends DeleteBatchRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DeleteBatchCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteBatchCommandOutput extends __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DeleteBatchCommand_base: {
|
|
25
|
+
new (input: DeleteBatchCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteBatchCommandInput, DeleteBatchCommandOutput, OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: DeleteBatchCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteBatchCommandInput, DeleteBatchCommandOutput, OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Deletes a run batch resource and its associated metadata. This operation does not delete the individual workflow runs. To delete the runs, call <code>DeleteRunBatch</code> before calling <code>DeleteBatch</code>.</p> <p> <code>DeleteBatch</code> requires the batch to be in a terminal state: <code>PROCESSED</code>, <code>FAILED</code>, <code>CANCELLED</code>, or <code>RUNS_DELETED</code>. After <code>DeleteBatch</code> completes, the batch metadata is no longer accessible. You cannot call <code>GetBatch</code>, <code>ListRunsInBatch</code>, <code>DeleteRunBatch</code>, or <code>CancelRunBatch</code> on a deleted batch.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { OmicsClient, DeleteBatchCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
35
|
+
* // const { OmicsClient, DeleteBatchCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
36
|
+
* // import type { OmicsClientConfig } from "@aws-sdk/client-omics";
|
|
37
|
+
* const config = {}; // type is OmicsClientConfig
|
|
38
|
+
* const client = new OmicsClient(config);
|
|
39
|
+
* const input = { // DeleteBatchRequest
|
|
40
|
+
* batchId: "STRING_VALUE", // required
|
|
41
|
+
* };
|
|
42
|
+
* const command = new DeleteBatchCommand(input);
|
|
43
|
+
* const response = await client.send(command);
|
|
44
|
+
* // {};
|
|
45
|
+
*
|
|
46
|
+
* ```
|
|
47
|
+
*
|
|
48
|
+
* @param DeleteBatchCommandInput - {@link DeleteBatchCommandInput}
|
|
49
|
+
* @returns {@link DeleteBatchCommandOutput}
|
|
50
|
+
* @see {@link DeleteBatchCommandInput} for command's `input` shape.
|
|
51
|
+
* @see {@link DeleteBatchCommandOutput} for command's `response` shape.
|
|
52
|
+
* @see {@link OmicsClientResolvedConfig | config} for OmicsClient's `config` shape.
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
55
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ConflictException} (client fault)
|
|
58
|
+
* <p>The request cannot be applied to the target resource in its current state.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link InternalServerException} (server fault)
|
|
61
|
+
* <p>An unexpected error occurred. Try the request again.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link RequestTimeoutException} (client fault)
|
|
64
|
+
* <p>The request timed out.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
67
|
+
* <p>The target resource was not found in the current Region.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
70
|
+
* <p>The request exceeds a service quota.</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
73
|
+
* <p>The request was denied due to request throttling.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link ValidationException} (client fault)
|
|
76
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link OmicsServiceException}
|
|
79
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
80
|
+
*
|
|
81
|
+
*
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
84
|
+
export declare class DeleteBatchCommand extends DeleteBatchCommand_base {
|
|
85
|
+
/** @internal type navigation helper, not in runtime. */
|
|
86
|
+
protected static __types: {
|
|
87
|
+
api: {
|
|
88
|
+
input: DeleteBatchRequest;
|
|
89
|
+
output: {};
|
|
90
|
+
};
|
|
91
|
+
sdk: {
|
|
92
|
+
input: DeleteBatchCommandInput;
|
|
93
|
+
output: DeleteBatchCommandOutput;
|
|
94
|
+
};
|
|
95
|
+
};
|
|
96
|
+
}
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { DeleteRunBatchRequest, DeleteRunBatchResponse } from "../models/models_0";
|
|
4
|
+
import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DeleteRunBatchCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DeleteRunBatchCommandInput extends DeleteRunBatchRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DeleteRunBatchCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteRunBatchCommandOutput extends DeleteRunBatchResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DeleteRunBatchCommand_base: {
|
|
25
|
+
new (input: DeleteRunBatchCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteRunBatchCommandInput, DeleteRunBatchCommandOutput, OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: DeleteRunBatchCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteRunBatchCommandInput, DeleteRunBatchCommandOutput, OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Deletes the individual workflow runs within a batch. This operation is separate from <code>DeleteBatch</code>, which removes the batch metadata.</p> <p>Delete is only allowed on batches in <code>PROCESSED</code> or <code>CANCELLED</code> state. Delete operations are non-atomic and may be partially successful. Use <code>GetBatch</code> to review <code>successfulDeleteSubmissionCount</code> and <code>failedDeleteSubmissionCount</code> in the <code>submissionSummary</code>. Only one cancel or delete operation per batch is allowed at a time.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { OmicsClient, DeleteRunBatchCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
35
|
+
* // const { OmicsClient, DeleteRunBatchCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
36
|
+
* // import type { OmicsClientConfig } from "@aws-sdk/client-omics";
|
|
37
|
+
* const config = {}; // type is OmicsClientConfig
|
|
38
|
+
* const client = new OmicsClient(config);
|
|
39
|
+
* const input = { // DeleteRunBatchRequest
|
|
40
|
+
* batchId: "STRING_VALUE", // required
|
|
41
|
+
* };
|
|
42
|
+
* const command = new DeleteRunBatchCommand(input);
|
|
43
|
+
* const response = await client.send(command);
|
|
44
|
+
* // {};
|
|
45
|
+
*
|
|
46
|
+
* ```
|
|
47
|
+
*
|
|
48
|
+
* @param DeleteRunBatchCommandInput - {@link DeleteRunBatchCommandInput}
|
|
49
|
+
* @returns {@link DeleteRunBatchCommandOutput}
|
|
50
|
+
* @see {@link DeleteRunBatchCommandInput} for command's `input` shape.
|
|
51
|
+
* @see {@link DeleteRunBatchCommandOutput} for command's `response` shape.
|
|
52
|
+
* @see {@link OmicsClientResolvedConfig | config} for OmicsClient's `config` shape.
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
55
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ConflictException} (client fault)
|
|
58
|
+
* <p>The request cannot be applied to the target resource in its current state.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link InternalServerException} (server fault)
|
|
61
|
+
* <p>An unexpected error occurred. Try the request again.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link RequestTimeoutException} (client fault)
|
|
64
|
+
* <p>The request timed out.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
67
|
+
* <p>The target resource was not found in the current Region.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
70
|
+
* <p>The request exceeds a service quota.</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
73
|
+
* <p>The request was denied due to request throttling.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link ValidationException} (client fault)
|
|
76
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link OmicsServiceException}
|
|
79
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
80
|
+
*
|
|
81
|
+
*
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
84
|
+
export declare class DeleteRunBatchCommand extends DeleteRunBatchCommand_base {
|
|
85
|
+
/** @internal type navigation helper, not in runtime. */
|
|
86
|
+
protected static __types: {
|
|
87
|
+
api: {
|
|
88
|
+
input: DeleteRunBatchRequest;
|
|
89
|
+
output: {};
|
|
90
|
+
};
|
|
91
|
+
sdk: {
|
|
92
|
+
input: DeleteRunBatchCommandInput;
|
|
93
|
+
output: DeleteRunBatchCommandOutput;
|
|
94
|
+
};
|
|
95
|
+
};
|
|
96
|
+
}
|
|
@@ -27,7 +27,7 @@ declare const DeleteVariantStoreCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <important> <p>Amazon Web Services HealthOmics variant stores and annotation stores
|
|
30
|
+
* <important> <p>Amazon Web Services HealthOmics variant stores and annotation stores are no longer open to new customers. Existing customers can continue to use the service as normal. For more information, see <a href="https://docs.aws.amazon.com/omics/latest/dev/variant-store-availability-change.html"> Amazon Web Services HealthOmics variant store and annotation store availability change</a>.</p> </important> <p>Deletes a variant store.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|