@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.
Files changed (70) hide show
  1. package/README.md +56 -7
  2. package/dist-cjs/index.js +141 -14
  3. package/dist-cjs/schemas/schemas_0.js +230 -32
  4. package/dist-es/Omics.js +18 -0
  5. package/dist-es/commands/CancelRunBatchCommand.js +16 -0
  6. package/dist-es/commands/DeleteBatchCommand.js +16 -0
  7. package/dist-es/commands/DeleteRunBatchCommand.js +16 -0
  8. package/dist-es/commands/GetBatchCommand.js +16 -0
  9. package/dist-es/commands/ListBatchCommand.js +16 -0
  10. package/dist-es/commands/ListRunsInBatchCommand.js +16 -0
  11. package/dist-es/commands/StartRunBatchCommand.js +16 -0
  12. package/dist-es/commands/index.js +7 -0
  13. package/dist-es/models/enums.js +33 -14
  14. package/dist-es/pagination/ListBatchPaginator.js +4 -0
  15. package/dist-es/pagination/ListRunsInBatchPaginator.js +4 -0
  16. package/dist-es/pagination/index.js +2 -0
  17. package/dist-es/schemas/schemas_0.js +222 -24
  18. package/dist-types/Omics.d.ts +64 -0
  19. package/dist-types/OmicsClient.d.ts +9 -2
  20. package/dist-types/commands/CancelAnnotationImportJobCommand.d.ts +1 -1
  21. package/dist-types/commands/CancelRunBatchCommand.d.ts +96 -0
  22. package/dist-types/commands/CancelVariantImportJobCommand.d.ts +1 -1
  23. package/dist-types/commands/CreateAnnotationStoreCommand.d.ts +1 -1
  24. package/dist-types/commands/CreateVariantStoreCommand.d.ts +1 -1
  25. package/dist-types/commands/DeleteAnnotationStoreCommand.d.ts +1 -1
  26. package/dist-types/commands/DeleteBatchCommand.d.ts +96 -0
  27. package/dist-types/commands/DeleteRunBatchCommand.d.ts +96 -0
  28. package/dist-types/commands/DeleteVariantStoreCommand.d.ts +1 -1
  29. package/dist-types/commands/GetAnnotationImportJobCommand.d.ts +1 -1
  30. package/dist-types/commands/GetAnnotationStoreCommand.d.ts +1 -1
  31. package/dist-types/commands/GetBatchCommand.d.ts +146 -0
  32. package/dist-types/commands/GetRunCommand.d.ts +1 -0
  33. package/dist-types/commands/GetVariantImportJobCommand.d.ts +1 -1
  34. package/dist-types/commands/GetVariantStoreCommand.d.ts +1 -1
  35. package/dist-types/commands/ListAnnotationImportJobsCommand.d.ts +1 -1
  36. package/dist-types/commands/ListAnnotationStoresCommand.d.ts +1 -1
  37. package/dist-types/commands/ListBatchCommand.d.ts +103 -0
  38. package/dist-types/commands/ListRunsCommand.d.ts +2 -0
  39. package/dist-types/commands/ListRunsInBatchCommand.d.ts +114 -0
  40. package/dist-types/commands/ListVariantImportJobsCommand.d.ts +1 -1
  41. package/dist-types/commands/ListVariantStoresCommand.d.ts +1 -1
  42. package/dist-types/commands/StartAnnotationImportJobCommand.d.ts +1 -1
  43. package/dist-types/commands/StartRunBatchCommand.d.ts +144 -0
  44. package/dist-types/commands/StartVariantImportJobCommand.d.ts +1 -1
  45. package/dist-types/commands/UpdateAnnotationStoreCommand.d.ts +1 -1
  46. package/dist-types/commands/UpdateVariantStoreCommand.d.ts +1 -1
  47. package/dist-types/commands/index.d.ts +7 -0
  48. package/dist-types/models/enums.d.ts +73 -38
  49. package/dist-types/models/models_0.d.ts +648 -2
  50. package/dist-types/pagination/ListBatchPaginator.d.ts +7 -0
  51. package/dist-types/pagination/ListRunsInBatchPaginator.d.ts +7 -0
  52. package/dist-types/pagination/index.d.ts +2 -0
  53. package/dist-types/schemas/schemas_0.d.ts +27 -0
  54. package/dist-types/ts3.4/Omics.d.ts +134 -0
  55. package/dist-types/ts3.4/OmicsClient.d.ts +42 -0
  56. package/dist-types/ts3.4/commands/CancelRunBatchCommand.d.ts +50 -0
  57. package/dist-types/ts3.4/commands/DeleteBatchCommand.d.ts +45 -0
  58. package/dist-types/ts3.4/commands/DeleteRunBatchCommand.d.ts +50 -0
  59. package/dist-types/ts3.4/commands/GetBatchCommand.d.ts +47 -0
  60. package/dist-types/ts3.4/commands/ListBatchCommand.d.ts +47 -0
  61. package/dist-types/ts3.4/commands/ListRunsInBatchCommand.d.ts +50 -0
  62. package/dist-types/ts3.4/commands/StartRunBatchCommand.d.ts +50 -0
  63. package/dist-types/ts3.4/commands/index.d.ts +7 -0
  64. package/dist-types/ts3.4/models/enums.d.ts +40 -18
  65. package/dist-types/ts3.4/models/models_0.d.ts +164 -0
  66. package/dist-types/ts3.4/pagination/ListBatchPaginator.d.ts +11 -0
  67. package/dist-types/ts3.4/pagination/ListRunsInBatchPaginator.d.ts +11 -0
  68. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  69. package/dist-types/ts3.4/schemas/schemas_0.d.ts +27 -0
  70. package/package.json +5 -5
