@aws-sdk/client-omics 3.693.0 → 3.697.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 +40 -0
- package/dist-cjs/index.js +314 -0
- package/dist-es/Omics.js +10 -0
- package/dist-es/commands/CreateRunCacheCommand.js +22 -0
- package/dist-es/commands/DeleteRunCacheCommand.js +22 -0
- package/dist-es/commands/GetRunCacheCommand.js +22 -0
- package/dist-es/commands/ListRunCachesCommand.js +22 -0
- package/dist-es/commands/UpdateRunCacheCommand.js +22 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +9 -0
- package/dist-es/pagination/ListRunCachesPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +208 -0
- package/dist-types/Omics.d.ts +36 -0
- package/dist-types/OmicsClient.d.ts +7 -2
- package/dist-types/commands/CreateRunCacheCommand.d.ts +112 -0
- package/dist-types/commands/DeleteRunCacheCommand.d.ts +98 -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/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/StartRunCommand.d.ts +6 -3
- package/dist-types/commands/UpdateRunCacheCommand.d.ts +96 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +333 -2
- 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 +45 -0
- package/dist-types/ts3.4/Omics.d.ts +86 -0
- package/dist-types/ts3.4/OmicsClient.d.ts +30 -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/GetRunCacheCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListRunCachesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateRunCacheCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +77 -0
- 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 +60 -0
- package/package.json +37 -37
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,6 +20,7 @@ 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";
|
|
24
26
|
import { DeleteSequenceStoreCommandInput, DeleteSequenceStoreCommandOutput } from "./commands/DeleteSequenceStoreCommand";
|
|
@@ -37,6 +39,7 @@ import { GetReferenceCommandInput, GetReferenceCommandOutput } from "./commands/
|
|
|
37
39
|
import { GetReferenceImportJobCommandInput, GetReferenceImportJobCommandOutput } from "./commands/GetReferenceImportJobCommand";
|
|
38
40
|
import { GetReferenceMetadataCommandInput, GetReferenceMetadataCommandOutput } from "./commands/GetReferenceMetadataCommand";
|
|
39
41
|
import { GetReferenceStoreCommandInput, GetReferenceStoreCommandOutput } from "./commands/GetReferenceStoreCommand";
|
|
42
|
+
import { GetRunCacheCommandInput, GetRunCacheCommandOutput } from "./commands/GetRunCacheCommand";
|
|
40
43
|
import { GetRunCommandInput, GetRunCommandOutput } from "./commands/GetRunCommand";
|
|
41
44
|
import { GetRunGroupCommandInput, GetRunGroupCommandOutput } from "./commands/GetRunGroupCommand";
|
|
42
45
|
import { GetRunTaskCommandInput, GetRunTaskCommandOutput } from "./commands/GetRunTaskCommand";
|
|
@@ -57,6 +60,7 @@ import { ListReadSetUploadPartsCommandInput, ListReadSetUploadPartsCommandOutput
|
|
|
57
60
|
import { ListReferenceImportJobsCommandInput, ListReferenceImportJobsCommandOutput } from "./commands/ListReferenceImportJobsCommand";
|
|
58
61
|
import { ListReferencesCommandInput, ListReferencesCommandOutput } from "./commands/ListReferencesCommand";
|
|
59
62
|
import { ListReferenceStoresCommandInput, ListReferenceStoresCommandOutput } from "./commands/ListReferenceStoresCommand";
|
|
63
|
+
import { ListRunCachesCommandInput, ListRunCachesCommandOutput } from "./commands/ListRunCachesCommand";
|
|
60
64
|
import { ListRunGroupsCommandInput, ListRunGroupsCommandOutput } from "./commands/ListRunGroupsCommand";
|
|
61
65
|
import { ListRunsCommandInput, ListRunsCommandOutput } from "./commands/ListRunsCommand";
|
|
62
66
|
import { ListRunTasksCommandInput, ListRunTasksCommandOutput } from "./commands/ListRunTasksCommand";
|
|
@@ -77,6 +81,7 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/Ta
|
|
|
77
81
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
78
82
|
import { UpdateAnnotationStoreCommandInput, UpdateAnnotationStoreCommandOutput } from "./commands/UpdateAnnotationStoreCommand";
|
|
79
83
|
import { UpdateAnnotationStoreVersionCommandInput, UpdateAnnotationStoreVersionCommandOutput } from "./commands/UpdateAnnotationStoreVersionCommand";
|
|
84
|
+
import { UpdateRunCacheCommandInput, UpdateRunCacheCommandOutput } from "./commands/UpdateRunCacheCommand";
|
|
80
85
|
import { UpdateRunGroupCommandInput, UpdateRunGroupCommandOutput } from "./commands/UpdateRunGroupCommand";
|
|
81
86
|
import { UpdateVariantStoreCommandInput, UpdateVariantStoreCommandOutput } from "./commands/UpdateVariantStoreCommand";
|
|
82
87
|
import { UpdateWorkflowCommandInput, UpdateWorkflowCommandOutput } from "./commands/UpdateWorkflowCommand";
|
|
@@ -149,6 +154,12 @@ export interface Omics {
|
|
|
149
154
|
createReferenceStore(args: CreateReferenceStoreCommandInput, options?: __HttpHandlerOptions): Promise<CreateReferenceStoreCommandOutput>;
|
|
150
155
|
createReferenceStore(args: CreateReferenceStoreCommandInput, cb: (err: any, data?: CreateReferenceStoreCommandOutput) => void): void;
|
|
151
156
|
createReferenceStore(args: CreateReferenceStoreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateReferenceStoreCommandOutput) => void): void;
|
|
157
|
+
/**
|
|
158
|
+
* @see {@link CreateRunCacheCommand}
|
|
159
|
+
*/
|
|
160
|
+
createRunCache(args: CreateRunCacheCommandInput, options?: __HttpHandlerOptions): Promise<CreateRunCacheCommandOutput>;
|
|
161
|
+
createRunCache(args: CreateRunCacheCommandInput, cb: (err: any, data?: CreateRunCacheCommandOutput) => void): void;
|
|
162
|
+
createRunCache(args: CreateRunCacheCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRunCacheCommandOutput) => void): void;
|
|
152
163
|
/**
|
|
153
164
|
* @see {@link CreateRunGroupCommand}
|
|
154
165
|
*/
|
|
@@ -209,6 +220,12 @@ export interface Omics {
|
|
|
209
220
|
deleteRun(args: DeleteRunCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRunCommandOutput>;
|
|
210
221
|
deleteRun(args: DeleteRunCommandInput, cb: (err: any, data?: DeleteRunCommandOutput) => void): void;
|
|
211
222
|
deleteRun(args: DeleteRunCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRunCommandOutput) => void): void;
|
|
223
|
+
/**
|
|
224
|
+
* @see {@link DeleteRunCacheCommand}
|
|
225
|
+
*/
|
|
226
|
+
deleteRunCache(args: DeleteRunCacheCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRunCacheCommandOutput>;
|
|
227
|
+
deleteRunCache(args: DeleteRunCacheCommandInput, cb: (err: any, data?: DeleteRunCacheCommandOutput) => void): void;
|
|
228
|
+
deleteRunCache(args: DeleteRunCacheCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRunCacheCommandOutput) => void): void;
|
|
212
229
|
/**
|
|
213
230
|
* @see {@link DeleteRunGroupCommand}
|
|
214
231
|
*/
|
|
@@ -317,6 +334,12 @@ export interface Omics {
|
|
|
317
334
|
getRun(args: GetRunCommandInput, options?: __HttpHandlerOptions): Promise<GetRunCommandOutput>;
|
|
318
335
|
getRun(args: GetRunCommandInput, cb: (err: any, data?: GetRunCommandOutput) => void): void;
|
|
319
336
|
getRun(args: GetRunCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRunCommandOutput) => void): void;
|
|
337
|
+
/**
|
|
338
|
+
* @see {@link GetRunCacheCommand}
|
|
339
|
+
*/
|
|
340
|
+
getRunCache(args: GetRunCacheCommandInput, options?: __HttpHandlerOptions): Promise<GetRunCacheCommandOutput>;
|
|
341
|
+
getRunCache(args: GetRunCacheCommandInput, cb: (err: any, data?: GetRunCacheCommandOutput) => void): void;
|
|
342
|
+
getRunCache(args: GetRunCacheCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRunCacheCommandOutput) => void): void;
|
|
320
343
|
/**
|
|
321
344
|
* @see {@link GetRunGroupCommand}
|
|
322
345
|
*/
|
|
@@ -434,6 +457,13 @@ export interface Omics {
|
|
|
434
457
|
listReferenceStores(args: ListReferenceStoresCommandInput, options?: __HttpHandlerOptions): Promise<ListReferenceStoresCommandOutput>;
|
|
435
458
|
listReferenceStores(args: ListReferenceStoresCommandInput, cb: (err: any, data?: ListReferenceStoresCommandOutput) => void): void;
|
|
436
459
|
listReferenceStores(args: ListReferenceStoresCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListReferenceStoresCommandOutput) => void): void;
|
|
460
|
+
/**
|
|
461
|
+
* @see {@link ListRunCachesCommand}
|
|
462
|
+
*/
|
|
463
|
+
listRunCaches(): Promise<ListRunCachesCommandOutput>;
|
|
464
|
+
listRunCaches(args: ListRunCachesCommandInput, options?: __HttpHandlerOptions): Promise<ListRunCachesCommandOutput>;
|
|
465
|
+
listRunCaches(args: ListRunCachesCommandInput, cb: (err: any, data?: ListRunCachesCommandOutput) => void): void;
|
|
466
|
+
listRunCaches(args: ListRunCachesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRunCachesCommandOutput) => void): void;
|
|
437
467
|
/**
|
|
438
468
|
* @see {@link ListRunGroupsCommand}
|
|
439
469
|
*/
|
|
@@ -560,6 +590,12 @@ export interface Omics {
|
|
|
560
590
|
updateAnnotationStoreVersion(args: UpdateAnnotationStoreVersionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAnnotationStoreVersionCommandOutput>;
|
|
561
591
|
updateAnnotationStoreVersion(args: UpdateAnnotationStoreVersionCommandInput, cb: (err: any, data?: UpdateAnnotationStoreVersionCommandOutput) => void): void;
|
|
562
592
|
updateAnnotationStoreVersion(args: UpdateAnnotationStoreVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAnnotationStoreVersionCommandOutput) => void): void;
|
|
593
|
+
/**
|
|
594
|
+
* @see {@link UpdateRunCacheCommand}
|
|
595
|
+
*/
|
|
596
|
+
updateRunCache(args: UpdateRunCacheCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRunCacheCommandOutput>;
|
|
597
|
+
updateRunCache(args: UpdateRunCacheCommandInput, cb: (err: any, data?: UpdateRunCacheCommandOutput) => void): void;
|
|
598
|
+
updateRunCache(args: UpdateRunCacheCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRunCacheCommandOutput) => void): void;
|
|
563
599
|
/**
|
|
564
600
|
* @see {@link UpdateRunGroupCommand}
|
|
565
601
|
*/
|
|
@@ -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,6 +28,7 @@ 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";
|
|
32
34
|
import { DeleteSequenceStoreCommandInput, DeleteSequenceStoreCommandOutput } from "./commands/DeleteSequenceStoreCommand";
|
|
@@ -45,6 +47,7 @@ import { GetReferenceCommandInput, GetReferenceCommandOutput } from "./commands/
|
|
|
45
47
|
import { GetReferenceImportJobCommandInput, GetReferenceImportJobCommandOutput } from "./commands/GetReferenceImportJobCommand";
|
|
46
48
|
import { GetReferenceMetadataCommandInput, GetReferenceMetadataCommandOutput } from "./commands/GetReferenceMetadataCommand";
|
|
47
49
|
import { GetReferenceStoreCommandInput, GetReferenceStoreCommandOutput } from "./commands/GetReferenceStoreCommand";
|
|
50
|
+
import { GetRunCacheCommandInput, GetRunCacheCommandOutput } from "./commands/GetRunCacheCommand";
|
|
48
51
|
import { GetRunCommandInput, GetRunCommandOutput } from "./commands/GetRunCommand";
|
|
49
52
|
import { GetRunGroupCommandInput, GetRunGroupCommandOutput } from "./commands/GetRunGroupCommand";
|
|
50
53
|
import { GetRunTaskCommandInput, GetRunTaskCommandOutput } from "./commands/GetRunTaskCommand";
|
|
@@ -65,6 +68,7 @@ import { ListReadSetUploadPartsCommandInput, ListReadSetUploadPartsCommandOutput
|
|
|
65
68
|
import { ListReferenceImportJobsCommandInput, ListReferenceImportJobsCommandOutput } from "./commands/ListReferenceImportJobsCommand";
|
|
66
69
|
import { ListReferencesCommandInput, ListReferencesCommandOutput } from "./commands/ListReferencesCommand";
|
|
67
70
|
import { ListReferenceStoresCommandInput, ListReferenceStoresCommandOutput } from "./commands/ListReferenceStoresCommand";
|
|
71
|
+
import { ListRunCachesCommandInput, ListRunCachesCommandOutput } from "./commands/ListRunCachesCommand";
|
|
68
72
|
import { ListRunGroupsCommandInput, ListRunGroupsCommandOutput } from "./commands/ListRunGroupsCommand";
|
|
69
73
|
import { ListRunsCommandInput, ListRunsCommandOutput } from "./commands/ListRunsCommand";
|
|
70
74
|
import { ListRunTasksCommandInput, ListRunTasksCommandOutput } from "./commands/ListRunTasksCommand";
|
|
@@ -85,6 +89,7 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/Ta
|
|
|
85
89
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
86
90
|
import { UpdateAnnotationStoreCommandInput, UpdateAnnotationStoreCommandOutput } from "./commands/UpdateAnnotationStoreCommand";
|
|
87
91
|
import { UpdateAnnotationStoreVersionCommandInput, UpdateAnnotationStoreVersionCommandOutput } from "./commands/UpdateAnnotationStoreVersionCommand";
|
|
92
|
+
import { UpdateRunCacheCommandInput, UpdateRunCacheCommandOutput } from "./commands/UpdateRunCacheCommand";
|
|
88
93
|
import { UpdateRunGroupCommandInput, UpdateRunGroupCommandOutput } from "./commands/UpdateRunGroupCommand";
|
|
89
94
|
import { UpdateVariantStoreCommandInput, UpdateVariantStoreCommandOutput } from "./commands/UpdateVariantStoreCommand";
|
|
90
95
|
import { UpdateWorkflowCommandInput, UpdateWorkflowCommandOutput } from "./commands/UpdateWorkflowCommand";
|
|
@@ -95,11 +100,11 @@ export { __Client };
|
|
|
95
100
|
/**
|
|
96
101
|
* @public
|
|
97
102
|
*/
|
|
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;
|
|
103
|
+
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 | DeleteSequenceStoreCommandInput | DeleteShareCommandInput | DeleteVariantStoreCommandInput | DeleteWorkflowCommandInput | GetAnnotationImportJobCommandInput | GetAnnotationStoreCommandInput | GetAnnotationStoreVersionCommandInput | GetReadSetActivationJobCommandInput | GetReadSetCommandInput | GetReadSetExportJobCommandInput | GetReadSetImportJobCommandInput | GetReadSetMetadataCommandInput | GetReferenceCommandInput | GetReferenceImportJobCommandInput | GetReferenceMetadataCommandInput | GetReferenceStoreCommandInput | GetRunCacheCommandInput | GetRunCommandInput | GetRunGroupCommandInput | GetRunTaskCommandInput | 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 | StartAnnotationImportJobCommandInput | StartReadSetActivationJobCommandInput | StartReadSetExportJobCommandInput | StartReadSetImportJobCommandInput | StartReferenceImportJobCommandInput | StartRunCommandInput | StartVariantImportJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAnnotationStoreCommandInput | UpdateAnnotationStoreVersionCommandInput | UpdateRunCacheCommandInput | UpdateRunGroupCommandInput | UpdateVariantStoreCommandInput | UpdateWorkflowCommandInput | UploadReadSetPartCommandInput;
|
|
99
104
|
/**
|
|
100
105
|
* @public
|
|
101
106
|
*/
|
|
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;
|
|
107
|
+
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 | DeleteSequenceStoreCommandOutput | DeleteShareCommandOutput | DeleteVariantStoreCommandOutput | DeleteWorkflowCommandOutput | GetAnnotationImportJobCommandOutput | GetAnnotationStoreCommandOutput | GetAnnotationStoreVersionCommandOutput | GetReadSetActivationJobCommandOutput | GetReadSetCommandOutput | GetReadSetExportJobCommandOutput | GetReadSetImportJobCommandOutput | GetReadSetMetadataCommandOutput | GetReferenceCommandOutput | GetReferenceImportJobCommandOutput | GetReferenceMetadataCommandOutput | GetReferenceStoreCommandOutput | GetRunCacheCommandOutput | GetRunCommandOutput | GetRunGroupCommandOutput | GetRunTaskCommandOutput | 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 | StartAnnotationImportJobCommandOutput | StartReadSetActivationJobCommandOutput | StartReadSetExportJobCommandOutput | StartReadSetImportJobCommandOutput | StartReferenceImportJobCommandOutput | StartRunCommandOutput | StartVariantImportJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAnnotationStoreCommandOutput | UpdateAnnotationStoreVersionCommandOutput | UpdateRunCacheCommandOutput | UpdateRunGroupCommandOutput | UpdateVariantStoreCommandOutput | UpdateWorkflowCommandOutput | UploadReadSetPartCommandOutput;
|
|
103
108
|
/**
|
|
104
109
|
* @public
|
|
105
110
|
*/
|
|
@@ -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
|
+
}
|
|
@@ -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,107 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { GetRunCacheRequest, GetRunCacheResponse } 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 GetRunCacheCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface GetRunCacheCommandInput extends GetRunCacheRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link GetRunCacheCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetRunCacheCommandOutput extends GetRunCacheResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const GetRunCacheCommand_base: {
|
|
25
|
+
new (input: GetRunCacheCommandInput): import("@smithy/smithy-client").CommandImpl<GetRunCacheCommandInput, GetRunCacheCommandOutput, OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: GetRunCacheCommandInput): import("@smithy/smithy-client").CommandImpl<GetRunCacheCommandInput, GetRunCacheCommandOutput, OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Retrieve the details for the specified run cache.</p>
|
|
31
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/omics/latest/dev/workflow-call-caching.html">Call caching for HealthOmics runs</a> in the AWS HealthOmics User Guide.</p>
|
|
32
|
+
* @example
|
|
33
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
34
|
+
* ```javascript
|
|
35
|
+
* import { OmicsClient, GetRunCacheCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
36
|
+
* // const { OmicsClient, GetRunCacheCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
37
|
+
* const client = new OmicsClient(config);
|
|
38
|
+
* const input = { // GetRunCacheRequest
|
|
39
|
+
* id: "STRING_VALUE", // required
|
|
40
|
+
* };
|
|
41
|
+
* const command = new GetRunCacheCommand(input);
|
|
42
|
+
* const response = await client.send(command);
|
|
43
|
+
* // { // GetRunCacheResponse
|
|
44
|
+
* // arn: "STRING_VALUE",
|
|
45
|
+
* // cacheBehavior: "STRING_VALUE",
|
|
46
|
+
* // cacheBucketOwnerId: "STRING_VALUE",
|
|
47
|
+
* // cacheS3Uri: "STRING_VALUE",
|
|
48
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
49
|
+
* // description: "STRING_VALUE",
|
|
50
|
+
* // id: "STRING_VALUE",
|
|
51
|
+
* // name: "STRING_VALUE",
|
|
52
|
+
* // status: "STRING_VALUE",
|
|
53
|
+
* // tags: { // TagMap
|
|
54
|
+
* // "<keys>": "STRING_VALUE",
|
|
55
|
+
* // },
|
|
56
|
+
* // };
|
|
57
|
+
*
|
|
58
|
+
* ```
|
|
59
|
+
*
|
|
60
|
+
* @param GetRunCacheCommandInput - {@link GetRunCacheCommandInput}
|
|
61
|
+
* @returns {@link GetRunCacheCommandOutput}
|
|
62
|
+
* @see {@link GetRunCacheCommandInput} for command's `input` shape.
|
|
63
|
+
* @see {@link GetRunCacheCommandOutput} for command's `response` shape.
|
|
64
|
+
* @see {@link OmicsClientResolvedConfig | config} for OmicsClient's `config` shape.
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
67
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link ConflictException} (client fault)
|
|
70
|
+
* <p>The request cannot be applied to the target resource in its current state.</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link InternalServerException} (server fault)
|
|
73
|
+
* <p>An unexpected error occurred. Try the request again.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link RequestTimeoutException} (client fault)
|
|
76
|
+
* <p>The request timed out.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
79
|
+
* <p>The target resource was not found in the current Region.</p>
|
|
80
|
+
*
|
|
81
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
82
|
+
* <p>The request exceeds a service quota.</p>
|
|
83
|
+
*
|
|
84
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
85
|
+
* <p>The request was denied due to request throttling.</p>
|
|
86
|
+
*
|
|
87
|
+
* @throws {@link ValidationException} (client fault)
|
|
88
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
89
|
+
*
|
|
90
|
+
* @throws {@link OmicsServiceException}
|
|
91
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
92
|
+
*
|
|
93
|
+
* @public
|
|
94
|
+
*/
|
|
95
|
+
export declare class GetRunCacheCommand extends GetRunCacheCommand_base {
|
|
96
|
+
/** @internal type navigation helper, not in runtime. */
|
|
97
|
+
protected static __types: {
|
|
98
|
+
api: {
|
|
99
|
+
input: GetRunCacheRequest;
|
|
100
|
+
output: GetRunCacheResponse;
|
|
101
|
+
};
|
|
102
|
+
sdk: {
|
|
103
|
+
input: GetRunCacheCommandInput;
|
|
104
|
+
output: GetRunCacheCommandOutput;
|
|
105
|
+
};
|
|
106
|
+
};
|
|
107
|
+
}
|
|
@@ -29,6 +29,10 @@ declare const GetRunCommand_base: {
|
|
|
29
29
|
/**
|
|
30
30
|
* <p>Gets information about a workflow run.</p>
|
|
31
31
|
* <p>If a workflow is shared with you, you cannot export information about the run.</p>
|
|
32
|
+
* <p>HealthOmics stores a fixed number of runs that are available to the console and API. If
|
|
33
|
+
* GetRun doesn't return the requested run, you can find run logs
|
|
34
|
+
* for all runs in the CloudWatch logs. For more information about viewing the run logs, see <a href="https://docs.aws.amazon.com/omics/latest/dev/cloudwatch-logs.html">CloudWatch logs</a>
|
|
35
|
+
* in the <i>AWS HealthOmics User Guide</i>.</p>
|
|
32
36
|
* @example
|
|
33
37
|
* Use a bare-bones client and the command you need to make an API call.
|
|
34
38
|
* ```javascript
|
|
@@ -46,6 +50,9 @@ declare const GetRunCommand_base: {
|
|
|
46
50
|
* // { // GetRunResponse
|
|
47
51
|
* // arn: "STRING_VALUE",
|
|
48
52
|
* // id: "STRING_VALUE",
|
|
53
|
+
* // cacheId: "STRING_VALUE",
|
|
54
|
+
* // cacheBehavior: "STRING_VALUE",
|
|
55
|
+
* // engineVersion: "STRING_VALUE",
|
|
49
56
|
* // status: "STRING_VALUE",
|
|
50
57
|
* // workflowId: "STRING_VALUE",
|
|
51
58
|
* // workflowType: "STRING_VALUE",
|
|
@@ -45,6 +45,8 @@ declare const GetRunTaskCommand_base: {
|
|
|
45
45
|
* // status: "STRING_VALUE",
|
|
46
46
|
* // name: "STRING_VALUE",
|
|
47
47
|
* // cpus: Number("int"),
|
|
48
|
+
* // cacheHit: true || false,
|
|
49
|
+
* // cacheS3Uri: "STRING_VALUE",
|
|
48
50
|
* // memory: Number("int"),
|
|
49
51
|
* // creationTime: new Date("TIMESTAMP"),
|
|
50
52
|
* // startTime: new Date("TIMESTAMP"),
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { ListRunCachesRequest, ListRunCachesResponse } 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 ListRunCachesCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListRunCachesCommandInput extends ListRunCachesRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListRunCachesCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListRunCachesCommandOutput extends ListRunCachesResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const ListRunCachesCommand_base: {
|
|
25
|
+
new (input: ListRunCachesCommandInput): import("@smithy/smithy-client").CommandImpl<ListRunCachesCommandInput, ListRunCachesCommandOutput, OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (...[input]: [] | [ListRunCachesCommandInput]): import("@smithy/smithy-client").CommandImpl<ListRunCachesCommandInput, ListRunCachesCommandOutput, OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Retrieves a list of your run caches.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { OmicsClient, ListRunCachesCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
35
|
+
* // const { OmicsClient, ListRunCachesCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
36
|
+
* const client = new OmicsClient(config);
|
|
37
|
+
* const input = { // ListRunCachesRequest
|
|
38
|
+
* maxResults: Number("int"),
|
|
39
|
+
* startingToken: "STRING_VALUE",
|
|
40
|
+
* };
|
|
41
|
+
* const command = new ListRunCachesCommand(input);
|
|
42
|
+
* const response = await client.send(command);
|
|
43
|
+
* // { // ListRunCachesResponse
|
|
44
|
+
* // items: [ // RunCacheList
|
|
45
|
+
* // { // RunCacheListItem
|
|
46
|
+
* // arn: "STRING_VALUE",
|
|
47
|
+
* // cacheBehavior: "STRING_VALUE",
|
|
48
|
+
* // cacheS3Uri: "STRING_VALUE",
|
|
49
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
50
|
+
* // id: "STRING_VALUE",
|
|
51
|
+
* // name: "STRING_VALUE",
|
|
52
|
+
* // status: "STRING_VALUE",
|
|
53
|
+
* // },
|
|
54
|
+
* // ],
|
|
55
|
+
* // nextToken: "STRING_VALUE",
|
|
56
|
+
* // };
|
|
57
|
+
*
|
|
58
|
+
* ```
|
|
59
|
+
*
|
|
60
|
+
* @param ListRunCachesCommandInput - {@link ListRunCachesCommandInput}
|
|
61
|
+
* @returns {@link ListRunCachesCommandOutput}
|
|
62
|
+
* @see {@link ListRunCachesCommandInput} for command's `input` shape.
|
|
63
|
+
* @see {@link ListRunCachesCommandOutput} for command's `response` shape.
|
|
64
|
+
* @see {@link OmicsClientResolvedConfig | config} for OmicsClient's `config` shape.
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
67
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link ConflictException} (client fault)
|
|
70
|
+
* <p>The request cannot be applied to the target resource in its current state.</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link InternalServerException} (server fault)
|
|
73
|
+
* <p>An unexpected error occurred. Try the request again.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link RequestTimeoutException} (client fault)
|
|
76
|
+
* <p>The request timed out.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
79
|
+
* <p>The target resource was not found in the current Region.</p>
|
|
80
|
+
*
|
|
81
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
82
|
+
* <p>The request exceeds a service quota.</p>
|
|
83
|
+
*
|
|
84
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
85
|
+
* <p>The request was denied due to request throttling.</p>
|
|
86
|
+
*
|
|
87
|
+
* @throws {@link ValidationException} (client fault)
|
|
88
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
89
|
+
*
|
|
90
|
+
* @throws {@link OmicsServiceException}
|
|
91
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
92
|
+
*
|
|
93
|
+
* @public
|
|
94
|
+
*/
|
|
95
|
+
export declare class ListRunCachesCommand extends ListRunCachesCommand_base {
|
|
96
|
+
/** @internal type navigation helper, not in runtime. */
|
|
97
|
+
protected static __types: {
|
|
98
|
+
api: {
|
|
99
|
+
input: ListRunCachesRequest;
|
|
100
|
+
output: ListRunCachesResponse;
|
|
101
|
+
};
|
|
102
|
+
sdk: {
|
|
103
|
+
input: ListRunCachesCommandInput;
|
|
104
|
+
output: ListRunCachesCommandOutput;
|
|
105
|
+
};
|
|
106
|
+
};
|
|
107
|
+
}
|
|
@@ -49,6 +49,8 @@ declare const ListRunTasksCommand_base: {
|
|
|
49
49
|
* // status: "STRING_VALUE",
|
|
50
50
|
* // name: "STRING_VALUE",
|
|
51
51
|
* // cpus: Number("int"),
|
|
52
|
+
* // cacheHit: true || false,
|
|
53
|
+
* // cacheS3Uri: "STRING_VALUE",
|
|
52
54
|
* // memory: Number("int"),
|
|
53
55
|
* // creationTime: new Date("TIMESTAMP"),
|
|
54
56
|
* // startTime: new Date("TIMESTAMP"),
|