@aws-sdk/client-omics 3.301.0 → 3.306.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/dist-cjs/models/models_0.js +181 -209
- package/dist-es/models/models_0.js +181 -209
- package/dist-types/models/models_0.d.ts +321 -181
- package/dist-types/ts3.4/models/models_0.d.ts +225 -181
- package/package.json +37 -37
|
@@ -11,32 +11,29 @@ export class AccessDeniedException extends __BaseException {
|
|
|
11
11
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
12
12
|
}
|
|
13
13
|
}
|
|
14
|
-
export
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
JobStatus["IN_PROGRESS"] = "IN_PROGRESS";
|
|
38
|
-
JobStatus["SUBMITTED"] = "SUBMITTED";
|
|
39
|
-
})(JobStatus || (JobStatus = {}));
|
|
14
|
+
export const ReadSetActivationJobStatus = {
|
|
15
|
+
CANCELLED: "CANCELLED",
|
|
16
|
+
CANCELLING: "CANCELLING",
|
|
17
|
+
COMPLETED: "COMPLETED",
|
|
18
|
+
COMPLETED_WITH_FAILURES: "COMPLETED_WITH_FAILURES",
|
|
19
|
+
FAILED: "FAILED",
|
|
20
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
21
|
+
SUBMITTED: "SUBMITTED",
|
|
22
|
+
};
|
|
23
|
+
export const ReadSetActivationJobItemStatus = {
|
|
24
|
+
FAILED: "FAILED",
|
|
25
|
+
FINISHED: "FINISHED",
|
|
26
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
27
|
+
NOT_STARTED: "NOT_STARTED",
|
|
28
|
+
};
|
|
29
|
+
export const JobStatus = {
|
|
30
|
+
CANCELLED: "CANCELLED",
|
|
31
|
+
COMPLETED: "COMPLETED",
|
|
32
|
+
COMPLETED_WITH_FAILURES: "COMPLETED_WITH_FAILURES",
|
|
33
|
+
FAILED: "FAILED",
|
|
34
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
35
|
+
SUBMITTED: "SUBMITTED",
|
|
36
|
+
};
|
|
40
37
|
export class InternalServerException extends __BaseException {
|
|
41
38
|
constructor(opts) {
|
|
42
39
|
super({
|
|
@@ -131,44 +128,39 @@ export var ReferenceItem;
|
|
|
131
128
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
132
129
|
};
|
|
133
130
|
})(ReferenceItem || (ReferenceItem = {}));
|
|
134
|
-
export
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
SchemaValueType["FLOAT"] = "FLOAT";
|
|
168
|
-
SchemaValueType["INT"] = "INT";
|
|
169
|
-
SchemaValueType["LONG"] = "LONG";
|
|
170
|
-
SchemaValueType["STRING"] = "STRING";
|
|
171
|
-
})(SchemaValueType || (SchemaValueType = {}));
|
|
131
|
+
export const EncryptionType = {
|
|
132
|
+
KMS: "KMS",
|
|
133
|
+
};
|
|
134
|
+
export const StoreFormat = {
|
|
135
|
+
GFF: "GFF",
|
|
136
|
+
TSV: "TSV",
|
|
137
|
+
VCF: "VCF",
|
|
138
|
+
};
|
|
139
|
+
export const AnnotationType = {
|
|
140
|
+
CHR_POS: "CHR_POS",
|
|
141
|
+
CHR_POS_REF_ALT: "CHR_POS_REF_ALT",
|
|
142
|
+
CHR_START_END_ONE_BASE: "CHR_START_END_ONE_BASE",
|
|
143
|
+
CHR_START_END_REF_ALT_ONE_BASE: "CHR_START_END_REF_ALT_ONE_BASE",
|
|
144
|
+
CHR_START_END_REF_ALT_ZERO_BASE: "CHR_START_END_REF_ALT_ZERO_BASE",
|
|
145
|
+
CHR_START_END_ZERO_BASE: "CHR_START_END_ZERO_BASE",
|
|
146
|
+
GENERIC: "GENERIC",
|
|
147
|
+
};
|
|
148
|
+
export const FormatToHeaderKey = {
|
|
149
|
+
ALT: "ALT",
|
|
150
|
+
CHR: "CHR",
|
|
151
|
+
END: "END",
|
|
152
|
+
POS: "POS",
|
|
153
|
+
REF: "REF",
|
|
154
|
+
START: "START",
|
|
155
|
+
};
|
|
156
|
+
export const SchemaValueType = {
|
|
157
|
+
BOOLEAN: "BOOLEAN",
|
|
158
|
+
DOUBLE: "DOUBLE",
|
|
159
|
+
FLOAT: "FLOAT",
|
|
160
|
+
INT: "INT",
|
|
161
|
+
LONG: "LONG",
|
|
162
|
+
STRING: "STRING",
|
|
163
|
+
};
|
|
172
164
|
export var StoreOptions;
|
|
173
165
|
(function (StoreOptions) {
|
|
174
166
|
StoreOptions.visit = (value, visitor) => {
|
|
@@ -177,14 +169,13 @@ export var StoreOptions;
|
|
|
177
169
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
178
170
|
};
|
|
179
171
|
})(StoreOptions || (StoreOptions = {}));
|
|
180
|
-
export
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
})(StoreStatus || (StoreStatus = {}));
|
|
172
|
+
export const StoreStatus = {
|
|
173
|
+
ACTIVE: "ACTIVE",
|
|
174
|
+
CREATING: "CREATING",
|
|
175
|
+
DELETING: "DELETING",
|
|
176
|
+
FAILED: "FAILED",
|
|
177
|
+
UPDATING: "UPDATING",
|
|
178
|
+
};
|
|
188
179
|
export class RequestTimeoutException extends __BaseException {
|
|
189
180
|
constructor(opts) {
|
|
190
181
|
super({
|
|
@@ -197,49 +188,43 @@ export class RequestTimeoutException extends __BaseException {
|
|
|
197
188
|
Object.setPrototypeOf(this, RequestTimeoutException.prototype);
|
|
198
189
|
}
|
|
199
190
|
}
|
|
200
|
-
export
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
}
|
|
237
|
-
export var ReadSetFile;
|
|
238
|
-
(function (ReadSetFile) {
|
|
239
|
-
ReadSetFile["INDEX"] = "INDEX";
|
|
240
|
-
ReadSetFile["SOURCE1"] = "SOURCE1";
|
|
241
|
-
ReadSetFile["SOURCE2"] = "SOURCE2";
|
|
242
|
-
})(ReadSetFile || (ReadSetFile = {}));
|
|
191
|
+
export const WorkflowEngine = {
|
|
192
|
+
NEXTFLOW: "NEXTFLOW",
|
|
193
|
+
WDL: "WDL",
|
|
194
|
+
};
|
|
195
|
+
export const WorkflowStatus = {
|
|
196
|
+
ACTIVE: "ACTIVE",
|
|
197
|
+
CREATING: "CREATING",
|
|
198
|
+
DELETED: "DELETED",
|
|
199
|
+
FAILED: "FAILED",
|
|
200
|
+
INACTIVE: "INACTIVE",
|
|
201
|
+
UPDATING: "UPDATING",
|
|
202
|
+
};
|
|
203
|
+
export const ReadSetExportJobItemStatus = {
|
|
204
|
+
FAILED: "FAILED",
|
|
205
|
+
FINISHED: "FINISHED",
|
|
206
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
207
|
+
NOT_STARTED: "NOT_STARTED",
|
|
208
|
+
};
|
|
209
|
+
export const ReadSetExportJobStatus = {
|
|
210
|
+
CANCELLED: "CANCELLED",
|
|
211
|
+
CANCELLING: "CANCELLING",
|
|
212
|
+
COMPLETED: "COMPLETED",
|
|
213
|
+
COMPLETED_WITH_FAILURES: "COMPLETED_WITH_FAILURES",
|
|
214
|
+
FAILED: "FAILED",
|
|
215
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
216
|
+
SUBMITTED: "SUBMITTED",
|
|
217
|
+
};
|
|
218
|
+
export const FileType = {
|
|
219
|
+
BAM: "BAM",
|
|
220
|
+
CRAM: "CRAM",
|
|
221
|
+
FASTQ: "FASTQ",
|
|
222
|
+
};
|
|
223
|
+
export const ReadSetFile = {
|
|
224
|
+
INDEX: "INDEX",
|
|
225
|
+
SOURCE1: "SOURCE1",
|
|
226
|
+
SOURCE2: "SOURCE2",
|
|
227
|
+
};
|
|
243
228
|
export class RangeNotSatisfiableException extends __BaseException {
|
|
244
229
|
constructor(opts) {
|
|
245
230
|
super({
|
|
@@ -253,100 +238,87 @@ export class RangeNotSatisfiableException extends __BaseException {
|
|
|
253
238
|
Object.setPrototypeOf(this, RangeNotSatisfiableException.prototype);
|
|
254
239
|
}
|
|
255
240
|
}
|
|
256
|
-
export
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
(function (TaskStatus) {
|
|
338
|
-
TaskStatus["CANCELLED"] = "CANCELLED";
|
|
339
|
-
TaskStatus["COMPLETED"] = "COMPLETED";
|
|
340
|
-
TaskStatus["FAILED"] = "FAILED";
|
|
341
|
-
TaskStatus["PENDING"] = "PENDING";
|
|
342
|
-
TaskStatus["RUNNING"] = "RUNNING";
|
|
343
|
-
TaskStatus["STARTING"] = "STARTING";
|
|
344
|
-
TaskStatus["STOPPING"] = "STOPPING";
|
|
345
|
-
})(TaskStatus || (TaskStatus = {}));
|
|
346
|
-
export var WorkflowExport;
|
|
347
|
-
(function (WorkflowExport) {
|
|
348
|
-
WorkflowExport["DEFINITION"] = "DEFINITION";
|
|
349
|
-
})(WorkflowExport || (WorkflowExport = {}));
|
|
241
|
+
export const ReadSetImportJobItemStatus = {
|
|
242
|
+
FAILED: "FAILED",
|
|
243
|
+
FINISHED: "FINISHED",
|
|
244
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
245
|
+
NOT_STARTED: "NOT_STARTED",
|
|
246
|
+
};
|
|
247
|
+
export const ReadSetImportJobStatus = {
|
|
248
|
+
CANCELLED: "CANCELLED",
|
|
249
|
+
CANCELLING: "CANCELLING",
|
|
250
|
+
COMPLETED: "COMPLETED",
|
|
251
|
+
COMPLETED_WITH_FAILURES: "COMPLETED_WITH_FAILURES",
|
|
252
|
+
FAILED: "FAILED",
|
|
253
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
254
|
+
SUBMITTED: "SUBMITTED",
|
|
255
|
+
};
|
|
256
|
+
export const ReadSetStatus = {
|
|
257
|
+
ACTIVATING: "ACTIVATING",
|
|
258
|
+
ACTIVE: "ACTIVE",
|
|
259
|
+
ARCHIVED: "ARCHIVED",
|
|
260
|
+
DELETED: "DELETED",
|
|
261
|
+
DELETING: "DELETING",
|
|
262
|
+
};
|
|
263
|
+
export const ReferenceFile = {
|
|
264
|
+
INDEX: "INDEX",
|
|
265
|
+
SOURCE: "SOURCE",
|
|
266
|
+
};
|
|
267
|
+
export const ReferenceImportJobItemStatus = {
|
|
268
|
+
FAILED: "FAILED",
|
|
269
|
+
FINISHED: "FINISHED",
|
|
270
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
271
|
+
NOT_STARTED: "NOT_STARTED",
|
|
272
|
+
};
|
|
273
|
+
export const ReferenceImportJobStatus = {
|
|
274
|
+
CANCELLED: "CANCELLED",
|
|
275
|
+
CANCELLING: "CANCELLING",
|
|
276
|
+
COMPLETED: "COMPLETED",
|
|
277
|
+
COMPLETED_WITH_FAILURES: "COMPLETED_WITH_FAILURES",
|
|
278
|
+
FAILED: "FAILED",
|
|
279
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
280
|
+
SUBMITTED: "SUBMITTED",
|
|
281
|
+
};
|
|
282
|
+
export const ReferenceStatus = {
|
|
283
|
+
ACTIVE: "ACTIVE",
|
|
284
|
+
DELETED: "DELETED",
|
|
285
|
+
DELETING: "DELETING",
|
|
286
|
+
};
|
|
287
|
+
export const RunExport = {
|
|
288
|
+
DEFINITION: "DEFINITION",
|
|
289
|
+
};
|
|
290
|
+
export const RunLogLevel = {
|
|
291
|
+
ALL: "ALL",
|
|
292
|
+
ERROR: "ERROR",
|
|
293
|
+
FATAL: "FATAL",
|
|
294
|
+
OFF: "OFF",
|
|
295
|
+
};
|
|
296
|
+
export const RunStatus = {
|
|
297
|
+
CANCELLED: "CANCELLED",
|
|
298
|
+
COMPLETED: "COMPLETED",
|
|
299
|
+
DELETED: "DELETED",
|
|
300
|
+
FAILED: "FAILED",
|
|
301
|
+
PENDING: "PENDING",
|
|
302
|
+
RUNNING: "RUNNING",
|
|
303
|
+
STARTING: "STARTING",
|
|
304
|
+
STOPPING: "STOPPING",
|
|
305
|
+
};
|
|
306
|
+
export const WorkflowType = {
|
|
307
|
+
PRIVATE: "PRIVATE",
|
|
308
|
+
SERVICE: "SERVICE",
|
|
309
|
+
};
|
|
310
|
+
export const TaskStatus = {
|
|
311
|
+
CANCELLED: "CANCELLED",
|
|
312
|
+
COMPLETED: "COMPLETED",
|
|
313
|
+
FAILED: "FAILED",
|
|
314
|
+
PENDING: "PENDING",
|
|
315
|
+
RUNNING: "RUNNING",
|
|
316
|
+
STARTING: "STARTING",
|
|
317
|
+
STOPPING: "STOPPING",
|
|
318
|
+
};
|
|
319
|
+
export const WorkflowExport = {
|
|
320
|
+
DEFINITION: "DEFINITION",
|
|
321
|
+
};
|
|
350
322
|
export const GetReadSetResponseFilterSensitiveLog = (obj) => ({
|
|
351
323
|
...obj,
|
|
352
324
|
});
|