package/dist-es/Omics.js CHANGED
@@ -3,6 +3,7 @@ import { AbortMultipartReadSetUploadCommand, } from "./commands/AbortMultipartRe
3
3
  import { AcceptShareCommand } from "./commands/AcceptShareCommand";
4
4
  import { BatchDeleteReadSetCommand, } from "./commands/BatchDeleteReadSetCommand";
5
5
  import { CancelAnnotationImportJobCommand, } from "./commands/CancelAnnotationImportJobCommand";
6
+ import { CancelRunBatchCommand, } from "./commands/CancelRunBatchCommand";
6
7
  import { CancelRunCommand } from "./commands/CancelRunCommand";
7
8
  import { CancelVariantImportJobCommand, } from "./commands/CancelVariantImportJobCommand";
8
9
  import { CompleteMultipartReadSetUploadCommand, } from "./commands/CompleteMultipartReadSetUploadCommand";
@@ -19,8 +20,10 @@ import { CreateWorkflowCommand, } from "./commands/CreateWorkflowCommand";
19
20
  import { CreateWorkflowVersionCommand, } from "./commands/CreateWorkflowVersionCommand";
20
21
  import { DeleteAnnotationStoreCommand, } from "./commands/DeleteAnnotationStoreCommand";
21
22
  import { DeleteAnnotationStoreVersionsCommand, } from "./commands/DeleteAnnotationStoreVersionsCommand";
23
+ import { DeleteBatchCommand } from "./commands/DeleteBatchCommand";
22
24
  import { DeleteReferenceCommand, } from "./commands/DeleteReferenceCommand";
23
25
  import { DeleteReferenceStoreCommand, } from "./commands/DeleteReferenceStoreCommand";
26
+ import { DeleteRunBatchCommand, } from "./commands/DeleteRunBatchCommand";
24
27
  import { DeleteRunCacheCommand, } from "./commands/DeleteRunCacheCommand";
25
28
  import { DeleteRunCommand } from "./commands/DeleteRunCommand";
26
29
  import { DeleteRunGroupCommand, } from "./commands/DeleteRunGroupCommand";
@@ -33,6 +36,7 @@ import { DeleteWorkflowVersionCommand, } from "./commands/DeleteWorkflowVersionC
33
36
  import { GetAnnotationImportJobCommand, } from "./commands/GetAnnotationImportJobCommand";
34
37
  import { GetAnnotationStoreCommand, } from "./commands/GetAnnotationStoreCommand";
35
38
  import { GetAnnotationStoreVersionCommand, } from "./commands/GetAnnotationStoreVersionCommand";
