@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
package/README.md
CHANGED
|
@@ -22,16 +22,16 @@ To install this package, use the CLI of your favorite package manager:
|
|
|
22
22
|
|
|
23
23
|
The AWS SDK is modulized by clients and commands.
|
|
24
24
|
To send a request, you only need to import the `OmicsClient` and
|
|
25
|
-
the commands you need, for example `
|
|
25
|
+
the commands you need, for example `ListBatchCommand`:
|
|
26
26
|
|
|
27
27
|
```js
|
|
28
28
|
// ES5 example
|
|
29
|
-
const { OmicsClient,
|
|
29
|
+
const { OmicsClient, ListBatchCommand } = require("@aws-sdk/client-omics");
|
|
30
30
|
```
|
|
31
31
|
|
|
32
32
|
```ts
|
|
33
33
|
// ES6+ example
|
|
34
|
-
import { OmicsClient,
|
|
34
|
+
import { OmicsClient, ListBatchCommand } from "@aws-sdk/client-omics";
|
|
35
35
|
```
|
|
36
36
|
|
|
37
37
|
### Usage
|
|
@@ -48,7 +48,7 @@ To send a request:
|
|
|
48
48
|
const client = new OmicsClient({ region: "REGION" });
|
|
49
49
|
|
|
50
50
|
const params = { /** input parameters */ };
|
|
51
|
-
const command = new
|
|
51
|
+
const command = new ListBatchCommand(params);
|
|
52
52
|
```
|
|
53
53
|
|
|
54
54
|
#### Async/await
|
|
@@ -104,7 +104,7 @@ const client = new Omics({ region: "REGION" });
|
|
|
104
104
|
|
|
105
105
|
// async/await.
|
|
106
106
|
try {
|
|
107
|
-
const data = await client.
|
|
107
|
+
const data = await client.listBatch(params);
|
|
108
108
|
// process data.
|
|
109
109
|
} catch (error) {
|
|
110
110
|
// error handling.
|
|
@@ -112,7 +112,7 @@ try {
|
|
|
112
112
|
|
|
113
113
|
// Promises.
|
|
114
114
|
client
|
|
115
|
-
.
|
|
115
|
+
.listBatch(params)
|
|
116
116
|
.then((data) => {
|
|
117
117
|
// process data.
|
|
118
118
|
})
|
|
@@ -121,7 +121,7 @@ client
|
|
|
121
121
|
});
|
|
122
122
|
|
|
123
123
|
// callbacks (not recommended).
|
|
124
|
-
client.
|
|
124
|
+
client.listBatch(params, (err, data) => {
|
|
125
125
|
// process err and data.
|
|
126
126
|
});
|
|
127
127
|
```
|
|
@@ -216,6 +216,13 @@ CancelRun
|
|
|
216
216
|
</details>
|
|
217
217
|
<details>
|
|
218
218
|
<summary>
|
|
219
|
+
CancelRunBatch
|
|
220
|
+
</summary>
|
|
221
|
+
|
|
222
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/omics/command/CancelRunBatchCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-omics/Interface/CancelRunBatchCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-omics/Interface/CancelRunBatchCommandOutput/)
|
|
223
|
+
</details>
|
|
224
|
+
<details>
|
|
225
|
+
<summary>
|
|
219
226
|
CancelVariantImportJob
|
|
220
227
|
</summary>
|
|
221
228
|
|
|
@@ -321,6 +328,13 @@ DeleteAnnotationStoreVersions
|
|
|
321
328
|
</details>
|
|
322
329
|
<details>
|
|
323
330
|
<summary>
|
|
331
|
+
DeleteBatch
|
|
332
|
+
</summary>
|
|
333
|
+
|
|
334
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/omics/command/DeleteBatchCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-omics/Interface/DeleteBatchCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-omics/Interface/DeleteBatchCommandOutput/)
|
|
335
|
+
</details>
|
|
336
|
+
<details>
|
|
337
|
+
<summary>
|
|
324
338
|
DeleteReference
|
|
325
339
|
</summary>
|
|
326
340
|
|
|
@@ -342,6 +356,13 @@ DeleteRun
|
|
|
342
356
|
</details>
|
|
343
357
|
<details>
|
|
344
358
|
<summary>
|
|
359
|
+
DeleteRunBatch
|
|
360
|
+
</summary>
|
|
361
|
+
|
|
362
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/omics/command/DeleteRunBatchCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-omics/Interface/DeleteRunBatchCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-omics/Interface/DeleteRunBatchCommandOutput/)
|
|
363
|
+
</details>
|
|
364
|
+
<details>
|
|
365
|
+
<summary>
|
|
345
366
|
DeleteRunCache
|
|
346
367
|
</summary>
|
|
347
368
|
|
|
@@ -419,6 +440,13 @@ GetAnnotationStoreVersion
|
|
|
419
440
|
</details>
|
|
420
441
|
<details>
|
|
421
442
|
<summary>
|
|
443
|
+
GetBatch
|
|
444
|
+
</summary>
|
|
445
|
+
|
|
446
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/omics/command/GetBatchCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-omics/Interface/GetBatchCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-omics/Interface/GetBatchCommandOutput/)
|
|
447
|
+
</details>
|
|
448
|
+
<details>
|
|
449
|
+
<summary>
|
|
422
450
|
GetReadSet
|
|
423
451
|
</summary>
|
|
424
452
|
|
|
@@ -580,6 +608,13 @@ ListAnnotationStoreVersions
|
|
|
580
608
|
</details>
|
|
581
609
|
<details>
|
|
582
610
|
<summary>
|
|
611
|
+
ListBatch
|
|
612
|
+
</summary>
|
|
613
|
+
|
|
614
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/omics/command/ListBatchCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-omics/Interface/ListBatchCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-omics/Interface/ListBatchCommandOutput/)
|
|
615
|
+
</details>
|
|
616
|
+
<details>
|
|
617
|
+
<summary>
|
|
583
618
|
ListMultipartReadSetUploads
|
|
584
619
|
</summary>
|
|
585
620
|
|
|
@@ -664,6 +699,13 @@ ListRuns
|
|
|
664
699
|
</details>
|
|
665
700
|
<details>
|
|
666
701
|
<summary>
|
|
702
|
+
ListRunsInBatch
|
|
703
|
+
</summary>
|
|
704
|
+
|
|
705
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/omics/command/ListRunsInBatchCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-omics/Interface/ListRunsInBatchCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-omics/Interface/ListRunsInBatchCommandOutput/)
|
|
706
|
+
</details>
|
|
707
|
+
<details>
|
|
708
|
+
<summary>
|
|
667
709
|
ListRunTasks
|
|
668
710
|
</summary>
|
|
669
711
|
|
|
@@ -769,6 +811,13 @@ StartRun
|
|
|
769
811
|
</details>
|
|
770
812
|
<details>
|
|
771
813
|
<summary>
|
|
814
|
+
StartRunBatch
|
|
815
|
+
</summary>
|
|
816
|
+
|
|
817
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/omics/command/StartRunBatchCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-omics/Interface/StartRunBatchCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-omics/Interface/StartRunBatchCommandOutput/)
|
|
818
|
+
</details>
|
|
819
|
+
<details>
|
|
820
|
+
<summary>
|
|
772
821
|
StartVariantImportJob
|
|
773
822
|
</summary>
|
|
774
823
|
|
package/dist-cjs/index.js
CHANGED
|
@@ -162,6 +162,18 @@ class CancelAnnotationImportJobCommand extends smithyClient.Command
|
|
|
162
162
|
.build() {
|
|
163
163
|
}
|
|
164
164
|
|
|
165
|
+
class CancelRunBatchCommand extends smithyClient.Command
|
|
166
|
+
.classBuilder()
|
|
167
|
+
.ep(commonParams)
|
|
168
|
+
.m(function (Command, cs, config, o) {
|
|
169
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
170
|
+
})
|
|
171
|
+
.s("Omics", "CancelRunBatch", {})
|
|
172
|
+
.n("OmicsClient", "CancelRunBatchCommand")
|
|
173
|
+
.sc(schemas_0.CancelRunBatch$)
|
|
174
|
+
.build() {
|
|
175
|
+
}
|
|
176
|
+
|
|
165
177
|
class CancelRunCommand extends smithyClient.Command
|
|
166
178
|
.classBuilder()
|
|
167
179
|
.ep(commonParams)
|
|
@@ -354,6 +366,18 @@ class DeleteAnnotationStoreVersionsCommand extends smithyClient.Command
|
|
|
354
366
|
.build() {
|
|
355
367
|
}
|
|
356
368
|
|
|
369
|
+
class DeleteBatchCommand extends smithyClient.Command
|
|
370
|
+
.classBuilder()
|
|
371
|
+
.ep(commonParams)
|
|
372
|
+
.m(function (Command, cs, config, o) {
|
|
373
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
374
|
+
})
|
|
375
|
+
.s("Omics", "DeleteBatch", {})
|
|
376
|
+
.n("OmicsClient", "DeleteBatchCommand")
|
|
377
|
+
.sc(schemas_0.DeleteBatch$)
|
|
378
|
+
.build() {
|
|
379
|
+
}
|
|
380
|
+
|
|
357
381
|
class DeleteReferenceCommand extends smithyClient.Command
|
|
358
382
|
.classBuilder()
|
|
359
383
|
.ep(commonParams)
|
|
@@ -378,6 +402,18 @@ class DeleteReferenceStoreCommand extends smithyClient.Command
|
|
|
378
402
|
.build() {
|
|
379
403
|
}
|
|
380
404
|
|
|
405
|
+
class DeleteRunBatchCommand extends smithyClient.Command
|
|
406
|
+
.classBuilder()
|
|
407
|
+
.ep(commonParams)
|
|
408
|
+
.m(function (Command, cs, config, o) {
|
|
409
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
410
|
+
})
|
|
411
|
+
.s("Omics", "DeleteRunBatch", {})
|
|
412
|
+
.n("OmicsClient", "DeleteRunBatchCommand")
|
|
413
|
+
.sc(schemas_0.DeleteRunBatch$)
|
|
414
|
+
.build() {
|
|
415
|
+
}
|
|
416
|
+
|
|
381
417
|
class DeleteRunCacheCommand extends smithyClient.Command
|
|
382
418
|
.classBuilder()
|
|
383
419
|
.ep(commonParams)
|
|
@@ -522,6 +558,18 @@ class GetAnnotationStoreVersionCommand extends smithyClient.Command
|
|
|
522
558
|
.build() {
|
|
523
559
|
}
|
|
524
560
|
|
|
561
|
+
class GetBatchCommand extends smithyClient.Command
|
|
562
|
+
.classBuilder()
|
|
563
|
+
.ep(commonParams)
|
|
564
|
+
.m(function (Command, cs, config, o) {
|
|
565
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
566
|
+
})
|
|
567
|
+
.s("Omics", "GetBatch", {})
|
|
568
|
+
.n("OmicsClient", "GetBatchCommand")
|
|
569
|
+
.sc(schemas_0.GetBatch$)
|
|
570
|
+
.build() {
|
|
571
|
+
}
|
|
572
|
+
|
|
525
573
|
class GetReadSetActivationJobCommand extends smithyClient.Command
|
|
526
574
|
.classBuilder()
|
|
527
575
|
.ep(commonParams)
|
|
@@ -798,6 +846,18 @@ class ListAnnotationStoreVersionsCommand extends smithyClient.Command
|
|
|
798
846
|
.build() {
|
|
799
847
|
}
|
|
800
848
|
|
|
849
|
+
class ListBatchCommand extends smithyClient.Command
|
|
850
|
+
.classBuilder()
|
|
851
|
+
.ep(commonParams)
|
|
852
|
+
.m(function (Command, cs, config, o) {
|
|
853
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
854
|
+
})
|
|
855
|
+
.s("Omics", "ListBatch", {})
|
|
856
|
+
.n("OmicsClient", "ListBatchCommand")
|
|
857
|
+
.sc(schemas_0.ListBatch$)
|
|
858
|
+
.build() {
|
|
859
|
+
}
|
|
860
|
+
|
|
801
861
|
class ListMultipartReadSetUploadsCommand extends smithyClient.Command
|
|
802
862
|
.classBuilder()
|
|
803
863
|
.ep(commonParams)
|
|
@@ -942,6 +1002,18 @@ class ListRunsCommand extends smithyClient.Command
|
|
|
942
1002
|
.build() {
|
|
943
1003
|
}
|
|
944
1004
|
|
|
1005
|
+
class ListRunsInBatchCommand extends smithyClient.Command
|
|
1006
|
+
.classBuilder()
|
|
1007
|
+
.ep(commonParams)
|
|
1008
|
+
.m(function (Command, cs, config, o) {
|
|
1009
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1010
|
+
})
|
|
1011
|
+
.s("Omics", "ListRunsInBatch", {})
|
|
1012
|
+
.n("OmicsClient", "ListRunsInBatchCommand")
|
|
1013
|
+
.sc(schemas_0.ListRunsInBatch$)
|
|
1014
|
+
.build() {
|
|
1015
|
+
}
|
|
1016
|
+
|
|
945
1017
|
class ListRunTasksCommand extends smithyClient.Command
|
|
946
1018
|
.classBuilder()
|
|
947
1019
|
.ep(commonParams)
|
|
@@ -1110,6 +1182,18 @@ class StartReferenceImportJobCommand extends smithyClient.Command
|
|
|
1110
1182
|
.build() {
|
|
1111
1183
|
}
|
|
1112
1184
|
|
|
1185
|
+
class StartRunBatchCommand extends smithyClient.Command
|
|
1186
|
+
.classBuilder()
|
|
1187
|
+
.ep(commonParams)
|
|
1188
|
+
.m(function (Command, cs, config, o) {
|
|
1189
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1190
|
+
})
|
|
1191
|
+
.s("Omics", "StartRunBatch", {})
|
|
1192
|
+
.n("OmicsClient", "StartRunBatchCommand")
|
|
1193
|
+
.sc(schemas_0.StartRunBatch$)
|
|
1194
|
+
.build() {
|
|
1195
|
+
}
|
|
1196
|
+
|
|
1113
1197
|
class StartRunCommand extends smithyClient.Command
|
|
1114
1198
|
.classBuilder()
|
|
1115
1199
|
.ep(commonParams)
|
|
@@ -1272,6 +1356,8 @@ const paginateListAnnotationStores = core.createPaginator(OmicsClient, ListAnnot
|
|
|
1272
1356
|
|
|
1273
1357
|
const paginateListAnnotationStoreVersions = core.createPaginator(OmicsClient, ListAnnotationStoreVersionsCommand, "nextToken", "nextToken", "maxResults");
|
|
1274
1358
|
|
|
1359
|
+
const paginateListBatch = core.createPaginator(OmicsClient, ListBatchCommand, "startingToken", "nextToken", "maxItems");
|
|
1360
|
+
|
|
1275
1361
|
const paginateListMultipartReadSetUploads = core.createPaginator(OmicsClient, ListMultipartReadSetUploadsCommand, "nextToken", "nextToken", "maxResults");
|
|
1276
1362
|
|
|
1277
1363
|
const paginateListReadSetActivationJobs = core.createPaginator(OmicsClient, ListReadSetActivationJobsCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -1294,6 +1380,8 @@ const paginateListRunCaches = core.createPaginator(OmicsClient, ListRunCachesCom
|
|
|
1294
1380
|
|
|
1295
1381
|
const paginateListRunGroups = core.createPaginator(OmicsClient, ListRunGroupsCommand, "startingToken", "nextToken", "maxResults");
|
|
1296
1382
|
|
|
1383
|
+
const paginateListRunsInBatch = core.createPaginator(OmicsClient, ListRunsInBatchCommand, "startingToken", "nextToken", "maxItems");
|
|
1384
|
+
|
|
1297
1385
|
const paginateListRuns = core.createPaginator(OmicsClient, ListRunsCommand, "startingToken", "nextToken", "maxResults");
|
|
1298
1386
|
|
|
1299
1387
|
const paginateListRunTasks = core.createPaginator(OmicsClient, ListRunTasksCommand, "startingToken", "nextToken", "maxResults");
|
|
@@ -2477,6 +2565,7 @@ const commands = {
|
|
|
2477
2565
|
BatchDeleteReadSetCommand,
|
|
2478
2566
|
CancelAnnotationImportJobCommand,
|
|
2479
2567
|
CancelRunCommand,
|
|
2568
|
+
CancelRunBatchCommand,
|
|
2480
2569
|
CancelVariantImportJobCommand,
|
|
2481
2570
|
CompleteMultipartReadSetUploadCommand,
|
|
2482
2571
|
CreateAnnotationStoreCommand,
|
|
@@ -2492,9 +2581,11 @@ const commands = {
|
|
|
2492
2581
|
CreateWorkflowVersionCommand,
|
|
2493
2582
|
DeleteAnnotationStoreCommand,
|
|
2494
2583
|
DeleteAnnotationStoreVersionsCommand,
|
|
2584
|
+
DeleteBatchCommand,
|
|
2495
2585
|
DeleteReferenceCommand,
|
|
2496
2586
|
DeleteReferenceStoreCommand,
|
|
2497
2587
|
DeleteRunCommand,
|
|
2588
|
+
DeleteRunBatchCommand,
|
|
2498
2589
|
DeleteRunCacheCommand,
|
|
2499
2590
|
DeleteRunGroupCommand,
|
|
2500
2591
|
DeleteS3AccessPolicyCommand,
|
|
@@ -2506,6 +2597,7 @@ const commands = {
|
|
|
2506
2597
|
GetAnnotationImportJobCommand,
|
|
2507
2598
|
GetAnnotationStoreCommand,
|
|
2508
2599
|
GetAnnotationStoreVersionCommand,
|
|
2600
|
+
GetBatchCommand,
|
|
2509
2601
|
GetReadSetCommand,
|
|
2510
2602
|
GetReadSetActivationJobCommand,
|
|
2511
2603
|
GetReadSetExportJobCommand,
|
|
@@ -2529,6 +2621,7 @@ const commands = {
|
|
|
2529
2621
|
ListAnnotationImportJobsCommand,
|
|
2530
2622
|
ListAnnotationStoresCommand,
|
|
2531
2623
|
ListAnnotationStoreVersionsCommand,
|
|
2624
|
+
ListBatchCommand,
|
|
2532
2625
|
ListMultipartReadSetUploadsCommand,
|
|
2533
2626
|
ListReadSetActivationJobsCommand,
|
|
2534
2627
|
ListReadSetExportJobsCommand,
|
|
@@ -2541,6 +2634,7 @@ const commands = {
|
|
|
2541
2634
|
ListRunCachesCommand,
|
|
2542
2635
|
ListRunGroupsCommand,
|
|
2543
2636
|
ListRunsCommand,
|
|
2637
|
+
ListRunsInBatchCommand,
|
|
2544
2638
|
ListRunTasksCommand,
|
|
2545
2639
|
ListSequenceStoresCommand,
|
|
2546
2640
|
ListSharesCommand,
|
|
@@ -2556,6 +2650,7 @@ const commands = {
|
|
|
2556
2650
|
StartReadSetImportJobCommand,
|
|
2557
2651
|
StartReferenceImportJobCommand,
|
|
2558
2652
|
StartRunCommand,
|
|
2653
|
+
StartRunBatchCommand,
|
|
2559
2654
|
StartVariantImportJobCommand,
|
|
2560
2655
|
TagResourceCommand,
|
|
2561
2656
|
UntagResourceCommand,
|
|
@@ -2573,6 +2668,7 @@ const paginators = {
|
|
|
2573
2668
|
paginateListAnnotationImportJobs,
|
|
2574
2669
|
paginateListAnnotationStores,
|
|
2575
2670
|
paginateListAnnotationStoreVersions,
|
|
2671
|
+
paginateListBatch,
|
|
2576
2672
|
paginateListMultipartReadSetUploads,
|
|
2577
2673
|
paginateListReadSetActivationJobs,
|
|
2578
2674
|
paginateListReadSetExportJobs,
|
|
@@ -2585,6 +2681,7 @@ const paginators = {
|
|
|
2585
2681
|
paginateListRunCaches,
|
|
2586
2682
|
paginateListRunGroups,
|
|
2587
2683
|
paginateListRuns,
|
|
2684
|
+
paginateListRunsInBatch,
|
|
2588
2685
|
paginateListRunTasks,
|
|
2589
2686
|
paginateListSequenceStores,
|
|
2590
2687
|
paginateListShares,
|
|
@@ -2698,6 +2795,17 @@ const VersionStatus = {
|
|
|
2698
2795
|
FAILED: "FAILED",
|
|
2699
2796
|
UPDATING: "UPDATING",
|
|
2700
2797
|
};
|
|
2798
|
+
const BatchStatus = {
|
|
2799
|
+
CANCELLED: "CANCELLED",
|
|
2800
|
+
FAILED: "FAILED",
|
|
2801
|
+
INPROGRESS: "INPROGRESS",
|
|
2802
|
+
PENDING: "PENDING",
|
|
2803
|
+
PROCESSED: "PROCESSED",
|
|
2804
|
+
RUNS_DELETED: "RUNS_DELETED",
|
|
2805
|
+
RUNS_DELETING: "RUNS_DELETING",
|
|
2806
|
+
STOPPING: "STOPPING",
|
|
2807
|
+
SUBMITTING: "SUBMITTING",
|
|
2808
|
+
};
|
|
2701
2809
|
const CacheBehavior = {
|
|
2702
2810
|
CACHE_ALWAYS: "CACHE_ALWAYS",
|
|
2703
2811
|
CACHE_ON_FAILURE: "CACHE_ON_FAILURE",
|
|
@@ -2756,6 +2864,20 @@ const CreationType = {
|
|
|
2756
2864
|
IMPORT: "IMPORT",
|
|
2757
2865
|
UPLOAD: "UPLOAD",
|
|
2758
2866
|
};
|
|
2867
|
+
const RunLogLevel = {
|
|
2868
|
+
ALL: "ALL",
|
|
2869
|
+
ERROR: "ERROR",
|
|
2870
|
+
FATAL: "FATAL",
|
|
2871
|
+
OFF: "OFF",
|
|
2872
|
+
};
|
|
2873
|
+
const RunRetentionMode = {
|
|
2874
|
+
REMOVE: "REMOVE",
|
|
2875
|
+
RETAIN: "RETAIN",
|
|
2876
|
+
};
|
|
2877
|
+
const WorkflowType = {
|
|
2878
|
+
PRIVATE: "PRIVATE",
|
|
2879
|
+
READY2RUN: "READY2RUN",
|
|
2880
|
+
};
|
|
2759
2881
|
const ETagAlgorithm = {
|
|
2760
2882
|
BAM_MD5UP: "BAM_MD5up",
|
|
2761
2883
|
BAM_SHA256UP: "BAM_SHA256up",
|
|
@@ -2846,16 +2968,6 @@ const ReferenceStatus = {
|
|
|
2846
2968
|
const RunExport = {
|
|
2847
2969
|
DEFINITION: "DEFINITION",
|
|
2848
2970
|
};
|
|
2849
|
-
const RunLogLevel = {
|
|
2850
|
-
ALL: "ALL",
|
|
2851
|
-
ERROR: "ERROR",
|
|
2852
|
-
FATAL: "FATAL",
|
|
2853
|
-
OFF: "OFF",
|
|
2854
|
-
};
|
|
2855
|
-
const RunRetentionMode = {
|
|
2856
|
-
REMOVE: "REMOVE",
|
|
2857
|
-
RETAIN: "RETAIN",
|
|
2858
|
-
};
|
|
2859
2971
|
const RunStatus = {
|
|
2860
2972
|
CANCELLED: "CANCELLED",
|
|
2861
2973
|
COMPLETED: "COMPLETED",
|
|
@@ -2866,10 +2978,6 @@ const RunStatus = {
|
|
|
2866
2978
|
STARTING: "STARTING",
|
|
2867
2979
|
STOPPING: "STOPPING",
|
|
2868
2980
|
};
|
|
2869
|
-
const WorkflowType = {
|
|
2870
|
-
PRIVATE: "PRIVATE",
|
|
2871
|
-
READY2RUN: "READY2RUN",
|
|
2872
|
-
};
|
|
2873
2981
|
const TaskStatus = {
|
|
2874
2982
|
CANCELLED: "CANCELLED",
|
|
2875
2983
|
COMPLETED: "COMPLETED",
|
|
@@ -2887,6 +2995,14 @@ const WorkflowExport = {
|
|
|
2887
2995
|
DEFINITION: "DEFINITION",
|
|
2888
2996
|
README: "README",
|
|
2889
2997
|
};
|
|
2998
|
+
const SubmissionStatus = {
|
|
2999
|
+
CANCEL_FAILED: "CANCEL_FAILED",
|
|
3000
|
+
CANCEL_SUCCESS: "CANCEL_SUCCESS",
|
|
3001
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
3002
|
+
DELETE_SUCCESS: "DELETE_SUCCESS",
|
|
3003
|
+
FAILED: "FAILED",
|
|
3004
|
+
SUCCESS: "SUCCESS",
|
|
3005
|
+
};
|
|
2890
3006
|
const ResourceOwner = {
|
|
2891
3007
|
OTHER: "OTHER",
|
|
2892
3008
|
SELF: "SELF",
|
|
@@ -2900,8 +3016,10 @@ exports.Accelerators = Accelerators;
|
|
|
2900
3016
|
exports.AcceptShareCommand = AcceptShareCommand;
|
|
2901
3017
|
exports.AnnotationType = AnnotationType;
|
|
2902
3018
|
exports.BatchDeleteReadSetCommand = BatchDeleteReadSetCommand;
|
|
3019
|
+
exports.BatchStatus = BatchStatus;
|
|
2903
3020
|
exports.CacheBehavior = CacheBehavior;
|
|
2904
3021
|
exports.CancelAnnotationImportJobCommand = CancelAnnotationImportJobCommand;
|
|
3022
|
+
exports.CancelRunBatchCommand = CancelRunBatchCommand;
|
|
2905
3023
|
exports.CancelRunCommand = CancelRunCommand;
|
|
2906
3024
|
exports.CancelVariantImportJobCommand = CancelVariantImportJobCommand;
|
|
2907
3025
|
exports.CompleteMultipartReadSetUploadCommand = CompleteMultipartReadSetUploadCommand;
|
|
@@ -2919,8 +3037,10 @@ exports.CreateWorkflowVersionCommand = CreateWorkflowVersionCommand;
|
|
|
2919
3037
|
exports.CreationType = CreationType;
|
|
2920
3038
|
exports.DeleteAnnotationStoreCommand = DeleteAnnotationStoreCommand;
|
|
2921
3039
|
exports.DeleteAnnotationStoreVersionsCommand = DeleteAnnotationStoreVersionsCommand;
|
|
3040
|
+
exports.DeleteBatchCommand = DeleteBatchCommand;
|
|
2922
3041
|
exports.DeleteReferenceCommand = DeleteReferenceCommand;
|
|
2923
3042
|
exports.DeleteReferenceStoreCommand = DeleteReferenceStoreCommand;
|
|
3043
|
+
exports.DeleteRunBatchCommand = DeleteRunBatchCommand;
|
|
2924
3044
|
exports.DeleteRunCacheCommand = DeleteRunCacheCommand;
|
|
2925
3045
|
exports.DeleteRunCommand = DeleteRunCommand;
|
|
2926
3046
|
exports.DeleteRunGroupCommand = DeleteRunGroupCommand;
|
|
@@ -2938,6 +3058,7 @@ exports.FormatToHeaderKey = FormatToHeaderKey;
|
|
|
2938
3058
|
exports.GetAnnotationImportJobCommand = GetAnnotationImportJobCommand;
|
|
2939
3059
|
exports.GetAnnotationStoreCommand = GetAnnotationStoreCommand;
|
|
2940
3060
|
exports.GetAnnotationStoreVersionCommand = GetAnnotationStoreVersionCommand;
|
|
3061
|
+
exports.GetBatchCommand = GetBatchCommand;
|
|
2941
3062
|
exports.GetReadSetActivationJobCommand = GetReadSetActivationJobCommand;
|
|
2942
3063
|
exports.GetReadSetCommand = GetReadSetCommand;
|
|
2943
3064
|
exports.GetReadSetExportJobCommand = GetReadSetExportJobCommand;
|
|
@@ -2962,6 +3083,7 @@ exports.JobStatus = JobStatus;
|
|
|
2962
3083
|
exports.ListAnnotationImportJobsCommand = ListAnnotationImportJobsCommand;
|
|
2963
3084
|
exports.ListAnnotationStoreVersionsCommand = ListAnnotationStoreVersionsCommand;
|
|
2964
3085
|
exports.ListAnnotationStoresCommand = ListAnnotationStoresCommand;
|
|
3086
|
+
exports.ListBatchCommand = ListBatchCommand;
|
|
2965
3087
|
exports.ListMultipartReadSetUploadsCommand = ListMultipartReadSetUploadsCommand;
|
|
2966
3088
|
exports.ListReadSetActivationJobsCommand = ListReadSetActivationJobsCommand;
|
|
2967
3089
|
exports.ListReadSetExportJobsCommand = ListReadSetExportJobsCommand;
|
|
@@ -2975,6 +3097,7 @@ exports.ListRunCachesCommand = ListRunCachesCommand;
|
|
|
2975
3097
|
exports.ListRunGroupsCommand = ListRunGroupsCommand;
|
|
2976
3098
|
exports.ListRunTasksCommand = ListRunTasksCommand;
|
|
2977
3099
|
exports.ListRunsCommand = ListRunsCommand;
|
|
3100
|
+
exports.ListRunsInBatchCommand = ListRunsInBatchCommand;
|
|
2978
3101
|
exports.ListSequenceStoresCommand = ListSequenceStoresCommand;
|
|
2979
3102
|
exports.ListSharesCommand = ListSharesCommand;
|
|
2980
3103
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
@@ -3015,12 +3138,14 @@ exports.StartReadSetActivationJobCommand = StartReadSetActivationJobCommand;
|
|
|
3015
3138
|
exports.StartReadSetExportJobCommand = StartReadSetExportJobCommand;
|
|
3016
3139
|
exports.StartReadSetImportJobCommand = StartReadSetImportJobCommand;
|
|
3017
3140
|
exports.StartReferenceImportJobCommand = StartReferenceImportJobCommand;
|
|
3141
|
+
exports.StartRunBatchCommand = StartRunBatchCommand;
|
|
3018
3142
|
exports.StartRunCommand = StartRunCommand;
|
|
3019
3143
|
exports.StartVariantImportJobCommand = StartVariantImportJobCommand;
|
|
3020
3144
|
exports.StorageType = StorageType;
|
|
3021
3145
|
exports.StoreFormat = StoreFormat;
|
|
3022
3146
|
exports.StoreStatus = StoreStatus;
|
|
3023
3147
|
exports.StoreType = StoreType;
|
|
3148
|
+
exports.SubmissionStatus = SubmissionStatus;
|
|
3024
3149
|
exports.TagResourceCommand = TagResourceCommand;
|
|
3025
3150
|
exports.TaskStatus = TaskStatus;
|
|
3026
3151
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
@@ -3041,6 +3166,7 @@ exports.WorkflowType = WorkflowType;
|
|
|
3041
3166
|
exports.paginateListAnnotationImportJobs = paginateListAnnotationImportJobs;
|
|
3042
3167
|
exports.paginateListAnnotationStoreVersions = paginateListAnnotationStoreVersions;
|
|
3043
3168
|
exports.paginateListAnnotationStores = paginateListAnnotationStores;
|
|
3169
|
+
exports.paginateListBatch = paginateListBatch;
|
|
3044
3170
|
exports.paginateListMultipartReadSetUploads = paginateListMultipartReadSetUploads;
|
|
3045
3171
|
exports.paginateListReadSetActivationJobs = paginateListReadSetActivationJobs;
|
|
3046
3172
|
exports.paginateListReadSetExportJobs = paginateListReadSetExportJobs;
|
|
@@ -3054,6 +3180,7 @@ exports.paginateListRunCaches = paginateListRunCaches;
|
|
|
3054
3180
|
exports.paginateListRunGroups = paginateListRunGroups;
|
|
3055
3181
|
exports.paginateListRunTasks = paginateListRunTasks;
|
|
3056
3182
|
exports.paginateListRuns = paginateListRuns;
|
|
3183
|
+
exports.paginateListRunsInBatch = paginateListRunsInBatch;
|
|
3057
3184
|
exports.paginateListSequenceStores = paginateListSequenceStores;
|
|
3058
3185
|
exports.paginateListShares = paginateListShares;
|
|
3059
3186
|
exports.paginateListVariantImportJobs = paginateListVariantImportJobs;
|