@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
package/dist-types/Omics.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ import { CreateAnnotationStoreCommandInput, CreateAnnotationStoreCommandOutput }
|
|
|
10
10
|
import { CreateAnnotationStoreVersionCommandInput, CreateAnnotationStoreVersionCommandOutput } from "./commands/CreateAnnotationStoreVersionCommand";
|
|
11
11
|
import { CreateMultipartReadSetUploadCommandInput, CreateMultipartReadSetUploadCommandOutput } from "./commands/CreateMultipartReadSetUploadCommand";
|
|
12
12
|
import { CreateReferenceStoreCommandInput, CreateReferenceStoreCommandOutput } from "./commands/CreateReferenceStoreCommand";
|
|
13
|
+
import { CreateRunCacheCommandInput, CreateRunCacheCommandOutput } from "./commands/CreateRunCacheCommand";
|
|
13
14
|
import { CreateRunGroupCommandInput, CreateRunGroupCommandOutput } from "./commands/CreateRunGroupCommand";
|
|
14
15
|
import { CreateSequenceStoreCommandInput, CreateSequenceStoreCommandOutput } from "./commands/CreateSequenceStoreCommand";
|
|
15
16
|
import { CreateShareCommandInput, CreateShareCommandOutput } from "./commands/CreateShareCommand";
|
|
@@ -19,8 +20,10 @@ import { DeleteAnnotationStoreCommandInput, DeleteAnnotationStoreCommandOutput }
|
|
|
19
20
|
import { DeleteAnnotationStoreVersionsCommandInput, DeleteAnnotationStoreVersionsCommandOutput } from "./commands/DeleteAnnotationStoreVersionsCommand";
|
|
20
21
|
import { DeleteReferenceCommandInput, DeleteReferenceCommandOutput } from "./commands/DeleteReferenceCommand";
|
|
21
22
|
import { DeleteReferenceStoreCommandInput, DeleteReferenceStoreCommandOutput } from "./commands/DeleteReferenceStoreCommand";
|
|
23
|
+
import { DeleteRunCacheCommandInput, DeleteRunCacheCommandOutput } from "./commands/DeleteRunCacheCommand";
|
|
22
24
|
import { DeleteRunCommandInput, DeleteRunCommandOutput } from "./commands/DeleteRunCommand";
|
|
23
25
|
import { DeleteRunGroupCommandInput, DeleteRunGroupCommandOutput } from "./commands/DeleteRunGroupCommand";
|
|
26
|
+
import { DeleteS3AccessPolicyCommandInput, DeleteS3AccessPolicyCommandOutput } from "./commands/DeleteS3AccessPolicyCommand";
|
|
24
27
|
import { DeleteSequenceStoreCommandInput, DeleteSequenceStoreCommandOutput } from "./commands/DeleteSequenceStoreCommand";
|
|
25
28
|
import { DeleteShareCommandInput, DeleteShareCommandOutput } from "./commands/DeleteShareCommand";
|
|
26
29
|
import { DeleteVariantStoreCommandInput, DeleteVariantStoreCommandOutput } from "./commands/DeleteVariantStoreCommand";
|
|
@@ -37,9 +40,11 @@ import { GetReferenceCommandInput, GetReferenceCommandOutput } from "./commands/
|
|
|
37
40
|
import { GetReferenceImportJobCommandInput, GetReferenceImportJobCommandOutput } from "./commands/GetReferenceImportJobCommand";
|
|
38
41
|
import { GetReferenceMetadataCommandInput, GetReferenceMetadataCommandOutput } from "./commands/GetReferenceMetadataCommand";
|
|
39
42
|
import { GetReferenceStoreCommandInput, GetReferenceStoreCommandOutput } from "./commands/GetReferenceStoreCommand";
|
|
43
|
+
import { GetRunCacheCommandInput, GetRunCacheCommandOutput } from "./commands/GetRunCacheCommand";
|
|
40
44
|
import { GetRunCommandInput, GetRunCommandOutput } from "./commands/GetRunCommand";
|
|
41
45
|
import { GetRunGroupCommandInput, GetRunGroupCommandOutput } from "./commands/GetRunGroupCommand";
|
|
42
46
|
import { GetRunTaskCommandInput, GetRunTaskCommandOutput } from "./commands/GetRunTaskCommand";
|
|
47
|
+
import { GetS3AccessPolicyCommandInput, GetS3AccessPolicyCommandOutput } from "./commands/GetS3AccessPolicyCommand";
|
|
43
48
|
import { GetSequenceStoreCommandInput, GetSequenceStoreCommandOutput } from "./commands/GetSequenceStoreCommand";
|
|
44
49
|
import { GetShareCommandInput, GetShareCommandOutput } from "./commands/GetShareCommand";
|
|
45
50
|
import { GetVariantImportJobCommandInput, GetVariantImportJobCommandOutput } from "./commands/GetVariantImportJobCommand";
|
|
@@ -57,6 +62,7 @@ import { ListReadSetUploadPartsCommandInput, ListReadSetUploadPartsCommandOutput
|
|
|
57
62
|
import { ListReferenceImportJobsCommandInput, ListReferenceImportJobsCommandOutput } from "./commands/ListReferenceImportJobsCommand";
|
|
58
63
|
import { ListReferencesCommandInput, ListReferencesCommandOutput } from "./commands/ListReferencesCommand";
|
|
59
64
|
import { ListReferenceStoresCommandInput, ListReferenceStoresCommandOutput } from "./commands/ListReferenceStoresCommand";
|
|
65
|
+
import { ListRunCachesCommandInput, ListRunCachesCommandOutput } from "./commands/ListRunCachesCommand";
|
|
60
66
|
import { ListRunGroupsCommandInput, ListRunGroupsCommandOutput } from "./commands/ListRunGroupsCommand";
|
|
61
67
|
import { ListRunsCommandInput, ListRunsCommandOutput } from "./commands/ListRunsCommand";
|
|
62
68
|
import { ListRunTasksCommandInput, ListRunTasksCommandOutput } from "./commands/ListRunTasksCommand";
|
|
@@ -66,6 +72,7 @@ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } fro
|
|
|
66
72
|
import { ListVariantImportJobsCommandInput, ListVariantImportJobsCommandOutput } from "./commands/ListVariantImportJobsCommand";
|
|
67
73
|
import { ListVariantStoresCommandInput, ListVariantStoresCommandOutput } from "./commands/ListVariantStoresCommand";
|
|
68
74
|
import { ListWorkflowsCommandInput, ListWorkflowsCommandOutput } from "./commands/ListWorkflowsCommand";
|
|
75
|
+
import { PutS3AccessPolicyCommandInput, PutS3AccessPolicyCommandOutput } from "./commands/PutS3AccessPolicyCommand";
|
|
69
76
|
import { StartAnnotationImportJobCommandInput, StartAnnotationImportJobCommandOutput } from "./commands/StartAnnotationImportJobCommand";
|
|
70
77
|
import { StartReadSetActivationJobCommandInput, StartReadSetActivationJobCommandOutput } from "./commands/StartReadSetActivationJobCommand";
|
|
71
78
|
import { StartReadSetExportJobCommandInput, StartReadSetExportJobCommandOutput } from "./commands/StartReadSetExportJobCommand";
|
|
@@ -77,7 +84,9 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/Ta
|
|
|
77
84
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
78
85
|
import { UpdateAnnotationStoreCommandInput, UpdateAnnotationStoreCommandOutput } from "./commands/UpdateAnnotationStoreCommand";
|
|
79
86
|
import { UpdateAnnotationStoreVersionCommandInput, UpdateAnnotationStoreVersionCommandOutput } from "./commands/UpdateAnnotationStoreVersionCommand";
|
|
87
|
+
import { UpdateRunCacheCommandInput, UpdateRunCacheCommandOutput } from "./commands/UpdateRunCacheCommand";
|
|
80
88
|
import { UpdateRunGroupCommandInput, UpdateRunGroupCommandOutput } from "./commands/UpdateRunGroupCommand";
|
|
89
|
+
import { UpdateSequenceStoreCommandInput, UpdateSequenceStoreCommandOutput } from "./commands/UpdateSequenceStoreCommand";
|
|
81
90
|
import { UpdateVariantStoreCommandInput, UpdateVariantStoreCommandOutput } from "./commands/UpdateVariantStoreCommand";
|
|
82
91
|
import { UpdateWorkflowCommandInput, UpdateWorkflowCommandOutput } from "./commands/UpdateWorkflowCommand";
|
|
83
92
|
import { UploadReadSetPartCommandInput, UploadReadSetPartCommandOutput } from "./commands/UploadReadSetPartCommand";
|
|
@@ -149,6 +158,12 @@ export interface Omics {
|
|
|
149
158
|
createReferenceStore(args: CreateReferenceStoreCommandInput, options?: __HttpHandlerOptions): Promise<CreateReferenceStoreCommandOutput>;
|
|
150
159
|
createReferenceStore(args: CreateReferenceStoreCommandInput, cb: (err: any, data?: CreateReferenceStoreCommandOutput) => void): void;
|
|
151
160
|
createReferenceStore(args: CreateReferenceStoreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateReferenceStoreCommandOutput) => void): void;
|
|
161
|
+
/**
|
|
162
|
+
* @see {@link CreateRunCacheCommand}
|
|
163
|
+
*/
|
|
164
|
+
createRunCache(args: CreateRunCacheCommandInput, options?: __HttpHandlerOptions): Promise<CreateRunCacheCommandOutput>;
|
|
165
|
+
createRunCache(args: CreateRunCacheCommandInput, cb: (err: any, data?: CreateRunCacheCommandOutput) => void): void;
|
|
166
|
+
createRunCache(args: CreateRunCacheCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRunCacheCommandOutput) => void): void;
|
|
152
167
|
/**
|
|
153
168
|
* @see {@link CreateRunGroupCommand}
|
|
154
169
|
*/
|
|
@@ -209,12 +224,24 @@ export interface Omics {
|
|
|
209
224
|
deleteRun(args: DeleteRunCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRunCommandOutput>;
|
|
210
225
|
deleteRun(args: DeleteRunCommandInput, cb: (err: any, data?: DeleteRunCommandOutput) => void): void;
|
|
211
226
|
deleteRun(args: DeleteRunCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRunCommandOutput) => void): void;
|
|
227
|
+
/**
|
|
228
|
+
* @see {@link DeleteRunCacheCommand}
|
|
229
|
+
*/
|
|
230
|
+
deleteRunCache(args: DeleteRunCacheCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRunCacheCommandOutput>;
|
|
231
|
+
deleteRunCache(args: DeleteRunCacheCommandInput, cb: (err: any, data?: DeleteRunCacheCommandOutput) => void): void;
|
|
232
|
+
deleteRunCache(args: DeleteRunCacheCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRunCacheCommandOutput) => void): void;
|
|
212
233
|
/**
|
|
213
234
|
* @see {@link DeleteRunGroupCommand}
|
|
214
235
|
*/
|
|
215
236
|
deleteRunGroup(args: DeleteRunGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRunGroupCommandOutput>;
|
|
216
237
|
deleteRunGroup(args: DeleteRunGroupCommandInput, cb: (err: any, data?: DeleteRunGroupCommandOutput) => void): void;
|
|
217
238
|
deleteRunGroup(args: DeleteRunGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRunGroupCommandOutput) => void): void;
|
|
239
|
+
/**
|
|
240
|
+
* @see {@link DeleteS3AccessPolicyCommand}
|
|
241
|
+
*/
|
|
242
|
+
deleteS3AccessPolicy(args: DeleteS3AccessPolicyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteS3AccessPolicyCommandOutput>;
|
|
243
|
+
deleteS3AccessPolicy(args: DeleteS3AccessPolicyCommandInput, cb: (err: any, data?: DeleteS3AccessPolicyCommandOutput) => void): void;
|
|
244
|
+
deleteS3AccessPolicy(args: DeleteS3AccessPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteS3AccessPolicyCommandOutput) => void): void;
|
|
218
245
|
/**
|
|
219
246
|
* @see {@link DeleteSequenceStoreCommand}
|
|
220
247
|
*/
|
|
@@ -317,6 +344,12 @@ export interface Omics {
|
|
|
317
344
|
getRun(args: GetRunCommandInput, options?: __HttpHandlerOptions): Promise<GetRunCommandOutput>;
|
|
318
345
|
getRun(args: GetRunCommandInput, cb: (err: any, data?: GetRunCommandOutput) => void): void;
|
|
319
346
|
getRun(args: GetRunCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRunCommandOutput) => void): void;
|
|
347
|
+
/**
|
|
348
|
+
* @see {@link GetRunCacheCommand}
|
|
349
|
+
*/
|
|
350
|
+
getRunCache(args: GetRunCacheCommandInput, options?: __HttpHandlerOptions): Promise<GetRunCacheCommandOutput>;
|
|
351
|
+
getRunCache(args: GetRunCacheCommandInput, cb: (err: any, data?: GetRunCacheCommandOutput) => void): void;
|
|
352
|
+
getRunCache(args: GetRunCacheCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRunCacheCommandOutput) => void): void;
|
|
320
353
|
/**
|
|
321
354
|
* @see {@link GetRunGroupCommand}
|
|
322
355
|
*/
|
|
@@ -329,6 +362,12 @@ export interface Omics {
|
|
|
329
362
|
getRunTask(args: GetRunTaskCommandInput, options?: __HttpHandlerOptions): Promise<GetRunTaskCommandOutput>;
|
|
330
363
|
getRunTask(args: GetRunTaskCommandInput, cb: (err: any, data?: GetRunTaskCommandOutput) => void): void;
|
|
331
364
|
getRunTask(args: GetRunTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRunTaskCommandOutput) => void): void;
|
|
365
|
+
/**
|
|
366
|
+
* @see {@link GetS3AccessPolicyCommand}
|
|
367
|
+
*/
|
|
368
|
+
getS3AccessPolicy(args: GetS3AccessPolicyCommandInput, options?: __HttpHandlerOptions): Promise<GetS3AccessPolicyCommandOutput>;
|
|
369
|
+
getS3AccessPolicy(args: GetS3AccessPolicyCommandInput, cb: (err: any, data?: GetS3AccessPolicyCommandOutput) => void): void;
|
|
370
|
+
getS3AccessPolicy(args: GetS3AccessPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetS3AccessPolicyCommandOutput) => void): void;
|
|
332
371
|
/**
|
|
333
372
|
* @see {@link GetSequenceStoreCommand}
|
|
334
373
|
*/
|
|
@@ -434,6 +473,13 @@ export interface Omics {
|
|
|
434
473
|
listReferenceStores(args: ListReferenceStoresCommandInput, options?: __HttpHandlerOptions): Promise<ListReferenceStoresCommandOutput>;
|
|
435
474
|
listReferenceStores(args: ListReferenceStoresCommandInput, cb: (err: any, data?: ListReferenceStoresCommandOutput) => void): void;
|
|
436
475
|
listReferenceStores(args: ListReferenceStoresCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListReferenceStoresCommandOutput) => void): void;
|
|
476
|
+
/**
|
|
477
|
+
* @see {@link ListRunCachesCommand}
|
|
478
|
+
*/
|
|
479
|
+
listRunCaches(): Promise<ListRunCachesCommandOutput>;
|
|
480
|
+
listRunCaches(args: ListRunCachesCommandInput, options?: __HttpHandlerOptions): Promise<ListRunCachesCommandOutput>;
|
|
481
|
+
listRunCaches(args: ListRunCachesCommandInput, cb: (err: any, data?: ListRunCachesCommandOutput) => void): void;
|
|
482
|
+
listRunCaches(args: ListRunCachesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRunCachesCommandOutput) => void): void;
|
|
437
483
|
/**
|
|
438
484
|
* @see {@link ListRunGroupsCommand}
|
|
439
485
|
*/
|
|
@@ -494,6 +540,12 @@ export interface Omics {
|
|
|
494
540
|
listWorkflows(args: ListWorkflowsCommandInput, options?: __HttpHandlerOptions): Promise<ListWorkflowsCommandOutput>;
|
|
495
541
|
listWorkflows(args: ListWorkflowsCommandInput, cb: (err: any, data?: ListWorkflowsCommandOutput) => void): void;
|
|
496
542
|
listWorkflows(args: ListWorkflowsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListWorkflowsCommandOutput) => void): void;
|
|
543
|
+
/**
|
|
544
|
+
* @see {@link PutS3AccessPolicyCommand}
|
|
545
|
+
*/
|
|
546
|
+
putS3AccessPolicy(args: PutS3AccessPolicyCommandInput, options?: __HttpHandlerOptions): Promise<PutS3AccessPolicyCommandOutput>;
|
|
547
|
+
putS3AccessPolicy(args: PutS3AccessPolicyCommandInput, cb: (err: any, data?: PutS3AccessPolicyCommandOutput) => void): void;
|
|
548
|
+
putS3AccessPolicy(args: PutS3AccessPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutS3AccessPolicyCommandOutput) => void): void;
|
|
497
549
|
/**
|
|
498
550
|
* @see {@link StartAnnotationImportJobCommand}
|
|
499
551
|
*/
|
|
@@ -560,12 +612,24 @@ export interface Omics {
|
|
|
560
612
|
updateAnnotationStoreVersion(args: UpdateAnnotationStoreVersionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAnnotationStoreVersionCommandOutput>;
|
|
561
613
|
updateAnnotationStoreVersion(args: UpdateAnnotationStoreVersionCommandInput, cb: (err: any, data?: UpdateAnnotationStoreVersionCommandOutput) => void): void;
|
|
562
614
|
updateAnnotationStoreVersion(args: UpdateAnnotationStoreVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAnnotationStoreVersionCommandOutput) => void): void;
|
|
615
|
+
/**
|
|
616
|
+
* @see {@link UpdateRunCacheCommand}
|
|
617
|
+
*/
|
|
618
|
+
updateRunCache(args: UpdateRunCacheCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRunCacheCommandOutput>;
|
|
619
|
+
updateRunCache(args: UpdateRunCacheCommandInput, cb: (err: any, data?: UpdateRunCacheCommandOutput) => void): void;
|
|
620
|
+
updateRunCache(args: UpdateRunCacheCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRunCacheCommandOutput) => void): void;
|
|
563
621
|
/**
|
|
564
622
|
* @see {@link UpdateRunGroupCommand}
|
|
565
623
|
*/
|
|
566
624
|
updateRunGroup(args: UpdateRunGroupCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRunGroupCommandOutput>;
|
|
567
625
|
updateRunGroup(args: UpdateRunGroupCommandInput, cb: (err: any, data?: UpdateRunGroupCommandOutput) => void): void;
|
|
568
626
|
updateRunGroup(args: UpdateRunGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRunGroupCommandOutput) => void): void;
|
|
627
|
+
/**
|
|
628
|
+
* @see {@link UpdateSequenceStoreCommand}
|
|
629
|
+
*/
|
|
630
|
+
updateSequenceStore(args: UpdateSequenceStoreCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSequenceStoreCommandOutput>;
|
|
631
|
+
updateSequenceStore(args: UpdateSequenceStoreCommandInput, cb: (err: any, data?: UpdateSequenceStoreCommandOutput) => void): void;
|
|
632
|
+
updateSequenceStore(args: UpdateSequenceStoreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSequenceStoreCommandOutput) => void): void;
|
|
569
633
|
/**
|
|
570
634
|
* @see {@link UpdateVariantStoreCommand}
|
|
571
635
|
*/
|
|
@@ -18,6 +18,7 @@ import { CreateAnnotationStoreCommandInput, CreateAnnotationStoreCommandOutput }
|
|
|
18
18
|
import { CreateAnnotationStoreVersionCommandInput, CreateAnnotationStoreVersionCommandOutput } from "./commands/CreateAnnotationStoreVersionCommand";
|
|
19
19
|
import { CreateMultipartReadSetUploadCommandInput, CreateMultipartReadSetUploadCommandOutput } from "./commands/CreateMultipartReadSetUploadCommand";
|
|
20
20
|
import { CreateReferenceStoreCommandInput, CreateReferenceStoreCommandOutput } from "./commands/CreateReferenceStoreCommand";
|
|
21
|
+
import { CreateRunCacheCommandInput, CreateRunCacheCommandOutput } from "./commands/CreateRunCacheCommand";
|
|
21
22
|
import { CreateRunGroupCommandInput, CreateRunGroupCommandOutput } from "./commands/CreateRunGroupCommand";
|
|
22
23
|
import { CreateSequenceStoreCommandInput, CreateSequenceStoreCommandOutput } from "./commands/CreateSequenceStoreCommand";
|
|
23
24
|
import { CreateShareCommandInput, CreateShareCommandOutput } from "./commands/CreateShareCommand";
|
|
@@ -27,8 +28,10 @@ import { DeleteAnnotationStoreCommandInput, DeleteAnnotationStoreCommandOutput }
|
|
|
27
28
|
import { DeleteAnnotationStoreVersionsCommandInput, DeleteAnnotationStoreVersionsCommandOutput } from "./commands/DeleteAnnotationStoreVersionsCommand";
|
|
28
29
|
import { DeleteReferenceCommandInput, DeleteReferenceCommandOutput } from "./commands/DeleteReferenceCommand";
|
|
29
30
|
import { DeleteReferenceStoreCommandInput, DeleteReferenceStoreCommandOutput } from "./commands/DeleteReferenceStoreCommand";
|
|
31
|
+
import { DeleteRunCacheCommandInput, DeleteRunCacheCommandOutput } from "./commands/DeleteRunCacheCommand";
|
|
30
32
|
import { DeleteRunCommandInput, DeleteRunCommandOutput } from "./commands/DeleteRunCommand";
|
|
31
33
|
import { DeleteRunGroupCommandInput, DeleteRunGroupCommandOutput } from "./commands/DeleteRunGroupCommand";
|
|
34
|
+
import { DeleteS3AccessPolicyCommandInput, DeleteS3AccessPolicyCommandOutput } from "./commands/DeleteS3AccessPolicyCommand";
|
|
32
35
|
import { DeleteSequenceStoreCommandInput, DeleteSequenceStoreCommandOutput } from "./commands/DeleteSequenceStoreCommand";
|
|
33
36
|
import { DeleteShareCommandInput, DeleteShareCommandOutput } from "./commands/DeleteShareCommand";
|
|
34
37
|
import { DeleteVariantStoreCommandInput, DeleteVariantStoreCommandOutput } from "./commands/DeleteVariantStoreCommand";
|
|
@@ -45,9 +48,11 @@ import { GetReferenceCommandInput, GetReferenceCommandOutput } from "./commands/
|
|
|
45
48
|
import { GetReferenceImportJobCommandInput, GetReferenceImportJobCommandOutput } from "./commands/GetReferenceImportJobCommand";
|
|
46
49
|
import { GetReferenceMetadataCommandInput, GetReferenceMetadataCommandOutput } from "./commands/GetReferenceMetadataCommand";
|
|
47
50
|
import { GetReferenceStoreCommandInput, GetReferenceStoreCommandOutput } from "./commands/GetReferenceStoreCommand";
|
|
51
|
+
import { GetRunCacheCommandInput, GetRunCacheCommandOutput } from "./commands/GetRunCacheCommand";
|
|
48
52
|
import { GetRunCommandInput, GetRunCommandOutput } from "./commands/GetRunCommand";
|
|
49
53
|
import { GetRunGroupCommandInput, GetRunGroupCommandOutput } from "./commands/GetRunGroupCommand";
|
|
50
54
|
import { GetRunTaskCommandInput, GetRunTaskCommandOutput } from "./commands/GetRunTaskCommand";
|
|
55
|
+
import { GetS3AccessPolicyCommandInput, GetS3AccessPolicyCommandOutput } from "./commands/GetS3AccessPolicyCommand";
|
|
51
56
|
import { GetSequenceStoreCommandInput, GetSequenceStoreCommandOutput } from "./commands/GetSequenceStoreCommand";
|
|
52
57
|
import { GetShareCommandInput, GetShareCommandOutput } from "./commands/GetShareCommand";
|
|
53
58
|
import { GetVariantImportJobCommandInput, GetVariantImportJobCommandOutput } from "./commands/GetVariantImportJobCommand";
|
|
@@ -65,6 +70,7 @@ import { ListReadSetUploadPartsCommandInput, ListReadSetUploadPartsCommandOutput
|
|
|
65
70
|
import { ListReferenceImportJobsCommandInput, ListReferenceImportJobsCommandOutput } from "./commands/ListReferenceImportJobsCommand";
|
|
66
71
|
import { ListReferencesCommandInput, ListReferencesCommandOutput } from "./commands/ListReferencesCommand";
|
|
67
72
|
import { ListReferenceStoresCommandInput, ListReferenceStoresCommandOutput } from "./commands/ListReferenceStoresCommand";
|
|
73
|
+
import { ListRunCachesCommandInput, ListRunCachesCommandOutput } from "./commands/ListRunCachesCommand";
|
|
68
74
|
import { ListRunGroupsCommandInput, ListRunGroupsCommandOutput } from "./commands/ListRunGroupsCommand";
|
|
69
75
|
import { ListRunsCommandInput, ListRunsCommandOutput } from "./commands/ListRunsCommand";
|
|
70
76
|
import { ListRunTasksCommandInput, ListRunTasksCommandOutput } from "./commands/ListRunTasksCommand";
|
|
@@ -74,6 +80,7 @@ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } fro
|
|
|
74
80
|
import { ListVariantImportJobsCommandInput, ListVariantImportJobsCommandOutput } from "./commands/ListVariantImportJobsCommand";
|
|
75
81
|
import { ListVariantStoresCommandInput, ListVariantStoresCommandOutput } from "./commands/ListVariantStoresCommand";
|
|
76
82
|
import { ListWorkflowsCommandInput, ListWorkflowsCommandOutput } from "./commands/ListWorkflowsCommand";
|
|
83
|
+
import { PutS3AccessPolicyCommandInput, PutS3AccessPolicyCommandOutput } from "./commands/PutS3AccessPolicyCommand";
|
|
77
84
|
import { StartAnnotationImportJobCommandInput, StartAnnotationImportJobCommandOutput } from "./commands/StartAnnotationImportJobCommand";
|
|
78
85
|
import { StartReadSetActivationJobCommandInput, StartReadSetActivationJobCommandOutput } from "./commands/StartReadSetActivationJobCommand";
|
|
79
86
|
import { StartReadSetExportJobCommandInput, StartReadSetExportJobCommandOutput } from "./commands/StartReadSetExportJobCommand";
|
|
@@ -85,7 +92,9 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/Ta
|
|
|
85
92
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
86
93
|
import { UpdateAnnotationStoreCommandInput, UpdateAnnotationStoreCommandOutput } from "./commands/UpdateAnnotationStoreCommand";
|
|
87
94
|
import { UpdateAnnotationStoreVersionCommandInput, UpdateAnnotationStoreVersionCommandOutput } from "./commands/UpdateAnnotationStoreVersionCommand";
|
|
95
|
+
import { UpdateRunCacheCommandInput, UpdateRunCacheCommandOutput } from "./commands/UpdateRunCacheCommand";
|
|
88
96
|
import { UpdateRunGroupCommandInput, UpdateRunGroupCommandOutput } from "./commands/UpdateRunGroupCommand";
|
|
97
|
+
import { UpdateSequenceStoreCommandInput, UpdateSequenceStoreCommandOutput } from "./commands/UpdateSequenceStoreCommand";
|
|
89
98
|
import { UpdateVariantStoreCommandInput, UpdateVariantStoreCommandOutput } from "./commands/UpdateVariantStoreCommand";
|
|
90
99
|
import { UpdateWorkflowCommandInput, UpdateWorkflowCommandOutput } from "./commands/UpdateWorkflowCommand";
|
|
91
100
|
import { UploadReadSetPartCommandInput, UploadReadSetPartCommandOutput } from "./commands/UploadReadSetPartCommand";
|
|
@@ -95,11 +104,11 @@ export { __Client };
|
|
|
95
104
|
/**
|
|
96
105
|
* @public
|
|
97
106
|
*/
|
|
98
|
-
export type ServiceInputTypes = AbortMultipartReadSetUploadCommandInput | AcceptShareCommandInput | BatchDeleteReadSetCommandInput | CancelAnnotationImportJobCommandInput | CancelRunCommandInput | CancelVariantImportJobCommandInput | CompleteMultipartReadSetUploadCommandInput | CreateAnnotationStoreCommandInput | CreateAnnotationStoreVersionCommandInput | CreateMultipartReadSetUploadCommandInput | CreateReferenceStoreCommandInput | CreateRunGroupCommandInput | CreateSequenceStoreCommandInput | CreateShareCommandInput | CreateVariantStoreCommandInput | CreateWorkflowCommandInput | DeleteAnnotationStoreCommandInput | DeleteAnnotationStoreVersionsCommandInput | DeleteReferenceCommandInput | DeleteReferenceStoreCommandInput | DeleteRunCommandInput | DeleteRunGroupCommandInput | DeleteSequenceStoreCommandInput | DeleteShareCommandInput | DeleteVariantStoreCommandInput | DeleteWorkflowCommandInput | GetAnnotationImportJobCommandInput | GetAnnotationStoreCommandInput | GetAnnotationStoreVersionCommandInput | GetReadSetActivationJobCommandInput | GetReadSetCommandInput | GetReadSetExportJobCommandInput | GetReadSetImportJobCommandInput | GetReadSetMetadataCommandInput | GetReferenceCommandInput | GetReferenceImportJobCommandInput | GetReferenceMetadataCommandInput | GetReferenceStoreCommandInput | GetRunCommandInput | GetRunGroupCommandInput | GetRunTaskCommandInput | GetSequenceStoreCommandInput | GetShareCommandInput | GetVariantImportJobCommandInput | GetVariantStoreCommandInput | GetWorkflowCommandInput | ListAnnotationImportJobsCommandInput | ListAnnotationStoreVersionsCommandInput | ListAnnotationStoresCommandInput | ListMultipartReadSetUploadsCommandInput | ListReadSetActivationJobsCommandInput | ListReadSetExportJobsCommandInput | ListReadSetImportJobsCommandInput | ListReadSetUploadPartsCommandInput | ListReadSetsCommandInput | ListReferenceImportJobsCommandInput | ListReferenceStoresCommandInput | ListReferencesCommandInput | ListRunGroupsCommandInput | ListRunTasksCommandInput | ListRunsCommandInput | ListSequenceStoresCommandInput | ListSharesCommandInput | ListTagsForResourceCommandInput | ListVariantImportJobsCommandInput | ListVariantStoresCommandInput | ListWorkflowsCommandInput | StartAnnotationImportJobCommandInput | StartReadSetActivationJobCommandInput | StartReadSetExportJobCommandInput | StartReadSetImportJobCommandInput | StartReferenceImportJobCommandInput | StartRunCommandInput | StartVariantImportJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAnnotationStoreCommandInput | UpdateAnnotationStoreVersionCommandInput | UpdateRunGroupCommandInput | UpdateVariantStoreCommandInput | UpdateWorkflowCommandInput | UploadReadSetPartCommandInput;
|
|
107
|
+
export type ServiceInputTypes = AbortMultipartReadSetUploadCommandInput | AcceptShareCommandInput | BatchDeleteReadSetCommandInput | CancelAnnotationImportJobCommandInput | CancelRunCommandInput | CancelVariantImportJobCommandInput | CompleteMultipartReadSetUploadCommandInput | CreateAnnotationStoreCommandInput | CreateAnnotationStoreVersionCommandInput | CreateMultipartReadSetUploadCommandInput | CreateReferenceStoreCommandInput | CreateRunCacheCommandInput | CreateRunGroupCommandInput | CreateSequenceStoreCommandInput | CreateShareCommandInput | CreateVariantStoreCommandInput | CreateWorkflowCommandInput | DeleteAnnotationStoreCommandInput | DeleteAnnotationStoreVersionsCommandInput | DeleteReferenceCommandInput | DeleteReferenceStoreCommandInput | DeleteRunCacheCommandInput | DeleteRunCommandInput | DeleteRunGroupCommandInput | DeleteS3AccessPolicyCommandInput | DeleteSequenceStoreCommandInput | DeleteShareCommandInput | DeleteVariantStoreCommandInput | DeleteWorkflowCommandInput | GetAnnotationImportJobCommandInput | GetAnnotationStoreCommandInput | GetAnnotationStoreVersionCommandInput | GetReadSetActivationJobCommandInput | GetReadSetCommandInput | GetReadSetExportJobCommandInput | GetReadSetImportJobCommandInput | GetReadSetMetadataCommandInput | GetReferenceCommandInput | GetReferenceImportJobCommandInput | GetReferenceMetadataCommandInput | GetReferenceStoreCommandInput | GetRunCacheCommandInput | GetRunCommandInput | GetRunGroupCommandInput | GetRunTaskCommandInput | GetS3AccessPolicyCommandInput | GetSequenceStoreCommandInput | GetShareCommandInput | GetVariantImportJobCommandInput | GetVariantStoreCommandInput | GetWorkflowCommandInput | ListAnnotationImportJobsCommandInput | ListAnnotationStoreVersionsCommandInput | ListAnnotationStoresCommandInput | ListMultipartReadSetUploadsCommandInput | ListReadSetActivationJobsCommandInput | ListReadSetExportJobsCommandInput | ListReadSetImportJobsCommandInput | ListReadSetUploadPartsCommandInput | ListReadSetsCommandInput | ListReferenceImportJobsCommandInput | ListReferenceStoresCommandInput | ListReferencesCommandInput | ListRunCachesCommandInput | ListRunGroupsCommandInput | ListRunTasksCommandInput | ListRunsCommandInput | ListSequenceStoresCommandInput | ListSharesCommandInput | ListTagsForResourceCommandInput | ListVariantImportJobsCommandInput | ListVariantStoresCommandInput | ListWorkflowsCommandInput | PutS3AccessPolicyCommandInput | StartAnnotationImportJobCommandInput | StartReadSetActivationJobCommandInput | StartReadSetExportJobCommandInput | StartReadSetImportJobCommandInput | StartReferenceImportJobCommandInput | StartRunCommandInput | StartVariantImportJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAnnotationStoreCommandInput | UpdateAnnotationStoreVersionCommandInput | UpdateRunCacheCommandInput | UpdateRunGroupCommandInput | UpdateSequenceStoreCommandInput | UpdateVariantStoreCommandInput | UpdateWorkflowCommandInput | UploadReadSetPartCommandInput;
|
|
99
108
|
/**
|
|
100
109
|
* @public
|
|
101
110
|
*/
|
|
102
|
-
export type ServiceOutputTypes = AbortMultipartReadSetUploadCommandOutput | AcceptShareCommandOutput | BatchDeleteReadSetCommandOutput | CancelAnnotationImportJobCommandOutput | CancelRunCommandOutput | CancelVariantImportJobCommandOutput | CompleteMultipartReadSetUploadCommandOutput | CreateAnnotationStoreCommandOutput | CreateAnnotationStoreVersionCommandOutput | CreateMultipartReadSetUploadCommandOutput | CreateReferenceStoreCommandOutput | CreateRunGroupCommandOutput | CreateSequenceStoreCommandOutput | CreateShareCommandOutput | CreateVariantStoreCommandOutput | CreateWorkflowCommandOutput | DeleteAnnotationStoreCommandOutput | DeleteAnnotationStoreVersionsCommandOutput | DeleteReferenceCommandOutput | DeleteReferenceStoreCommandOutput | DeleteRunCommandOutput | DeleteRunGroupCommandOutput | DeleteSequenceStoreCommandOutput | DeleteShareCommandOutput | DeleteVariantStoreCommandOutput | DeleteWorkflowCommandOutput | GetAnnotationImportJobCommandOutput | GetAnnotationStoreCommandOutput | GetAnnotationStoreVersionCommandOutput | GetReadSetActivationJobCommandOutput | GetReadSetCommandOutput | GetReadSetExportJobCommandOutput | GetReadSetImportJobCommandOutput | GetReadSetMetadataCommandOutput | GetReferenceCommandOutput | GetReferenceImportJobCommandOutput | GetReferenceMetadataCommandOutput | GetReferenceStoreCommandOutput | GetRunCommandOutput | GetRunGroupCommandOutput | GetRunTaskCommandOutput | GetSequenceStoreCommandOutput | GetShareCommandOutput | GetVariantImportJobCommandOutput | GetVariantStoreCommandOutput | GetWorkflowCommandOutput | ListAnnotationImportJobsCommandOutput | ListAnnotationStoreVersionsCommandOutput | ListAnnotationStoresCommandOutput | ListMultipartReadSetUploadsCommandOutput | ListReadSetActivationJobsCommandOutput | ListReadSetExportJobsCommandOutput | ListReadSetImportJobsCommandOutput | ListReadSetUploadPartsCommandOutput | ListReadSetsCommandOutput | ListReferenceImportJobsCommandOutput | ListReferenceStoresCommandOutput | ListReferencesCommandOutput | ListRunGroupsCommandOutput | ListRunTasksCommandOutput | ListRunsCommandOutput | ListSequenceStoresCommandOutput | ListSharesCommandOutput | ListTagsForResourceCommandOutput | ListVariantImportJobsCommandOutput | ListVariantStoresCommandOutput | ListWorkflowsCommandOutput | StartAnnotationImportJobCommandOutput | StartReadSetActivationJobCommandOutput | StartReadSetExportJobCommandOutput | StartReadSetImportJobCommandOutput | StartReferenceImportJobCommandOutput | StartRunCommandOutput | StartVariantImportJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAnnotationStoreCommandOutput | UpdateAnnotationStoreVersionCommandOutput | UpdateRunGroupCommandOutput | UpdateVariantStoreCommandOutput | UpdateWorkflowCommandOutput | UploadReadSetPartCommandOutput;
|
|
111
|
+
export type ServiceOutputTypes = AbortMultipartReadSetUploadCommandOutput | AcceptShareCommandOutput | BatchDeleteReadSetCommandOutput | CancelAnnotationImportJobCommandOutput | CancelRunCommandOutput | CancelVariantImportJobCommandOutput | CompleteMultipartReadSetUploadCommandOutput | CreateAnnotationStoreCommandOutput | CreateAnnotationStoreVersionCommandOutput | CreateMultipartReadSetUploadCommandOutput | CreateReferenceStoreCommandOutput | CreateRunCacheCommandOutput | CreateRunGroupCommandOutput | CreateSequenceStoreCommandOutput | CreateShareCommandOutput | CreateVariantStoreCommandOutput | CreateWorkflowCommandOutput | DeleteAnnotationStoreCommandOutput | DeleteAnnotationStoreVersionsCommandOutput | DeleteReferenceCommandOutput | DeleteReferenceStoreCommandOutput | DeleteRunCacheCommandOutput | DeleteRunCommandOutput | DeleteRunGroupCommandOutput | DeleteS3AccessPolicyCommandOutput | DeleteSequenceStoreCommandOutput | DeleteShareCommandOutput | DeleteVariantStoreCommandOutput | DeleteWorkflowCommandOutput | GetAnnotationImportJobCommandOutput | GetAnnotationStoreCommandOutput | GetAnnotationStoreVersionCommandOutput | GetReadSetActivationJobCommandOutput | GetReadSetCommandOutput | GetReadSetExportJobCommandOutput | GetReadSetImportJobCommandOutput | GetReadSetMetadataCommandOutput | GetReferenceCommandOutput | GetReferenceImportJobCommandOutput | GetReferenceMetadataCommandOutput | GetReferenceStoreCommandOutput | GetRunCacheCommandOutput | GetRunCommandOutput | GetRunGroupCommandOutput | GetRunTaskCommandOutput | GetS3AccessPolicyCommandOutput | GetSequenceStoreCommandOutput | GetShareCommandOutput | GetVariantImportJobCommandOutput | GetVariantStoreCommandOutput | GetWorkflowCommandOutput | ListAnnotationImportJobsCommandOutput | ListAnnotationStoreVersionsCommandOutput | ListAnnotationStoresCommandOutput | ListMultipartReadSetUploadsCommandOutput | ListReadSetActivationJobsCommandOutput | ListReadSetExportJobsCommandOutput | ListReadSetImportJobsCommandOutput | ListReadSetUploadPartsCommandOutput | ListReadSetsCommandOutput | ListReferenceImportJobsCommandOutput | ListReferenceStoresCommandOutput | ListReferencesCommandOutput | ListRunCachesCommandOutput | ListRunGroupsCommandOutput | ListRunTasksCommandOutput | ListRunsCommandOutput | ListSequenceStoresCommandOutput | ListSharesCommandOutput | ListTagsForResourceCommandOutput | ListVariantImportJobsCommandOutput | ListVariantStoresCommandOutput | ListWorkflowsCommandOutput | PutS3AccessPolicyCommandOutput | StartAnnotationImportJobCommandOutput | StartReadSetActivationJobCommandOutput | StartReadSetExportJobCommandOutput | StartReadSetImportJobCommandOutput | StartReferenceImportJobCommandOutput | StartRunCommandOutput | StartVariantImportJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAnnotationStoreCommandOutput | UpdateAnnotationStoreVersionCommandOutput | UpdateRunCacheCommandOutput | UpdateRunGroupCommandOutput | UpdateSequenceStoreCommandOutput | UpdateVariantStoreCommandOutput | UpdateWorkflowCommandOutput | UploadReadSetPartCommandOutput;
|
|
103
112
|
/**
|
|
104
113
|
* @public
|
|
105
114
|
*/
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { CreateRunCacheRequest, CreateRunCacheResponse } from "../models/models_0";
|
|
4
|
+
import { 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 CreateRunCacheCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface CreateRunCacheCommandInput extends CreateRunCacheRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link CreateRunCacheCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateRunCacheCommandOutput extends CreateRunCacheResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const CreateRunCacheCommand_base: {
|
|
25
|
+
new (input: CreateRunCacheCommandInput): import("@smithy/smithy-client").CommandImpl<CreateRunCacheCommandInput, CreateRunCacheCommandOutput, OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: CreateRunCacheCommandInput): import("@smithy/smithy-client").CommandImpl<CreateRunCacheCommandInput, CreateRunCacheCommandOutput, OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>You can create a run cache to save the task outputs from completed tasks in a run for a private workflow.
|
|
31
|
+
* Subsequent runs use the task outputs from the cache, rather than computing the task outputs again.
|
|
32
|
+
* You specify an Amazon S3 location where HealthOmics saves the cached data. This data must be
|
|
33
|
+
* immediately accessible (not in an archived state).</p>
|
|
34
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/omics/latest/dev/workflow-cache-create.html">Creating a run cache</a> in the AWS HealthOmics User Guide.</p>
|
|
35
|
+
* @example
|
|
36
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
37
|
+
* ```javascript
|
|
38
|
+
* import { OmicsClient, CreateRunCacheCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
39
|
+
* // const { OmicsClient, CreateRunCacheCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
40
|
+
* const client = new OmicsClient(config);
|
|
41
|
+
* const input = { // CreateRunCacheRequest
|
|
42
|
+
* cacheBehavior: "STRING_VALUE",
|
|
43
|
+
* cacheS3Location: "STRING_VALUE", // required
|
|
44
|
+
* description: "STRING_VALUE",
|
|
45
|
+
* name: "STRING_VALUE",
|
|
46
|
+
* requestId: "STRING_VALUE", // required
|
|
47
|
+
* tags: { // TagMap
|
|
48
|
+
* "<keys>": "STRING_VALUE",
|
|
49
|
+
* },
|
|
50
|
+
* cacheBucketOwnerId: "STRING_VALUE",
|
|
51
|
+
* };
|
|
52
|
+
* const command = new CreateRunCacheCommand(input);
|
|
53
|
+
* const response = await client.send(command);
|
|
54
|
+
* // { // CreateRunCacheResponse
|
|
55
|
+
* // arn: "STRING_VALUE",
|
|
56
|
+
* // id: "STRING_VALUE",
|
|
57
|
+
* // status: "STRING_VALUE",
|
|
58
|
+
* // tags: { // TagMap
|
|
59
|
+
* // "<keys>": "STRING_VALUE",
|
|
60
|
+
* // },
|
|
61
|
+
* // };
|
|
62
|
+
*
|
|
63
|
+
* ```
|
|
64
|
+
*
|
|
65
|
+
* @param CreateRunCacheCommandInput - {@link CreateRunCacheCommandInput}
|
|
66
|
+
* @returns {@link CreateRunCacheCommandOutput}
|
|
67
|
+
* @see {@link CreateRunCacheCommandInput} for command's `input` shape.
|
|
68
|
+
* @see {@link CreateRunCacheCommandOutput} for command's `response` shape.
|
|
69
|
+
* @see {@link OmicsClientResolvedConfig | config} for OmicsClient's `config` shape.
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
72
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link ConflictException} (client fault)
|
|
75
|
+
* <p>The request cannot be applied to the target resource in its current state.</p>
|
|
76
|
+
*
|
|
77
|
+
* @throws {@link InternalServerException} (server fault)
|
|
78
|
+
* <p>An unexpected error occurred. Try the request again.</p>
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link RequestTimeoutException} (client fault)
|
|
81
|
+
* <p>The request timed out.</p>
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
84
|
+
* <p>The target resource was not found in the current Region.</p>
|
|
85
|
+
*
|
|
86
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
87
|
+
* <p>The request exceeds a service quota.</p>
|
|
88
|
+
*
|
|
89
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
90
|
+
* <p>The request was denied due to request throttling.</p>
|
|
91
|
+
*
|
|
92
|
+
* @throws {@link ValidationException} (client fault)
|
|
93
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
94
|
+
*
|
|
95
|
+
* @throws {@link OmicsServiceException}
|
|
96
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
97
|
+
*
|
|
98
|
+
* @public
|
|
99
|
+
*/
|
|
100
|
+
export declare class CreateRunCacheCommand extends CreateRunCacheCommand_base {
|
|
101
|
+
/** @internal type navigation helper, not in runtime. */
|
|
102
|
+
protected static __types: {
|
|
103
|
+
api: {
|
|
104
|
+
input: CreateRunCacheRequest;
|
|
105
|
+
output: CreateRunCacheResponse;
|
|
106
|
+
};
|
|
107
|
+
sdk: {
|
|
108
|
+
input: CreateRunCacheCommandInput;
|
|
109
|
+
output: CreateRunCacheCommandOutput;
|
|
110
|
+
};
|
|
111
|
+
};
|
|
112
|
+
}
|
|
@@ -47,6 +47,12 @@ declare const CreateSequenceStoreCommand_base: {
|
|
|
47
47
|
* clientToken: "STRING_VALUE",
|
|
48
48
|
* fallbackLocation: "STRING_VALUE",
|
|
49
49
|
* eTagAlgorithmFamily: "STRING_VALUE",
|
|
50
|
+
* propagatedSetLevelTags: [ // PropagatedSetLevelTags
|
|
51
|
+
* "STRING_VALUE",
|
|
52
|
+
* ],
|
|
53
|
+
* s3AccessConfig: { // S3AccessConfig
|
|
54
|
+
* accessLogLocation: "STRING_VALUE",
|
|
55
|
+
* },
|
|
50
56
|
* };
|
|
51
57
|
* const command = new CreateSequenceStoreCommand(input);
|
|
52
58
|
* const response = await client.send(command);
|
|
@@ -62,6 +68,16 @@ declare const CreateSequenceStoreCommand_base: {
|
|
|
62
68
|
* // creationTime: new Date("TIMESTAMP"), // required
|
|
63
69
|
* // fallbackLocation: "STRING_VALUE",
|
|
64
70
|
* // eTagAlgorithmFamily: "STRING_VALUE",
|
|
71
|
+
* // status: "STRING_VALUE",
|
|
72
|
+
* // statusMessage: "STRING_VALUE",
|
|
73
|
+
* // propagatedSetLevelTags: [ // PropagatedSetLevelTags
|
|
74
|
+
* // "STRING_VALUE",
|
|
75
|
+
* // ],
|
|
76
|
+
* // s3Access: { // SequenceStoreS3Access
|
|
77
|
+
* // s3Uri: "STRING_VALUE",
|
|
78
|
+
* // s3AccessPointArn: "STRING_VALUE",
|
|
79
|
+
* // accessLogLocation: "STRING_VALUE",
|
|
80
|
+
* // },
|
|
65
81
|
* // };
|
|
66
82
|
*
|
|
67
83
|
* ```
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DeleteRunCacheRequest } from "../models/models_0";
|
|
4
|
+
import { 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 DeleteRunCacheCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DeleteRunCacheCommandInput extends DeleteRunCacheRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DeleteRunCacheCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteRunCacheCommandOutput extends __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DeleteRunCacheCommand_base: {
|
|
25
|
+
new (input: DeleteRunCacheCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteRunCacheCommandInput, DeleteRunCacheCommandOutput, OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: DeleteRunCacheCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteRunCacheCommandInput, DeleteRunCacheCommandOutput, OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Delete a run cache. This action removes the cache metadata stored in the service account,
|
|
31
|
+
* but doesn't delete the data in Amazon S3.
|
|
32
|
+
* You can access the cache data in Amazon S3, for inspection or to troubleshoot issues.
|
|
33
|
+
* You can remove old cache data using standard S3 <code>Delete</code> operations.
|
|
34
|
+
* </p>
|
|
35
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/omics/latest/dev/workflow-cache-delete.html">Deleting a run cache</a> in the AWS HealthOmics User Guide.</p>
|
|
36
|
+
* @example
|
|
37
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
38
|
+
* ```javascript
|
|
39
|
+
* import { OmicsClient, DeleteRunCacheCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
40
|
+
* // const { OmicsClient, DeleteRunCacheCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
41
|
+
* const client = new OmicsClient(config);
|
|
42
|
+
* const input = { // DeleteRunCacheRequest
|
|
43
|
+
* id: "STRING_VALUE", // required
|
|
44
|
+
* };
|
|
45
|
+
* const command = new DeleteRunCacheCommand(input);
|
|
46
|
+
* const response = await client.send(command);
|
|
47
|
+
* // {};
|
|
48
|
+
*
|
|
49
|
+
* ```
|
|
50
|
+
*
|
|
51
|
+
* @param DeleteRunCacheCommandInput - {@link DeleteRunCacheCommandInput}
|
|
52
|
+
* @returns {@link DeleteRunCacheCommandOutput}
|
|
53
|
+
* @see {@link DeleteRunCacheCommandInput} for command's `input` shape.
|
|
54
|
+
* @see {@link DeleteRunCacheCommandOutput} for command's `response` shape.
|
|
55
|
+
* @see {@link OmicsClientResolvedConfig | config} for OmicsClient's `config` shape.
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
58
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link ConflictException} (client fault)
|
|
61
|
+
* <p>The request cannot be applied to the target resource in its current state.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link InternalServerException} (server fault)
|
|
64
|
+
* <p>An unexpected error occurred. Try the request again.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link RequestTimeoutException} (client fault)
|
|
67
|
+
* <p>The request timed out.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
70
|
+
* <p>The target resource was not found in the current Region.</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
73
|
+
* <p>The request exceeds a service quota.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
76
|
+
* <p>The request was denied due to request throttling.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link ValidationException} (client fault)
|
|
79
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
80
|
+
*
|
|
81
|
+
* @throws {@link OmicsServiceException}
|
|
82
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
83
|
+
*
|
|
84
|
+
* @public
|
|
85
|
+
*/
|
|
86
|
+
export declare class DeleteRunCacheCommand extends DeleteRunCacheCommand_base {
|
|
87
|
+
/** @internal type navigation helper, not in runtime. */
|
|
88
|
+
protected static __types: {
|
|
89
|
+
api: {
|
|
90
|
+
input: DeleteRunCacheRequest;
|
|
91
|
+
output: {};
|
|
92
|
+
};
|
|
93
|
+
sdk: {
|
|
94
|
+
input: DeleteRunCacheCommandInput;
|
|
95
|
+
output: DeleteRunCacheCommandOutput;
|
|
96
|
+
};
|
|
97
|
+
};
|
|
98
|
+
}
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DeleteS3AccessPolicyRequest, DeleteS3AccessPolicyResponse } from "../models/models_0";
|
|
4
|
+
import { 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 DeleteS3AccessPolicyCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DeleteS3AccessPolicyCommandInput extends DeleteS3AccessPolicyRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DeleteS3AccessPolicyCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteS3AccessPolicyCommandOutput extends DeleteS3AccessPolicyResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DeleteS3AccessPolicyCommand_base: {
|
|
25
|
+
new (input: DeleteS3AccessPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteS3AccessPolicyCommandInput, DeleteS3AccessPolicyCommandOutput, OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: DeleteS3AccessPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteS3AccessPolicyCommandInput, DeleteS3AccessPolicyCommandOutput, OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Deletes an access policy for the specified store.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { OmicsClient, DeleteS3AccessPolicyCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
35
|
+
* // const { OmicsClient, DeleteS3AccessPolicyCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
36
|
+
* const client = new OmicsClient(config);
|
|
37
|
+
* const input = { // DeleteS3AccessPolicyRequest
|
|
38
|
+
* s3AccessPointArn: "STRING_VALUE", // required
|
|
39
|
+
* };
|
|
40
|
+
* const command = new DeleteS3AccessPolicyCommand(input);
|
|
41
|
+
* const response = await client.send(command);
|
|
42
|
+
* // {};
|
|
43
|
+
*
|
|
44
|
+
* ```
|
|
45
|
+
*
|
|
46
|
+
* @param DeleteS3AccessPolicyCommandInput - {@link DeleteS3AccessPolicyCommandInput}
|
|
47
|
+
* @returns {@link DeleteS3AccessPolicyCommandOutput}
|
|
48
|
+
* @see {@link DeleteS3AccessPolicyCommandInput} for command's `input` shape.
|
|
49
|
+
* @see {@link DeleteS3AccessPolicyCommandOutput} for command's `response` shape.
|
|
50
|
+
* @see {@link OmicsClientResolvedConfig | config} for OmicsClient's `config` shape.
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
53
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link InternalServerException} (server fault)
|
|
56
|
+
* <p>An unexpected error occurred. Try the request again.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link NotSupportedOperationException} (client fault)
|
|
59
|
+
* <p>
|
|
60
|
+
* The operation is not supported by Amazon Omics, or the API does not exist.
|
|
61
|
+
* </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 ThrottlingException} (client fault)
|
|
70
|
+
* <p>The request was denied due to request throttling.</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link ValidationException} (client fault)
|
|
73
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link OmicsServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
77
|
+
*
|
|
78
|
+
* @public
|
|
79
|
+
*/
|
|
80
|
+
export declare class DeleteS3AccessPolicyCommand extends DeleteS3AccessPolicyCommand_base {
|
|
81
|
+
/** @internal type navigation helper, not in runtime. */
|
|
82
|
+
protected static __types: {
|
|
83
|
+
api: {
|
|
84
|
+
input: DeleteS3AccessPolicyRequest;
|
|
85
|
+
output: {};
|
|
86
|
+
};
|
|
87
|
+
sdk: {
|
|
88
|
+
input: DeleteS3AccessPolicyCommandInput;
|
|
89
|
+
output: DeleteS3AccessPolicyCommandOutput;
|
|
90
|
+
};
|
|
91
|
+
};
|
|
92
|
+
}
|