39
+ import { GetBatchCommand } from "./commands/GetBatchCommand";
36
40
  import { GetReadSetActivationJobCommand, } from "./commands/GetReadSetActivationJobCommand";
37
41
  import { GetReadSetCommand } from "./commands/GetReadSetCommand";
38
42
  import { GetReadSetExportJobCommand, } from "./commands/GetReadSetExportJobCommand";
@@ -56,6 +60,7 @@ import { GetWorkflowVersionCommand, } from "./commands/GetWorkflowVersionCommand
56
60
  import { ListAnnotationImportJobsCommand, } from "./commands/ListAnnotationImportJobsCommand";
57
61
  import { ListAnnotationStoresCommand, } from "./commands/ListAnnotationStoresCommand";
58
62
  import { ListAnnotationStoreVersionsCommand, } from "./commands/ListAnnotationStoreVersionsCommand";
63
+ import { ListBatchCommand } from "./commands/ListBatchCommand";
59
64
  import { ListMultipartReadSetUploadsCommand, } from "./commands/ListMultipartReadSetUploadsCommand";
60
65
  import { ListReadSetActivationJobsCommand, } from "./commands/ListReadSetActivationJobsCommand";
61
66
  import { ListReadSetExportJobsCommand, } from "./commands/ListReadSetExportJobsCommand";
@@ -68,6 +73,7 @@ import { ListReferenceStoresCommand, } from "./commands/ListReferenceStoresComma
68
73
  import { ListRunCachesCommand, } from "./commands/ListRunCachesCommand";
69
74
  import { ListRunGroupsCommand, } from "./commands/ListRunGroupsCommand";
70
75
  import { ListRunsCommand } from "./commands/ListRunsCommand";
76
+ import { ListRunsInBatchCommand, } from "./commands/ListRunsInBatchCommand";
71
77
  import { ListRunTasksCommand, } from "./commands/ListRunTasksCommand";
72
78
  import { ListSequenceStoresCommand, } from "./commands/ListSequenceStoresCommand";
73
79
  import { ListSharesCommand } from "./commands/ListSharesCommand";
@@ -82,6 +88,7 @@ import { StartReadSetActivationJobCommand, } from "./commands/StartReadSetActiva
82
88
  import { StartReadSetExportJobCommand, } from "./commands/StartReadSetExportJobCommand";
83
89
  import { StartReadSetImportJobCommand, } from "./commands/StartReadSetImportJobCommand";
84
90
  import { StartReferenceImportJobCommand, } from "./commands/StartReferenceImportJobCommand";
91
+ import { StartRunBatchCommand, } from "./commands/StartRunBatchCommand";
85
92
  import { StartRunCommand } from "./commands/StartRunCommand";
86
93
  import { StartVariantImportJobCommand, } from "./commands/StartVariantImportJobCommand";
87
94
  import { TagResourceCommand } from "./commands/TagResourceCommand";
@@ -99,6 +106,7 @@ import { OmicsClient } from "./OmicsClient";
99
106
  import { paginateListAnnotationImportJobs } from "./pagination/ListAnnotationImportJobsPaginator";
100
107
  import { paginateListAnnotationStores } from "./pagination/ListAnnotationStoresPaginator";
101
108
  import { paginateListAnnotationStoreVersions } from "./pagination/ListAnnotationStoreVersionsPaginator";
109
+ import { paginateListBatch } from "./pagination/ListBatchPaginator";
102
110
  import { paginateListMultipartReadSetUploads } from "./pagination/ListMultipartReadSetUploadsPaginator";
103
111
  import { paginateListReadSetActivationJobs } from "./pagination/ListReadSetActivationJobsPaginator";
104
112
  import { paginateListReadSetExportJobs } from "./pagination/ListReadSetExportJobsPaginator";
@@ -110,6 +118,7 @@ import { paginateListReferences } from "./pagination/ListReferencesPaginator";
110
118
  import { paginateListReferenceStores } from "./pagination/ListReferenceStoresPaginator";
111
119
  import { paginateListRunCaches } from "./pagination/ListRunCachesPaginator";
112
120
  import { paginateListRunGroups } from "./pagination/ListRunGroupsPaginator";
121
+ import { paginateListRunsInBatch } from "./pagination/ListRunsInBatchPaginator";
113
122
  import { paginateListRuns } from "./pagination/ListRunsPaginator";
