@aws-sdk/client-omics 3.1014.0 → 3.1015.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +56 -7
- package/dist-cjs/index.js +141 -14
- package/dist-cjs/schemas/schemas_0.js +230 -32
- package/dist-es/Omics.js +18 -0
- package/dist-es/commands/CancelRunBatchCommand.js +16 -0
- package/dist-es/commands/DeleteBatchCommand.js +16 -0
- package/dist-es/commands/DeleteRunBatchCommand.js +16 -0
- package/dist-es/commands/GetBatchCommand.js +16 -0
- package/dist-es/commands/ListBatchCommand.js +16 -0
- package/dist-es/commands/ListRunsInBatchCommand.js +16 -0
- package/dist-es/commands/StartRunBatchCommand.js +16 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/models/enums.js +33 -14
- package/dist-es/pagination/ListBatchPaginator.js +4 -0
- package/dist-es/pagination/ListRunsInBatchPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/schemas/schemas_0.js +222 -24
- package/dist-types/Omics.d.ts +64 -0
- package/dist-types/OmicsClient.d.ts +9 -2
- package/dist-types/commands/CancelAnnotationImportJobCommand.d.ts +1 -1
- package/dist-types/commands/CancelRunBatchCommand.d.ts +96 -0
- package/dist-types/commands/CancelVariantImportJobCommand.d.ts +1 -1
- package/dist-types/commands/CreateAnnotationStoreCommand.d.ts +1 -1
- package/dist-types/commands/CreateVariantStoreCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAnnotationStoreCommand.d.ts +1 -1
- package/dist-types/commands/DeleteBatchCommand.d.ts +96 -0
- package/dist-types/commands/DeleteRunBatchCommand.d.ts +96 -0
- package/dist-types/commands/DeleteVariantStoreCommand.d.ts +1 -1
- package/dist-types/commands/GetAnnotationImportJobCommand.d.ts +1 -1
- package/dist-types/commands/GetAnnotationStoreCommand.d.ts +1 -1
- package/dist-types/commands/GetBatchCommand.d.ts +146 -0
- package/dist-types/commands/GetRunCommand.d.ts +1 -0
- package/dist-types/commands/GetVariantImportJobCommand.d.ts +1 -1
- package/dist-types/commands/GetVariantStoreCommand.d.ts +1 -1
- package/dist-types/commands/ListAnnotationImportJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListAnnotationStoresCommand.d.ts +1 -1
- package/dist-types/commands/ListBatchCommand.d.ts +103 -0
- package/dist-types/commands/ListRunsCommand.d.ts +2 -0
- package/dist-types/commands/ListRunsInBatchCommand.d.ts +114 -0
- package/dist-types/commands/ListVariantImportJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListVariantStoresCommand.d.ts +1 -1
- package/dist-types/commands/StartAnnotationImportJobCommand.d.ts +1 -1
- package/dist-types/commands/StartRunBatchCommand.d.ts +144 -0
- package/dist-types/commands/StartVariantImportJobCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAnnotationStoreCommand.d.ts +1 -1
- package/dist-types/commands/UpdateVariantStoreCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/models/enums.d.ts +73 -38
- package/dist-types/models/models_0.d.ts +648 -2
- package/dist-types/pagination/ListBatchPaginator.d.ts +7 -0
- package/dist-types/pagination/ListRunsInBatchPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/schemas/schemas_0.d.ts +27 -0
- package/dist-types/ts3.4/Omics.d.ts +134 -0
- package/dist-types/ts3.4/OmicsClient.d.ts +42 -0
- package/dist-types/ts3.4/commands/CancelRunBatchCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteBatchCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/DeleteRunBatchCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetBatchCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListBatchCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListRunsInBatchCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/StartRunBatchCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/models/enums.d.ts +40 -18
- package/dist-types/ts3.4/models/models_0.d.ts +164 -0
- package/dist-types/ts3.4/pagination/ListBatchPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListRunsInBatchPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +27 -0
- package/package.json +5 -5
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListBatchCommandInput, ListBatchCommandOutput } from "../commands/ListBatchCommand";
|
|
3
|
+
import { OmicsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListBatch: (config: OmicsPaginationConfiguration, input: ListBatchCommandInput, ...rest: any[]) => Paginator<ListBatchCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListRunsInBatchCommandInput, ListRunsInBatchCommandOutput } from "../commands/ListRunsInBatchCommand";
|
|
3
|
+
import { OmicsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListRunsInBatch: (config: OmicsPaginationConfiguration, input: ListRunsInBatchCommandInput, ...rest: any[]) => Paginator<ListRunsInBatchCommandOutput>;
|
|
@@ -2,6 +2,7 @@ export * from "./Interfaces";
|
|
|
2
2
|
export * from "./ListAnnotationImportJobsPaginator";
|
|
3
3
|
export * from "./ListAnnotationStoresPaginator";
|
|
4
4
|
export * from "./ListAnnotationStoreVersionsPaginator";
|
|
5
|
+
export * from "./ListBatchPaginator";
|
|
5
6
|
export * from "./ListMultipartReadSetUploadsPaginator";
|
|
6
7
|
export * from "./ListReadSetActivationJobsPaginator";
|
|
7
8
|
export * from "./ListReadSetExportJobsPaginator";
|
|
@@ -14,6 +15,7 @@ export * from "./ListReferenceStoresPaginator";
|
|
|
14
15
|
export * from "./ListRunCachesPaginator";
|
|
15
16
|
export * from "./ListRunGroupsPaginator";
|
|
16
17
|
export * from "./ListRunsPaginator";
|
|
18
|
+
export * from "./ListRunsInBatchPaginator";
|
|
17
19
|
export * from "./ListRunTasksPaginator";
|
|
18
20
|
export * from "./ListSequenceStoresPaginator";
|
|
19
21
|
export * from "./ListSharesPaginator";
|
|
@@ -31,8 +31,11 @@ export declare var AnnotationStoreItem$: StaticStructureSchema;
|
|
|
31
31
|
export declare var AnnotationStoreVersionItem$: StaticStructureSchema;
|
|
32
32
|
export declare var BatchDeleteReadSetRequest$: StaticStructureSchema;
|
|
33
33
|
export declare var BatchDeleteReadSetResponse$: StaticStructureSchema;
|
|
34
|
+
export declare var BatchListItem$: StaticStructureSchema;
|
|
34
35
|
export declare var CancelAnnotationImportRequest$: StaticStructureSchema;
|
|
35
36
|
export declare var CancelAnnotationImportResponse$: StaticStructureSchema;
|
|
37
|
+
export declare var CancelRunBatchRequest$: StaticStructureSchema;
|
|
38
|
+
export declare var CancelRunBatchResponse$: StaticStructureSchema;
|
|
36
39
|
export declare var CancelRunRequest$: StaticStructureSchema;
|
|
37
40
|
export declare var CancelVariantImportRequest$: StaticStructureSchema;
|
|
38
41
|
export declare var CancelVariantImportResponse$: StaticStructureSchema;
|
|
@@ -62,16 +65,20 @@ export declare var CreateWorkflowRequest$: StaticStructureSchema;
|
|
|
62
65
|
export declare var CreateWorkflowResponse$: StaticStructureSchema;
|
|
63
66
|
export declare var CreateWorkflowVersionRequest$: StaticStructureSchema;
|
|
64
67
|
export declare var CreateWorkflowVersionResponse$: StaticStructureSchema;
|
|
68
|
+
export declare var DefaultRunSetting$: StaticStructureSchema;
|
|
65
69
|
export declare var DefinitionRepository$: StaticStructureSchema;
|
|
66
70
|
export declare var DefinitionRepositoryDetails$: StaticStructureSchema;
|
|
67
71
|
export declare var DeleteAnnotationStoreRequest$: StaticStructureSchema;
|
|
68
72
|
export declare var DeleteAnnotationStoreResponse$: StaticStructureSchema;
|
|
69
73
|
export declare var DeleteAnnotationStoreVersionsRequest$: StaticStructureSchema;
|
|
70
74
|
export declare var DeleteAnnotationStoreVersionsResponse$: StaticStructureSchema;
|
|
75
|
+
export declare var DeleteBatchRequest$: StaticStructureSchema;
|
|
71
76
|
export declare var DeleteReferenceRequest$: StaticStructureSchema;
|
|
72
77
|
export declare var DeleteReferenceResponse$: StaticStructureSchema;
|
|
73
78
|
export declare var DeleteReferenceStoreRequest$: StaticStructureSchema;
|
|
74
79
|
export declare var DeleteReferenceStoreResponse$: StaticStructureSchema;
|
|
80
|
+
export declare var DeleteRunBatchRequest$: StaticStructureSchema;
|
|
81
|
+
export declare var DeleteRunBatchResponse$: StaticStructureSchema;
|
|
75
82
|
export declare var DeleteRunCacheRequest$: StaticStructureSchema;
|
|
76
83
|
export declare var DeleteRunGroupRequest$: StaticStructureSchema;
|
|
77
84
|
export declare var DeleteRunRequest$: StaticStructureSchema;
|
|
@@ -98,6 +105,8 @@ export declare var GetAnnotationStoreRequest$: StaticStructureSchema;
|
|
|
98
105
|
export declare var GetAnnotationStoreResponse$: StaticStructureSchema;
|
|
99
106
|
export declare var GetAnnotationStoreVersionRequest$: StaticStructureSchema;
|
|
100
107
|
export declare var GetAnnotationStoreVersionResponse$: StaticStructureSchema;
|
|
108
|
+
export declare var GetBatchRequest$: StaticStructureSchema;
|
|
109
|
+
export declare var GetBatchResponse$: StaticStructureSchema;
|
|
101
110
|
export declare var GetReadSetActivationJobRequest$: StaticStructureSchema;
|
|
102
111
|
export declare var GetReadSetActivationJobResponse$: StaticStructureSchema;
|
|
103
112
|
export declare var GetReadSetExportJobRequest$: StaticStructureSchema;
|
|
@@ -146,6 +155,7 @@ export declare var ImportReadSetSourceItem$: StaticStructureSchema;
|
|
|
146
155
|
export declare var ImportReferenceFilter$: StaticStructureSchema;
|
|
147
156
|
export declare var ImportReferenceJobItem$: StaticStructureSchema;
|
|
148
157
|
export declare var ImportReferenceSourceItem$: StaticStructureSchema;
|
|
158
|
+
export declare var InlineSetting$: StaticStructureSchema;
|
|
149
159
|
export declare var ListAnnotationImportJobsFilter$: StaticStructureSchema;
|
|
150
160
|
export declare var ListAnnotationImportJobsRequest$: StaticStructureSchema;
|
|
151
161
|
export declare var ListAnnotationImportJobsResponse$: StaticStructureSchema;
|
|
@@ -155,6 +165,8 @@ export declare var ListAnnotationStoresResponse$: StaticStructureSchema;
|
|
|
155
165
|
export declare var ListAnnotationStoreVersionsFilter$: StaticStructureSchema;
|
|
156
166
|
export declare var ListAnnotationStoreVersionsRequest$: StaticStructureSchema;
|
|
157
167
|
export declare var ListAnnotationStoreVersionsResponse$: StaticStructureSchema;
|
|
168
|
+
export declare var ListBatchRequest$: StaticStructureSchema;
|
|
169
|
+
export declare var ListBatchResponse$: StaticStructureSchema;
|
|
158
170
|
export declare var ListMultipartReadSetUploadsRequest$: StaticStructureSchema;
|
|
159
171
|
export declare var ListMultipartReadSetUploadsResponse$: StaticStructureSchema;
|
|
160
172
|
export declare var ListReadSetActivationJobsRequest$: StaticStructureSchema;
|
|
@@ -177,6 +189,8 @@ export declare var ListRunCachesRequest$: StaticStructureSchema;
|
|
|
177
189
|
export declare var ListRunCachesResponse$: StaticStructureSchema;
|
|
178
190
|
export declare var ListRunGroupsRequest$: StaticStructureSchema;
|
|
179
191
|
export declare var ListRunGroupsResponse$: StaticStructureSchema;
|
|
192
|
+
export declare var ListRunsInBatchRequest$: StaticStructureSchema;
|
|
193
|
+
export declare var ListRunsInBatchResponse$: StaticStructureSchema;
|
|
180
194
|
export declare var ListRunsRequest$: StaticStructureSchema;
|
|
181
195
|
export declare var ListRunsResponse$: StaticStructureSchema;
|
|
182
196
|
export declare var ListRunTasksRequest$: StaticStructureSchema;
|
|
@@ -214,10 +228,12 @@ export declare var ReferenceListItem$: StaticStructureSchema;
|
|
|
214
228
|
export declare var ReferenceStoreDetail$: StaticStructureSchema;
|
|
215
229
|
export declare var ReferenceStoreFilter$: StaticStructureSchema;
|
|
216
230
|
export declare var RegistryMapping$: StaticStructureSchema;
|
|
231
|
+
export declare var RunBatchListItem$: StaticStructureSchema;
|
|
217
232
|
export declare var RunCacheListItem$: StaticStructureSchema;
|
|
218
233
|
export declare var RunGroupListItem$: StaticStructureSchema;
|
|
219
234
|
export declare var RunListItem$: StaticStructureSchema;
|
|
220
235
|
export declare var RunLogLocation$: StaticStructureSchema;
|
|
236
|
+
export declare var RunSummary$: StaticStructureSchema;
|
|
221
237
|
export declare var S3AccessConfig$: StaticStructureSchema;
|
|
222
238
|
export declare var SequenceInformation$: StaticStructureSchema;
|
|
223
239
|
export declare var SequenceStoreDetail$: StaticStructureSchema;
|
|
@@ -240,10 +256,13 @@ export declare var StartReadSetImportJobSourceItem$: StaticStructureSchema;
|
|
|
240
256
|
export declare var StartReferenceImportJobRequest$: StaticStructureSchema;
|
|
241
257
|
export declare var StartReferenceImportJobResponse$: StaticStructureSchema;
|
|
242
258
|
export declare var StartReferenceImportJobSourceItem$: StaticStructureSchema;
|
|
259
|
+
export declare var StartRunBatchRequest$: StaticStructureSchema;
|
|
260
|
+
export declare var StartRunBatchResponse$: StaticStructureSchema;
|
|
243
261
|
export declare var StartRunRequest$: StaticStructureSchema;
|
|
244
262
|
export declare var StartRunResponse$: StaticStructureSchema;
|
|
245
263
|
export declare var StartVariantImportRequest$: StaticStructureSchema;
|
|
246
264
|
export declare var StartVariantImportResponse$: StaticStructureSchema;
|
|
265
|
+
export declare var SubmissionSummary$: StaticStructureSchema;
|
|
247
266
|
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
248
267
|
export declare var TagResourceResponse$: StaticStructureSchema;
|
|
249
268
|
export declare var TaskListItem$: StaticStructureSchema;
|
|
@@ -275,6 +294,7 @@ export declare var VersionDeleteError$: StaticStructureSchema;
|
|
|
275
294
|
export declare var WorkflowListItem$: StaticStructureSchema;
|
|
276
295
|
export declare var WorkflowParameter$: StaticStructureSchema;
|
|
277
296
|
export declare var WorkflowVersionListItem$: StaticStructureSchema;
|
|
297
|
+
export declare var BatchRunSettings$: StaticUnionSchema;
|
|
278
298
|
export declare var FormatOptions$: StaticUnionSchema;
|
|
279
299
|
export declare var ReferenceItem$: StaticUnionSchema;
|
|
280
300
|
export declare var StoreOptions$: StaticUnionSchema;
|
|
@@ -284,6 +304,7 @@ export declare var AcceptShare$: StaticOperationSchema;
|
|
|
284
304
|
export declare var BatchDeleteReadSet$: StaticOperationSchema;
|
|
285
305
|
export declare var CancelAnnotationImportJob$: StaticOperationSchema;
|
|
286
306
|
export declare var CancelRun$: StaticOperationSchema;
|
|
307
|
+
export declare var CancelRunBatch$: StaticOperationSchema;
|
|
287
308
|
export declare var CancelVariantImportJob$: StaticOperationSchema;
|
|
288
309
|
export declare var CompleteMultipartReadSetUpload$: StaticOperationSchema;
|
|
289
310
|
export declare var CreateAnnotationStore$: StaticOperationSchema;
|
|
@@ -299,9 +320,11 @@ export declare var CreateWorkflow$: StaticOperationSchema;
|
|
|
299
320
|
export declare var CreateWorkflowVersion$: StaticOperationSchema;
|
|
300
321
|
export declare var DeleteAnnotationStore$: StaticOperationSchema;
|
|
301
322
|
export declare var DeleteAnnotationStoreVersions$: StaticOperationSchema;
|
|
323
|
+
export declare var DeleteBatch$: StaticOperationSchema;
|
|
302
324
|
export declare var DeleteReference$: StaticOperationSchema;
|
|
303
325
|
export declare var DeleteReferenceStore$: StaticOperationSchema;
|
|
304
326
|
export declare var DeleteRun$: StaticOperationSchema;
|
|
327
|
+
export declare var DeleteRunBatch$: StaticOperationSchema;
|
|
305
328
|
export declare var DeleteRunCache$: StaticOperationSchema;
|
|
306
329
|
export declare var DeleteRunGroup$: StaticOperationSchema;
|
|
307
330
|
export declare var DeleteS3AccessPolicy$: StaticOperationSchema;
|
|
@@ -313,6 +336,7 @@ export declare var DeleteWorkflowVersion$: StaticOperationSchema;
|
|
|
313
336
|
export declare var GetAnnotationImportJob$: StaticOperationSchema;
|
|
314
337
|
export declare var GetAnnotationStore$: StaticOperationSchema;
|
|
315
338
|
export declare var GetAnnotationStoreVersion$: StaticOperationSchema;
|
|
339
|
+
export declare var GetBatch$: StaticOperationSchema;
|
|
316
340
|
export declare var GetReadSet$: StaticOperationSchema;
|
|
317
341
|
export declare var GetReadSetActivationJob$: StaticOperationSchema;
|
|
318
342
|
export declare var GetReadSetExportJob$: StaticOperationSchema;
|
|
@@ -336,6 +360,7 @@ export declare var GetWorkflowVersion$: StaticOperationSchema;
|
|
|
336
360
|
export declare var ListAnnotationImportJobs$: StaticOperationSchema;
|
|
337
361
|
export declare var ListAnnotationStores$: StaticOperationSchema;
|
|
338
362
|
export declare var ListAnnotationStoreVersions$: StaticOperationSchema;
|
|
363
|
+
export declare var ListBatch$: StaticOperationSchema;
|
|
339
364
|
export declare var ListMultipartReadSetUploads$: StaticOperationSchema;
|
|
340
365
|
export declare var ListReadSetActivationJobs$: StaticOperationSchema;
|
|
341
366
|
export declare var ListReadSetExportJobs$: StaticOperationSchema;
|
|
@@ -348,6 +373,7 @@ export declare var ListReferenceStores$: StaticOperationSchema;
|
|
|
348
373
|
export declare var ListRunCaches$: StaticOperationSchema;
|
|
349
374
|
export declare var ListRunGroups$: StaticOperationSchema;
|
|
350
375
|
export declare var ListRuns$: StaticOperationSchema;
|
|
376
|
+
export declare var ListRunsInBatch$: StaticOperationSchema;
|
|
351
377
|
export declare var ListRunTasks$: StaticOperationSchema;
|
|
352
378
|
export declare var ListSequenceStores$: StaticOperationSchema;
|
|
353
379
|
export declare var ListShares$: StaticOperationSchema;
|
|
@@ -363,6 +389,7 @@ export declare var StartReadSetExportJob$: StaticOperationSchema;
|
|
|
363
389
|
export declare var StartReadSetImportJob$: StaticOperationSchema;
|
|
364
390
|
export declare var StartReferenceImportJob$: StaticOperationSchema;
|
|
365
391
|
export declare var StartRun$: StaticOperationSchema;
|
|
392
|
+
export declare var StartRunBatch$: StaticOperationSchema;
|
|
366
393
|
export declare var StartVariantImportJob$: StaticOperationSchema;
|
|
367
394
|
export declare var TagResource$: StaticOperationSchema;
|
|
368
395
|
export declare var UntagResource$: StaticOperationSchema;
|
|
@@ -21,6 +21,10 @@ import {
|
|
|
21
21
|
CancelAnnotationImportJobCommandInput,
|
|
22
22
|
CancelAnnotationImportJobCommandOutput,
|
|
23
23
|
} from "./commands/CancelAnnotationImportJobCommand";
|
|
24
|
+
import {
|
|
25
|
+
CancelRunBatchCommandInput,
|
|
26
|
+
CancelRunBatchCommandOutput,
|
|
27
|
+
} from "./commands/CancelRunBatchCommand";
|
|
24
28
|
import {
|
|
25
29
|
CancelRunCommandInput,
|
|
26
30
|
CancelRunCommandOutput,
|
|
@@ -85,6 +89,10 @@ import {
|
|
|
85
89
|
DeleteAnnotationStoreVersionsCommandInput,
|
|
86
90
|
DeleteAnnotationStoreVersionsCommandOutput,
|
|
87
91
|
} from "./commands/DeleteAnnotationStoreVersionsCommand";
|
|
92
|
+
import {
|
|
93
|
+
DeleteBatchCommandInput,
|
|
94
|
+
DeleteBatchCommandOutput,
|
|
95
|
+
} from "./commands/DeleteBatchCommand";
|
|
88
96
|
import {
|
|
89
97
|
DeleteReferenceCommandInput,
|
|
90
98
|
DeleteReferenceCommandOutput,
|
|
@@ -93,6 +101,10 @@ import {
|
|
|
93
101
|
DeleteReferenceStoreCommandInput,
|
|
94
102
|
DeleteReferenceStoreCommandOutput,
|
|
95
103
|
} from "./commands/DeleteReferenceStoreCommand";
|
|
104
|
+
import {
|
|
105
|
+
DeleteRunBatchCommandInput,
|
|
106
|
+
DeleteRunBatchCommandOutput,
|
|
107
|
+
} from "./commands/DeleteRunBatchCommand";
|
|
96
108
|
import {
|
|
97
109
|
DeleteRunCacheCommandInput,
|
|
98
110
|
DeleteRunCacheCommandOutput,
|
|
@@ -141,6 +153,10 @@ import {
|
|
|
141
153
|
GetAnnotationStoreVersionCommandInput,
|
|
142
154
|
GetAnnotationStoreVersionCommandOutput,
|
|
143
155
|
} from "./commands/GetAnnotationStoreVersionCommand";
|
|
156
|
+
import {
|
|
157
|
+
GetBatchCommandInput,
|
|
158
|
+
GetBatchCommandOutput,
|
|
159
|
+
} from "./commands/GetBatchCommand";
|
|
144
160
|
import {
|
|
145
161
|
GetReadSetActivationJobCommandInput,
|
|
146
162
|
GetReadSetActivationJobCommandOutput,
|
|
@@ -233,6 +249,10 @@ import {
|
|
|
233
249
|
ListAnnotationStoreVersionsCommandInput,
|
|
234
250
|
ListAnnotationStoreVersionsCommandOutput,
|
|
235
251
|
} from "./commands/ListAnnotationStoreVersionsCommand";
|
|
252
|
+
import {
|
|
253
|
+
ListBatchCommandInput,
|
|
254
|
+
ListBatchCommandOutput,
|
|
255
|
+
} from "./commands/ListBatchCommand";
|
|
236
256
|
import {
|
|
237
257
|
ListMultipartReadSetUploadsCommandInput,
|
|
238
258
|
ListMultipartReadSetUploadsCommandOutput,
|
|
@@ -281,6 +301,10 @@ import {
|
|
|
281
301
|
ListRunsCommandInput,
|
|
282
302
|
ListRunsCommandOutput,
|
|
283
303
|
} from "./commands/ListRunsCommand";
|
|
304
|
+
import {
|
|
305
|
+
ListRunsInBatchCommandInput,
|
|
306
|
+
ListRunsInBatchCommandOutput,
|
|
307
|
+
} from "./commands/ListRunsInBatchCommand";
|
|
284
308
|
import {
|
|
285
309
|
ListRunTasksCommandInput,
|
|
286
310
|
ListRunTasksCommandOutput,
|
|
@@ -337,6 +361,10 @@ import {
|
|
|
337
361
|
StartReferenceImportJobCommandInput,
|
|
338
362
|
StartReferenceImportJobCommandOutput,
|
|
339
363
|
} from "./commands/StartReferenceImportJobCommand";
|
|
364
|
+
import {
|
|
365
|
+
StartRunBatchCommandInput,
|
|
366
|
+
StartRunBatchCommandOutput,
|
|
367
|
+
} from "./commands/StartRunBatchCommand";
|
|
340
368
|
import {
|
|
341
369
|
StartRunCommandInput,
|
|
342
370
|
StartRunCommandOutput,
|
|
@@ -456,6 +484,19 @@ export interface Omics {
|
|
|
456
484
|
options: __HttpHandlerOptions,
|
|
457
485
|
cb: (err: any, data?: CancelRunCommandOutput) => void
|
|
458
486
|
): void;
|
|
487
|
+
cancelRunBatch(
|
|
488
|
+
args: CancelRunBatchCommandInput,
|
|
489
|
+
options?: __HttpHandlerOptions
|
|
490
|
+
): Promise<CancelRunBatchCommandOutput>;
|
|
491
|
+
cancelRunBatch(
|
|
492
|
+
args: CancelRunBatchCommandInput,
|
|
493
|
+
cb: (err: any, data?: CancelRunBatchCommandOutput) => void
|
|
494
|
+
): void;
|
|
495
|
+
cancelRunBatch(
|
|
496
|
+
args: CancelRunBatchCommandInput,
|
|
497
|
+
options: __HttpHandlerOptions,
|
|
498
|
+
cb: (err: any, data?: CancelRunBatchCommandOutput) => void
|
|
499
|
+
): void;
|
|
459
500
|
cancelVariantImportJob(
|
|
460
501
|
args: CancelVariantImportJobCommandInput,
|
|
461
502
|
options?: __HttpHandlerOptions
|
|
@@ -651,6 +692,19 @@ export interface Omics {
|
|
|
651
692
|
options: __HttpHandlerOptions,
|
|
652
693
|
cb: (err: any, data?: DeleteAnnotationStoreVersionsCommandOutput) => void
|
|
653
694
|
): void;
|
|
695
|
+
deleteBatch(
|
|
696
|
+
args: DeleteBatchCommandInput,
|
|
697
|
+
options?: __HttpHandlerOptions
|
|
698
|
+
): Promise<DeleteBatchCommandOutput>;
|
|
699
|
+
deleteBatch(
|
|
700
|
+
args: DeleteBatchCommandInput,
|
|
701
|
+
cb: (err: any, data?: DeleteBatchCommandOutput) => void
|
|
702
|
+
): void;
|
|
703
|
+
deleteBatch(
|
|
704
|
+
args: DeleteBatchCommandInput,
|
|
705
|
+
options: __HttpHandlerOptions,
|
|
706
|
+
cb: (err: any, data?: DeleteBatchCommandOutput) => void
|
|
707
|
+
): void;
|
|
654
708
|
deleteReference(
|
|
655
709
|
args: DeleteReferenceCommandInput,
|
|
656
710
|
options?: __HttpHandlerOptions
|
|
@@ -690,6 +744,19 @@ export interface Omics {
|
|
|
690
744
|
options: __HttpHandlerOptions,
|
|
691
745
|
cb: (err: any, data?: DeleteRunCommandOutput) => void
|
|
692
746
|
): void;
|
|
747
|
+
deleteRunBatch(
|
|
748
|
+
args: DeleteRunBatchCommandInput,
|
|
749
|
+
options?: __HttpHandlerOptions
|
|
750
|
+
): Promise<DeleteRunBatchCommandOutput>;
|
|
751
|
+
deleteRunBatch(
|
|
752
|
+
args: DeleteRunBatchCommandInput,
|
|
753
|
+
cb: (err: any, data?: DeleteRunBatchCommandOutput) => void
|
|
754
|
+
): void;
|
|
755
|
+
deleteRunBatch(
|
|
756
|
+
args: DeleteRunBatchCommandInput,
|
|
757
|
+
options: __HttpHandlerOptions,
|
|
758
|
+
cb: (err: any, data?: DeleteRunBatchCommandOutput) => void
|
|
759
|
+
): void;
|
|
693
760
|
deleteRunCache(
|
|
694
761
|
args: DeleteRunCacheCommandInput,
|
|
695
762
|
options?: __HttpHandlerOptions
|
|
@@ -833,6 +900,19 @@ export interface Omics {
|
|
|
833
900
|
options: __HttpHandlerOptions,
|
|
834
901
|
cb: (err: any, data?: GetAnnotationStoreVersionCommandOutput) => void
|
|
835
902
|
): void;
|
|
903
|
+
getBatch(
|
|
904
|
+
args: GetBatchCommandInput,
|
|
905
|
+
options?: __HttpHandlerOptions
|
|
906
|
+
): Promise<GetBatchCommandOutput>;
|
|
907
|
+
getBatch(
|
|
908
|
+
args: GetBatchCommandInput,
|
|
909
|
+
cb: (err: any, data?: GetBatchCommandOutput) => void
|
|
910
|
+
): void;
|
|
911
|
+
getBatch(
|
|
912
|
+
args: GetBatchCommandInput,
|
|
913
|
+
options: __HttpHandlerOptions,
|
|
914
|
+
cb: (err: any, data?: GetBatchCommandOutput) => void
|
|
915
|
+
): void;
|
|
836
916
|
getReadSet(
|
|
837
917
|
args: GetReadSetCommandInput,
|
|
838
918
|
options?: __HttpHandlerOptions
|
|
@@ -1134,6 +1214,20 @@ export interface Omics {
|
|
|
1134
1214
|
options: __HttpHandlerOptions,
|
|
1135
1215
|
cb: (err: any, data?: ListAnnotationStoreVersionsCommandOutput) => void
|
|
1136
1216
|
): void;
|
|
1217
|
+
listBatch(): Promise<ListBatchCommandOutput>;
|
|
1218
|
+
listBatch(
|
|
1219
|
+
args: ListBatchCommandInput,
|
|
1220
|
+
options?: __HttpHandlerOptions
|
|
1221
|
+
): Promise<ListBatchCommandOutput>;
|
|
1222
|
+
listBatch(
|
|
1223
|
+
args: ListBatchCommandInput,
|
|
1224
|
+
cb: (err: any, data?: ListBatchCommandOutput) => void
|
|
1225
|
+
): void;
|
|
1226
|
+
listBatch(
|
|
1227
|
+
args: ListBatchCommandInput,
|
|
1228
|
+
options: __HttpHandlerOptions,
|
|
1229
|
+
cb: (err: any, data?: ListBatchCommandOutput) => void
|
|
1230
|
+
): void;
|
|
1137
1231
|
listMultipartReadSetUploads(
|
|
1138
1232
|
args: ListMultipartReadSetUploadsCommandInput,
|
|
1139
1233
|
options?: __HttpHandlerOptions
|
|
@@ -1294,6 +1388,19 @@ export interface Omics {
|
|
|
1294
1388
|
options: __HttpHandlerOptions,
|
|
1295
1389
|
cb: (err: any, data?: ListRunsCommandOutput) => void
|
|
1296
1390
|
): void;
|
|
1391
|
+
listRunsInBatch(
|
|
1392
|
+
args: ListRunsInBatchCommandInput,
|
|
1393
|
+
options?: __HttpHandlerOptions
|
|
1394
|
+
): Promise<ListRunsInBatchCommandOutput>;
|
|
1395
|
+
listRunsInBatch(
|
|
1396
|
+
args: ListRunsInBatchCommandInput,
|
|
1397
|
+
cb: (err: any, data?: ListRunsInBatchCommandOutput) => void
|
|
1398
|
+
): void;
|
|
1399
|
+
listRunsInBatch(
|
|
1400
|
+
args: ListRunsInBatchCommandInput,
|
|
1401
|
+
options: __HttpHandlerOptions,
|
|
1402
|
+
cb: (err: any, data?: ListRunsInBatchCommandOutput) => void
|
|
1403
|
+
): void;
|
|
1297
1404
|
listRunTasks(
|
|
1298
1405
|
args: ListRunTasksCommandInput,
|
|
1299
1406
|
options?: __HttpHandlerOptions
|
|
@@ -1493,6 +1600,19 @@ export interface Omics {
|
|
|
1493
1600
|
options: __HttpHandlerOptions,
|
|
1494
1601
|
cb: (err: any, data?: StartRunCommandOutput) => void
|
|
1495
1602
|
): void;
|
|
1603
|
+
startRunBatch(
|
|
1604
|
+
args: StartRunBatchCommandInput,
|
|
1605
|
+
options?: __HttpHandlerOptions
|
|
1606
|
+
): Promise<StartRunBatchCommandOutput>;
|
|
1607
|
+
startRunBatch(
|
|
1608
|
+
args: StartRunBatchCommandInput,
|
|
1609
|
+
cb: (err: any, data?: StartRunBatchCommandOutput) => void
|
|
1610
|
+
): void;
|
|
1611
|
+
startRunBatch(
|
|
1612
|
+
args: StartRunBatchCommandInput,
|
|
1613
|
+
options: __HttpHandlerOptions,
|
|
1614
|
+
cb: (err: any, data?: StartRunBatchCommandOutput) => void
|
|
1615
|
+
): void;
|
|
1496
1616
|
startVariantImportJob(
|
|
1497
1617
|
args: StartVariantImportJobCommandInput,
|
|
1498
1618
|
options?: __HttpHandlerOptions
|
|
@@ -1670,6 +1790,13 @@ export interface Omics {
|
|
|
1670
1790
|
Exclude<keyof PaginationConfiguration, "client">
|
|
1671
1791
|
>
|
|
1672
1792
|
): Paginator<ListAnnotationStoreVersionsCommandOutput>;
|
|
1793
|
+
paginateListBatch(
|
|
1794
|
+
args?: ListBatchCommandInput,
|
|
1795
|
+
paginationConfig?: Pick<
|
|
1796
|
+
PaginationConfiguration,
|
|
1797
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1798
|
+
>
|
|
1799
|
+
): Paginator<ListBatchCommandOutput>;
|
|
1673
1800
|
paginateListMultipartReadSetUploads(
|
|
1674
1801
|
args: ListMultipartReadSetUploadsCommandInput,
|
|
1675
1802
|
paginationConfig?: Pick<
|
|
@@ -1754,6 +1881,13 @@ export interface Omics {
|
|
|
1754
1881
|
Exclude<keyof PaginationConfiguration, "client">
|
|
1755
1882
|
>
|
|
1756
1883
|
): Paginator<ListRunsCommandOutput>;
|
|
1884
|
+
paginateListRunsInBatch(
|
|
1885
|
+
args: ListRunsInBatchCommandInput,
|
|
1886
|
+
paginationConfig?: Pick<
|
|
1887
|
+
PaginationConfiguration,
|
|
1888
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1889
|
+
>
|
|
1890
|
+
): Paginator<ListRunsInBatchCommandOutput>;
|
|
1757
1891
|
paginateListRunTasks(
|
|
1758
1892
|
args: ListRunTasksCommandInput,
|
|
1759
1893
|
paginationConfig?: Pick<
|
|
@@ -62,6 +62,10 @@ import {
|
|
|
62
62
|
CancelAnnotationImportJobCommandInput,
|
|
63
63
|
CancelAnnotationImportJobCommandOutput,
|
|
64
64
|
} from "./commands/CancelAnnotationImportJobCommand";
|
|
65
|
+
import {
|
|
66
|
+
CancelRunBatchCommandInput,
|
|
67
|
+
CancelRunBatchCommandOutput,
|
|
68
|
+
} from "./commands/CancelRunBatchCommand";
|
|
65
69
|
import {
|
|
66
70
|
CancelRunCommandInput,
|
|
67
71
|
CancelRunCommandOutput,
|
|
@@ -126,6 +130,10 @@ import {
|
|
|
126
130
|
DeleteAnnotationStoreVersionsCommandInput,
|
|
127
131
|
DeleteAnnotationStoreVersionsCommandOutput,
|
|
128
132
|
} from "./commands/DeleteAnnotationStoreVersionsCommand";
|
|
133
|
+
import {
|
|
134
|
+
DeleteBatchCommandInput,
|
|
135
|
+
DeleteBatchCommandOutput,
|
|
136
|
+
} from "./commands/DeleteBatchCommand";
|
|
129
137
|
import {
|
|
130
138
|
DeleteReferenceCommandInput,
|
|
131
139
|
DeleteReferenceCommandOutput,
|
|
@@ -134,6 +142,10 @@ import {
|
|
|
134
142
|
DeleteReferenceStoreCommandInput,
|
|
135
143
|
DeleteReferenceStoreCommandOutput,
|
|
136
144
|
} from "./commands/DeleteReferenceStoreCommand";
|
|
145
|
+
import {
|
|
146
|
+
DeleteRunBatchCommandInput,
|
|
147
|
+
DeleteRunBatchCommandOutput,
|
|
148
|
+
} from "./commands/DeleteRunBatchCommand";
|
|
137
149
|
import {
|
|
138
150
|
DeleteRunCacheCommandInput,
|
|
139
151
|
DeleteRunCacheCommandOutput,
|
|
@@ -182,6 +194,10 @@ import {
|
|
|
182
194
|
GetAnnotationStoreVersionCommandInput,
|
|
183
195
|
GetAnnotationStoreVersionCommandOutput,
|
|
184
196
|
} from "./commands/GetAnnotationStoreVersionCommand";
|
|
197
|
+
import {
|
|
198
|
+
GetBatchCommandInput,
|
|
199
|
+
GetBatchCommandOutput,
|
|
200
|
+
} from "./commands/GetBatchCommand";
|
|
185
201
|
import {
|
|
186
202
|
GetReadSetActivationJobCommandInput,
|
|
187
203
|
GetReadSetActivationJobCommandOutput,
|
|
@@ -274,6 +290,10 @@ import {
|
|
|
274
290
|
ListAnnotationStoreVersionsCommandInput,
|
|
275
291
|
ListAnnotationStoreVersionsCommandOutput,
|
|
276
292
|
} from "./commands/ListAnnotationStoreVersionsCommand";
|
|
293
|
+
import {
|
|
294
|
+
ListBatchCommandInput,
|
|
295
|
+
ListBatchCommandOutput,
|
|
296
|
+
} from "./commands/ListBatchCommand";
|
|
277
297
|
import {
|
|
278
298
|
ListMultipartReadSetUploadsCommandInput,
|
|
279
299
|
ListMultipartReadSetUploadsCommandOutput,
|
|
@@ -322,6 +342,10 @@ import {
|
|
|
322
342
|
ListRunsCommandInput,
|
|
323
343
|
ListRunsCommandOutput,
|
|
324
344
|
} from "./commands/ListRunsCommand";
|
|
345
|
+
import {
|
|
346
|
+
ListRunsInBatchCommandInput,
|
|
347
|
+
ListRunsInBatchCommandOutput,
|
|
348
|
+
} from "./commands/ListRunsInBatchCommand";
|
|
325
349
|
import {
|
|
326
350
|
ListRunTasksCommandInput,
|
|
327
351
|
ListRunTasksCommandOutput,
|
|
@@ -378,6 +402,10 @@ import {
|
|
|
378
402
|
StartReferenceImportJobCommandInput,
|
|
379
403
|
StartReferenceImportJobCommandOutput,
|
|
380
404
|
} from "./commands/StartReferenceImportJobCommand";
|
|
405
|
+
import {
|
|
406
|
+
StartRunBatchCommandInput,
|
|
407
|
+
StartRunBatchCommandOutput,
|
|
408
|
+
} from "./commands/StartRunBatchCommand";
|
|
381
409
|
import {
|
|
382
410
|
StartRunCommandInput,
|
|
383
411
|
StartRunCommandOutput,
|
|
@@ -442,6 +470,7 @@ export type ServiceInputTypes =
|
|
|
442
470
|
| AcceptShareCommandInput
|
|
443
471
|
| BatchDeleteReadSetCommandInput
|
|
444
472
|
| CancelAnnotationImportJobCommandInput
|
|
473
|
+
| CancelRunBatchCommandInput
|
|
445
474
|
| CancelRunCommandInput
|
|
446
475
|
| CancelVariantImportJobCommandInput
|
|
447
476
|
| CompleteMultipartReadSetUploadCommandInput
|
|
@@ -458,8 +487,10 @@ export type ServiceInputTypes =
|
|
|
458
487
|
| CreateWorkflowVersionCommandInput
|
|
459
488
|
| DeleteAnnotationStoreCommandInput
|
|
460
489
|
| DeleteAnnotationStoreVersionsCommandInput
|
|
490
|
+
| DeleteBatchCommandInput
|
|
461
491
|
| DeleteReferenceCommandInput
|
|
462
492
|
| DeleteReferenceStoreCommandInput
|
|
493
|
+
| DeleteRunBatchCommandInput
|
|
463
494
|
| DeleteRunCacheCommandInput
|
|
464
495
|
| DeleteRunCommandInput
|
|
465
496
|
| DeleteRunGroupCommandInput
|
|
@@ -472,6 +503,7 @@ export type ServiceInputTypes =
|
|
|
472
503
|
| GetAnnotationImportJobCommandInput
|
|
473
504
|
| GetAnnotationStoreCommandInput
|
|
474
505
|
| GetAnnotationStoreVersionCommandInput
|
|
506
|
+
| GetBatchCommandInput
|
|
475
507
|
| GetReadSetActivationJobCommandInput
|
|
476
508
|
| GetReadSetCommandInput
|
|
477
509
|
| GetReadSetExportJobCommandInput
|
|
@@ -495,6 +527,7 @@ export type ServiceInputTypes =
|
|
|
495
527
|
| ListAnnotationImportJobsCommandInput
|
|
496
528
|
| ListAnnotationStoreVersionsCommandInput
|
|
497
529
|
| ListAnnotationStoresCommandInput
|
|
530
|
+
| ListBatchCommandInput
|
|
498
531
|
| ListMultipartReadSetUploadsCommandInput
|
|
499
532
|
| ListReadSetActivationJobsCommandInput
|
|
500
533
|
| ListReadSetExportJobsCommandInput
|
|
@@ -508,6 +541,7 @@ export type ServiceInputTypes =
|
|
|
508
541
|
| ListRunGroupsCommandInput
|
|
509
542
|
| ListRunTasksCommandInput
|
|
510
543
|
| ListRunsCommandInput
|
|
544
|
+
| ListRunsInBatchCommandInput
|
|
511
545
|
| ListSequenceStoresCommandInput
|
|
512
546
|
| ListSharesCommandInput
|
|
513
547
|
| ListTagsForResourceCommandInput
|
|
@@ -521,6 +555,7 @@ export type ServiceInputTypes =
|
|
|
521
555
|
| StartReadSetExportJobCommandInput
|
|
522
556
|
| StartReadSetImportJobCommandInput
|
|
523
557
|
| StartReferenceImportJobCommandInput
|
|
558
|
+
| StartRunBatchCommandInput
|
|
524
559
|
| StartRunCommandInput
|
|
525
560
|
| StartVariantImportJobCommandInput
|
|
526
561
|
| TagResourceCommandInput
|
|
@@ -539,6 +574,7 @@ export type ServiceOutputTypes =
|
|
|
539
574
|
| AcceptShareCommandOutput
|
|
540
575
|
| BatchDeleteReadSetCommandOutput
|
|
541
576
|
| CancelAnnotationImportJobCommandOutput
|
|
577
|
+
| CancelRunBatchCommandOutput
|
|
542
578
|
| CancelRunCommandOutput
|
|
543
579
|
| CancelVariantImportJobCommandOutput
|
|
544
580
|
| CompleteMultipartReadSetUploadCommandOutput
|
|
@@ -555,8 +591,10 @@ export type ServiceOutputTypes =
|
|
|
555
591
|
| CreateWorkflowVersionCommandOutput
|
|
556
592
|
| DeleteAnnotationStoreCommandOutput
|
|
557
593
|
| DeleteAnnotationStoreVersionsCommandOutput
|
|
594
|
+
| DeleteBatchCommandOutput
|
|
558
595
|
| DeleteReferenceCommandOutput
|
|
559
596
|
| DeleteReferenceStoreCommandOutput
|
|
597
|
+
| DeleteRunBatchCommandOutput
|
|
560
598
|
| DeleteRunCacheCommandOutput
|
|
561
599
|
| DeleteRunCommandOutput
|
|
562
600
|
| DeleteRunGroupCommandOutput
|
|
@@ -569,6 +607,7 @@ export type ServiceOutputTypes =
|
|
|
569
607
|
| GetAnnotationImportJobCommandOutput
|
|
570
608
|
| GetAnnotationStoreCommandOutput
|
|
571
609
|
| GetAnnotationStoreVersionCommandOutput
|
|
610
|
+
| GetBatchCommandOutput
|
|
572
611
|
| GetReadSetActivationJobCommandOutput
|
|
573
612
|
| GetReadSetCommandOutput
|
|
574
613
|
| GetReadSetExportJobCommandOutput
|
|
@@ -592,6 +631,7 @@ export type ServiceOutputTypes =
|
|
|
592
631
|
| ListAnnotationImportJobsCommandOutput
|
|
593
632
|
| ListAnnotationStoreVersionsCommandOutput
|
|
594
633
|
| ListAnnotationStoresCommandOutput
|
|
634
|
+
| ListBatchCommandOutput
|
|
595
635
|
| ListMultipartReadSetUploadsCommandOutput
|
|
596
636
|
| ListReadSetActivationJobsCommandOutput
|
|
597
637
|
| ListReadSetExportJobsCommandOutput
|
|
@@ -605,6 +645,7 @@ export type ServiceOutputTypes =
|
|
|
605
645
|
| ListRunGroupsCommandOutput
|
|
606
646
|
| ListRunTasksCommandOutput
|
|
607
647
|
| ListRunsCommandOutput
|
|
648
|
+
| ListRunsInBatchCommandOutput
|
|
608
649
|
| ListSequenceStoresCommandOutput
|
|
609
650
|
| ListSharesCommandOutput
|
|
610
651
|
| ListTagsForResourceCommandOutput
|
|
@@ -618,6 +659,7 @@ export type ServiceOutputTypes =
|
|
|
618
659
|
| StartReadSetExportJobCommandOutput
|
|
619
660
|
| StartReadSetImportJobCommandOutput
|
|
620
661
|
| StartReferenceImportJobCommandOutput
|
|
662
|
+
| StartRunBatchCommandOutput
|
|
621
663
|
| StartRunCommandOutput
|
|
622
664
|
| StartVariantImportJobCommandOutput
|
|
623
665
|
| TagResourceCommandOutput
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CancelRunBatchRequest,
|
|
5
|
+
CancelRunBatchResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
OmicsClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../OmicsClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CancelRunBatchCommandInput extends CancelRunBatchRequest {}
|
|
15
|
+
export interface CancelRunBatchCommandOutput
|
|
16
|
+
extends CancelRunBatchResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const CancelRunBatchCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: CancelRunBatchCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
CancelRunBatchCommandInput,
|
|
23
|
+
CancelRunBatchCommandOutput,
|
|
24
|
+
OmicsClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: CancelRunBatchCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
CancelRunBatchCommandInput,
|
|
32
|
+
CancelRunBatchCommandOutput,
|
|
33
|
+
OmicsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class CancelRunBatchCommand extends CancelRunBatchCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: CancelRunBatchRequest;
|
|
43
|
+
output: {};
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: CancelRunBatchCommandInput;
|
|
47
|
+
output: CancelRunBatchCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|