114
123
  import { paginateListRunTasks } from "./pagination/ListRunTasksPaginator";
115
124
  import { paginateListSequenceStores } from "./pagination/ListSequenceStoresPaginator";
@@ -142,6 +151,7 @@ const commands = {
142
151
  BatchDeleteReadSetCommand,
143
152
  CancelAnnotationImportJobCommand,
144
153
  CancelRunCommand,
154
+ CancelRunBatchCommand,
145
155
  CancelVariantImportJobCommand,
146
156
  CompleteMultipartReadSetUploadCommand,
147
157
  CreateAnnotationStoreCommand,
@@ -157,9 +167,11 @@ const commands = {
157
167
  CreateWorkflowVersionCommand,
158
168
  DeleteAnnotationStoreCommand,
159
169
  DeleteAnnotationStoreVersionsCommand,
170
+ DeleteBatchCommand,
160
171
  DeleteReferenceCommand,
161
172
  DeleteReferenceStoreCommand,
162
173
  DeleteRunCommand,
174
+ DeleteRunBatchCommand,
163
175
  DeleteRunCacheCommand,
164
176
  DeleteRunGroupCommand,
165
177
  DeleteS3AccessPolicyCommand,
@@ -171,6 +183,7 @@ const commands = {
171
183
  GetAnnotationImportJobCommand,
172
184
  GetAnnotationStoreCommand,
173
185
  GetAnnotationStoreVersionCommand,
186
+ GetBatchCommand,
174
187
  GetReadSetCommand,
175
188
  GetReadSetActivationJobCommand,
176
189
  GetReadSetExportJobCommand,
@@ -194,6 +207,7 @@ const commands = {
194
207
  ListAnnotationImportJobsCommand,
195
208
  ListAnnotationStoresCommand,
196
209
  ListAnnotationStoreVersionsCommand,
210
+ ListBatchCommand,
197
211
  ListMultipartReadSetUploadsCommand,
198
212
  ListReadSetActivationJobsCommand,
199
213
  ListReadSetExportJobsCommand,
@@ -206,6 +220,7 @@ const commands = {
206
220
  ListRunCachesCommand,
207
221
  ListRunGroupsCommand,
208
222
  ListRunsCommand,
223
+ ListRunsInBatchCommand,
209
224
  ListRunTasksCommand,
210
225
  ListSequenceStoresCommand,
211
226
  ListSharesCommand,
@@ -221,6 +236,7 @@ const commands = {
221
236
  StartReadSetImportJobCommand,
222
237
  StartReferenceImportJobCommand,
223
238
  StartRunCommand,
239
+ StartRunBatchCommand,
224
240
  StartVariantImportJobCommand,
225
241
  TagResourceCommand,
226
242
  UntagResourceCommand,
@@ -238,6 +254,7 @@ const paginators = {
238
254
  paginateListAnnotationImportJobs,
239
255
  paginateListAnnotationStores,
240
256
  paginateListAnnotationStoreVersions,
257
+ paginateListBatch,
241
258
  paginateListMultipartReadSetUploads,
242
259
  paginateListReadSetActivationJobs,
243
260
  paginateListReadSetExportJobs,
@@ -250,6 +267,7 @@ const paginators = {
250
267
  paginateListRunCaches,
251
268
  paginateListRunGroups,
252
269
  paginateListRuns,
270
+ paginateListRunsInBatch,
253
271
  paginateListRunTasks,
254
272
  paginateListSequenceStores,
255
273
  paginateListShares,
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { CancelRunBatch$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class CancelRunBatchCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("Omics", "CancelRunBatch", {})
13
+ .n("OmicsClient", "CancelRunBatchCommand")
14
+ .sc(CancelRunBatch$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { DeleteBatch$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class DeleteBatchCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("Omics", "DeleteBatch", {})
13
+ .n("OmicsClient", "DeleteBatchCommand")
14
+ .sc(DeleteBatch$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { DeleteRunBatch$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class DeleteRunBatchCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("Omics", "DeleteRunBatch", {})
13
+ .n("OmicsClient", "DeleteRunBatchCommand")
14
+ .sc(DeleteRunBatch$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { GetBatch$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class GetBatchCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("Omics", "GetBatch", {})
13
+ .n("OmicsClient", "GetBatchCommand")
14
+ .sc(GetBatch$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { ListBatch$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class ListBatchCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("Omics", "ListBatch", {})
13
+ .n("OmicsClient", "ListBatchCommand")
14
+ .sc(ListBatch$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { ListRunsInBatch$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class ListRunsInBatchCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("Omics", "ListRunsInBatch", {})
13
+ .n("OmicsClient", "ListRunsInBatchCommand")
14
+ .sc(ListRunsInBatch$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { StartRunBatch$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class StartRunBatchCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("Omics", "StartRunBatch", {})
13
+ .n("OmicsClient", "StartRunBatchCommand")
14
+ .sc(StartRunBatch$)
15
+ .build() {
16
+ }
@@ -2,6 +2,7 @@ export * from "./AbortMultipartReadSetUploadCommand";
2
2
  export * from "./AcceptShareCommand";
3
3
  export * from "./BatchDeleteReadSetCommand";
4
4
  export * from "./CancelAnnotationImportJobCommand";
5
+ export * from "./CancelRunBatchCommand";
5
6
  export * from "./CancelRunCommand";
6
7
  export * from "./CancelVariantImportJobCommand";
7
8
  export * from "./CompleteMultipartReadSetUploadCommand";
@@ -18,8 +19,10 @@ export * from "./CreateWorkflowCommand";
18
19
  export * from "./CreateWorkflowVersionCommand";
19
20
  export * from "./DeleteAnnotationStoreCommand";
20
21
  export * from "./DeleteAnnotationStoreVersionsCommand";
22
+ export * from "./DeleteBatchCommand";
21
23
  export * from "./DeleteReferenceCommand";
22
24
  export * from "./DeleteReferenceStoreCommand";
25
+ export * from "./DeleteRunBatchCommand";
23
26
  export * from "./DeleteRunCacheCommand";
24
27
  export * from "./DeleteRunCommand";
25
28
  export * from "./DeleteRunGroupCommand";
@@ -32,6 +35,7 @@ export * from "./DeleteWorkflowVersionCommand";
32
35
  export * from "./GetAnnotationImportJobCommand";
33
36
  export * from "./GetAnnotationStoreCommand";
34
37
  export * from "./GetAnnotationStoreVersionCommand";
38
+ export * from "./GetBatchCommand";
35
39
  export * from "./GetReadSetActivationJobCommand";
36
40
  export * from "./GetReadSetCommand";
37
41
  export * from "./GetReadSetExportJobCommand";
@@ -55,6 +59,7 @@ export * from "./GetWorkflowVersionCommand";
55
59
  export * from "./ListAnnotationImportJobsCommand";
56
60
  export * from "./ListAnnotationStoreVersionsCommand";
57
61
  export * from "./ListAnnotationStoresCommand";
62
+ export * from "./ListBatchCommand";
58
63
  export * from "./ListMultipartReadSetUploadsCommand";
59
64
  export * from "./ListReadSetActivationJobsCommand";
60
65
  export * from "./ListReadSetExportJobsCommand";
@@ -68,6 +73,7 @@ export * from "./ListRunCachesCommand";
68
73
  export * from "./ListRunGroupsCommand";
69
74
  export * from "./ListRunTasksCommand";
70
75
  export * from "./ListRunsCommand";
76
+ export * from "./ListRunsInBatchCommand";
71
77
  export * from "./ListSequenceStoresCommand";
72
78
  export * from "./ListSharesCommand";
73
79
  export * from "./ListTagsForResourceCommand";
@@ -81,6 +87,7 @@ export * from "./StartReadSetActivationJobCommand";
81
87
  export * from "./StartReadSetExportJobCommand";
82
88
  export * from "./StartReadSetImportJobCommand";
83
89
  export * from "./StartReferenceImportJobCommand";
90
+ export * from "./StartRunBatchCommand";
84
91
  export * from "./StartRunCommand";
85
92
  export * from "./StartVariantImportJobCommand";
86
93
  export * from "./TagResourceCommand";
@@ -79,6 +79,17 @@ export const VersionStatus = {
79
79
  FAILED: "FAILED",
80
80
  UPDATING: "UPDATING",
81
81
  };
82
+ export const BatchStatus = {
83
+ CANCELLED: "CANCELLED",
84
+ FAILED: "FAILED",
85
+ INPROGRESS: "INPROGRESS",
86
+ PENDING: "PENDING",
87
+ PROCESSED: "PROCESSED",
88
+ RUNS_DELETED: "RUNS_DELETED",
89
+ RUNS_DELETING: "RUNS_DELETING",
90
+ STOPPING: "STOPPING",
91
+ SUBMITTING: "SUBMITTING",
92
+ };
82
93
  export const CacheBehavior = {
83
94
  CACHE_ALWAYS: "CACHE_ALWAYS",
84
95
  CACHE_ON_FAILURE: "CACHE_ON_FAILURE",
@@ -137,6 +148,20 @@ export const CreationType = {
137
148
  IMPORT: "IMPORT",
138
149
  UPLOAD: "UPLOAD",
139
150
  };
151
+ export const RunLogLevel = {
152
+ ALL: "ALL",
153
+ ERROR: "ERROR",
154
+ FATAL: "FATAL",
155
+ OFF: "OFF",
156
+ };
157
+ export const RunRetentionMode = {
158
+ REMOVE: "REMOVE",
159
+ RETAIN: "RETAIN",
160
+ };
161
+ export const WorkflowType = {
162
+ PRIVATE: "PRIVATE",
163
+ READY2RUN: "READY2RUN",
164
+ };
140
165
  export const ETagAlgorithm = {
141
166
  BAM_MD5UP: "BAM_MD5up",
142
167
  BAM_SHA256UP: "BAM_SHA256up",
@@ -227,16 +252,6 @@ export const ReferenceStatus = {
227
252
  export const RunExport = {
228
253
  DEFINITION: "DEFINITION",
229
254
  };
230
- export const RunLogLevel = {
231
- ALL: "ALL",
232
- ERROR: "ERROR",
233
- FATAL: "FATAL",
234
- OFF: "OFF",
235
- };
236
- export const RunRetentionMode = {
237
- REMOVE: "REMOVE",
238
- RETAIN: "RETAIN",
239
- };
240
255
  export const RunStatus = {
241
256
  CANCELLED: "CANCELLED",
242
257
  COMPLETED: "COMPLETED",
@@ -247,10 +262,6 @@ export const RunStatus = {
247
262
  STARTING: "STARTING",
248
263
  STOPPING: "STOPPING",
249
264
  };
250
- export const WorkflowType = {
251
- PRIVATE: "PRIVATE",
252
- READY2RUN: "READY2RUN",
253
- };
254
265
  export const TaskStatus = {
255
266
  CANCELLED: "CANCELLED",
256
267
  COMPLETED: "COMPLETED",
@@ -268,6 +279,14 @@ export const WorkflowExport = {
268
279
  DEFINITION: "DEFINITION",
269
280
  README: "README",
270
281
  };
282
+ export const SubmissionStatus = {
283
+ CANCEL_FAILED: "CANCEL_FAILED",
284
+ CANCEL_SUCCESS: "CANCEL_SUCCESS",
285
+ DELETE_FAILED: "DELETE_FAILED",
286
+ DELETE_SUCCESS: "DELETE_SUCCESS",
287
+ FAILED: "FAILED",
288
+ SUCCESS: "SUCCESS",
289
+ };
271
290
  export const ResourceOwner = {
272
291
  OTHER: "OTHER",
273
292
  SELF: "SELF",
@@ -0,0 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
2
+ import { ListBatchCommand } from "../commands/ListBatchCommand";
3
+ import { OmicsClient } from "../OmicsClient";
4
+ export const paginateListBatch = createPaginator(OmicsClient, ListBatchCommand, "startingToken", "nextToken", "maxItems");
@@ -0,0 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
2
+ import { ListRunsInBatchCommand, } from "../commands/ListRunsInBatchCommand";
3
+ import { OmicsClient } from "../OmicsClient";
4
+ export const paginateListRunsInBatch = createPaginator(OmicsClient, ListRunsInBatchCommand, "startingToken", "nextToken", "maxItems");
@@ -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";