@aws-sdk/client-omics 3.986.0 → 3.988.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/index.js +115 -3048
- package/dist-cjs/models/OmicsServiceException.js +12 -0
- package/dist-cjs/models/errors.js +139 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +2477 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +150 -144
- package/dist-types/schemas/schemas_0.d.ts +18 -11
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +13 -11
- package/package.json +14 -14
package/dist-cjs/index.js
CHANGED
|
@@ -15,7 +15,10 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
18
19
|
var utilWaiter = require('@smithy/util-waiter');
|
|
20
|
+
var errors = require('./models/errors');
|
|
21
|
+
var OmicsServiceException = require('./models/OmicsServiceException');
|
|
19
22
|
|
|
20
23
|
const resolveClientEndpointParameters = (options) => {
|
|
21
24
|
return Object.assign(options, {
|
|
@@ -111,2578 +114,6 @@ class OmicsClient extends smithyClient.Client {
|
|
|
111
114
|
}
|
|
112
115
|
}
|
|
113
116
|
|
|
114
|
-
class OmicsServiceException extends smithyClient.ServiceException {
|
|
115
|
-
constructor(options) {
|
|
116
|
-
super(options);
|
|
117
|
-
Object.setPrototypeOf(this, OmicsServiceException.prototype);
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
class AccessDeniedException extends OmicsServiceException {
|
|
122
|
-
name = "AccessDeniedException";
|
|
123
|
-
$fault = "client";
|
|
124
|
-
constructor(opts) {
|
|
125
|
-
super({
|
|
126
|
-
name: "AccessDeniedException",
|
|
127
|
-
$fault: "client",
|
|
128
|
-
...opts,
|
|
129
|
-
});
|
|
130
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
class InternalServerException extends OmicsServiceException {
|
|
134
|
-
name = "InternalServerException";
|
|
135
|
-
$fault = "server";
|
|
136
|
-
$retryable = {};
|
|
137
|
-
constructor(opts) {
|
|
138
|
-
super({
|
|
139
|
-
name: "InternalServerException",
|
|
140
|
-
$fault: "server",
|
|
141
|
-
...opts,
|
|
142
|
-
});
|
|
143
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
144
|
-
}
|
|
145
|
-
}
|
|
146
|
-
class NotSupportedOperationException extends OmicsServiceException {
|
|
147
|
-
name = "NotSupportedOperationException";
|
|
148
|
-
$fault = "client";
|
|
149
|
-
constructor(opts) {
|
|
150
|
-
super({
|
|
151
|
-
name: "NotSupportedOperationException",
|
|
152
|
-
$fault: "client",
|
|
153
|
-
...opts,
|
|
154
|
-
});
|
|
155
|
-
Object.setPrototypeOf(this, NotSupportedOperationException.prototype);
|
|
156
|
-
}
|
|
157
|
-
}
|
|
158
|
-
class RequestTimeoutException extends OmicsServiceException {
|
|
159
|
-
name = "RequestTimeoutException";
|
|
160
|
-
$fault = "client";
|
|
161
|
-
constructor(opts) {
|
|
162
|
-
super({
|
|
163
|
-
name: "RequestTimeoutException",
|
|
164
|
-
$fault: "client",
|
|
165
|
-
...opts,
|
|
166
|
-
});
|
|
167
|
-
Object.setPrototypeOf(this, RequestTimeoutException.prototype);
|
|
168
|
-
}
|
|
169
|
-
}
|
|
170
|
-
class ResourceNotFoundException extends OmicsServiceException {
|
|
171
|
-
name = "ResourceNotFoundException";
|
|
172
|
-
$fault = "client";
|
|
173
|
-
constructor(opts) {
|
|
174
|
-
super({
|
|
175
|
-
name: "ResourceNotFoundException",
|
|
176
|
-
$fault: "client",
|
|
177
|
-
...opts,
|
|
178
|
-
});
|
|
179
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
180
|
-
}
|
|
181
|
-
}
|
|
182
|
-
class ServiceQuotaExceededException extends OmicsServiceException {
|
|
183
|
-
name = "ServiceQuotaExceededException";
|
|
184
|
-
$fault = "client";
|
|
185
|
-
constructor(opts) {
|
|
186
|
-
super({
|
|
187
|
-
name: "ServiceQuotaExceededException",
|
|
188
|
-
$fault: "client",
|
|
189
|
-
...opts,
|
|
190
|
-
});
|
|
191
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
192
|
-
}
|
|
193
|
-
}
|
|
194
|
-
class ThrottlingException extends OmicsServiceException {
|
|
195
|
-
name = "ThrottlingException";
|
|
196
|
-
$fault = "client";
|
|
197
|
-
$retryable = {
|
|
198
|
-
throttling: true,
|
|
199
|
-
};
|
|
200
|
-
constructor(opts) {
|
|
201
|
-
super({
|
|
202
|
-
name: "ThrottlingException",
|
|
203
|
-
$fault: "client",
|
|
204
|
-
...opts,
|
|
205
|
-
});
|
|
206
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
207
|
-
}
|
|
208
|
-
}
|
|
209
|
-
class ValidationException extends OmicsServiceException {
|
|
210
|
-
name = "ValidationException";
|
|
211
|
-
$fault = "client";
|
|
212
|
-
constructor(opts) {
|
|
213
|
-
super({
|
|
214
|
-
name: "ValidationException",
|
|
215
|
-
$fault: "client",
|
|
216
|
-
...opts,
|
|
217
|
-
});
|
|
218
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
219
|
-
}
|
|
220
|
-
}
|
|
221
|
-
class ConflictException extends OmicsServiceException {
|
|
222
|
-
name = "ConflictException";
|
|
223
|
-
$fault = "client";
|
|
224
|
-
constructor(opts) {
|
|
225
|
-
super({
|
|
226
|
-
name: "ConflictException",
|
|
227
|
-
$fault: "client",
|
|
228
|
-
...opts,
|
|
229
|
-
});
|
|
230
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
231
|
-
}
|
|
232
|
-
}
|
|
233
|
-
class RangeNotSatisfiableException extends OmicsServiceException {
|
|
234
|
-
name = "RangeNotSatisfiableException";
|
|
235
|
-
$fault = "client";
|
|
236
|
-
$retryable = {};
|
|
237
|
-
constructor(opts) {
|
|
238
|
-
super({
|
|
239
|
-
name: "RangeNotSatisfiableException",
|
|
240
|
-
$fault: "client",
|
|
241
|
-
...opts,
|
|
242
|
-
});
|
|
243
|
-
Object.setPrototypeOf(this, RangeNotSatisfiableException.prototype);
|
|
244
|
-
}
|
|
245
|
-
}
|
|
246
|
-
|
|
247
|
-
const _ADE = "AccessDeniedException";
|
|
248
|
-
const _AIID = "AnnotationImportItemDetail";
|
|
249
|
-
const _AIIDn = "AnnotationImportItemDetails";
|
|
250
|
-
const _AIIS = "AnnotationImportItemSource";
|
|
251
|
-
const _AIISn = "AnnotationImportItemSources";
|
|
252
|
-
const _AIJI = "AnnotationImportJobItem";
|
|
253
|
-
const _AIJIn = "AnnotationImportJobItems";
|
|
254
|
-
const _AMRSU = "AbortMultipartReadSetUpload";
|
|
255
|
-
const _AMRSUR = "AbortMultipartReadSetUploadRequest";
|
|
256
|
-
const _AMRSURb = "AbortMultipartReadSetUploadResponse";
|
|
257
|
-
const _ARSF = "ActivateReadSetFilter";
|
|
258
|
-
const _ARSJI = "ActivateReadSetJobItem";
|
|
259
|
-
const _ARSJL = "ActivateReadSetJobList";
|
|
260
|
-
const _ARSSI = "ActivateReadSetSourceItem";
|
|
261
|
-
const _ARSSL = "ActivateReadSetSourceList";
|
|
262
|
-
const _AS = "AcceptShare";
|
|
263
|
-
const _ASI = "AnnotationStoreItem";
|
|
264
|
-
const _ASIn = "AnnotationStoreItems";
|
|
265
|
-
const _ASR = "AcceptShareRequest";
|
|
266
|
-
const _ASRc = "AcceptShareResponse";
|
|
267
|
-
const _ASVI = "AnnotationStoreVersionItem";
|
|
268
|
-
const _ASVIn = "AnnotationStoreVersionItems";
|
|
269
|
-
const _BDRS = "BatchDeleteReadSet";
|
|
270
|
-
const _BDRSR = "BatchDeleteReadSetRequest";
|
|
271
|
-
const _BDRSRa = "BatchDeleteReadSetResponse";
|
|
272
|
-
const _CAIJ = "CancelAnnotationImportJob";
|
|
273
|
-
const _CAIR = "CancelAnnotationImportRequest";
|
|
274
|
-
const _CAIRa = "CancelAnnotationImportResponse";
|
|
275
|
-
const _CAS = "CreateAnnotationStore";
|
|
276
|
-
const _CASR = "CreateAnnotationStoreRequest";
|
|
277
|
-
const _CASRr = "CreateAnnotationStoreResponse";
|
|
278
|
-
const _CASV = "CreateAnnotationStoreVersion";
|
|
279
|
-
const _CASVR = "CreateAnnotationStoreVersionRequest";
|
|
280
|
-
const _CASVRr = "CreateAnnotationStoreVersionResponse";
|
|
281
|
-
const _CE = "ConflictException";
|
|
282
|
-
const _CMRSU = "CompleteMultipartReadSetUpload";
|
|
283
|
-
const _CMRSUR = "CompleteMultipartReadSetUploadRequest";
|
|
284
|
-
const _CMRSURo = "CompleteMultipartReadSetUploadResponse";
|
|
285
|
-
const _CMRSURr = "CreateMultipartReadSetUploadRequest";
|
|
286
|
-
const _CMRSURre = "CreateMultipartReadSetUploadResponse";
|
|
287
|
-
const _CMRSUr = "CreateMultipartReadSetUpload";
|
|
288
|
-
const _CR = "CancelRun";
|
|
289
|
-
const _CRC = "CreateRunCache";
|
|
290
|
-
const _CRCR = "CreateRunCacheRequest";
|
|
291
|
-
const _CRCRr = "CreateRunCacheResponse";
|
|
292
|
-
const _CRG = "CreateRunGroup";
|
|
293
|
-
const _CRGR = "CreateRunGroupRequest";
|
|
294
|
-
const _CRGRr = "CreateRunGroupResponse";
|
|
295
|
-
const _CRM = "ContainerRegistryMap";
|
|
296
|
-
const _CRR = "CancelRunRequest";
|
|
297
|
-
const _CRS = "CreateReferenceStore";
|
|
298
|
-
const _CRSR = "CreateReferenceStoreRequest";
|
|
299
|
-
const _CRSRr = "CreateReferenceStoreResponse";
|
|
300
|
-
const _CRSUPL = "CompleteReadSetUploadPartList";
|
|
301
|
-
const _CRSUPLI = "CompleteReadSetUploadPartListItem";
|
|
302
|
-
const _CS = "CreateShare";
|
|
303
|
-
const _CSR = "CreateShareRequest";
|
|
304
|
-
const _CSRr = "CreateShareResponse";
|
|
305
|
-
const _CSS = "CreateSequenceStore";
|
|
306
|
-
const _CSSR = "CreateSequenceStoreRequest";
|
|
307
|
-
const _CSSRr = "CreateSequenceStoreResponse";
|
|
308
|
-
const _CVIJ = "CancelVariantImportJob";
|
|
309
|
-
const _CVIR = "CancelVariantImportRequest";
|
|
310
|
-
const _CVIRa = "CancelVariantImportResponse";
|
|
311
|
-
const _CVS = "CreateVariantStore";
|
|
312
|
-
const _CVSR = "CreateVariantStoreRequest";
|
|
313
|
-
const _CVSRr = "CreateVariantStoreResponse";
|
|
314
|
-
const _CW = "CreateWorkflow";
|
|
315
|
-
const _CWR = "CreateWorkflowRequest";
|
|
316
|
-
const _CWRr = "CreateWorkflowResponse";
|
|
317
|
-
const _CWV = "CreateWorkflowVersion";
|
|
318
|
-
const _CWVR = "CreateWorkflowVersionRequest";
|
|
319
|
-
const _CWVRr = "CreateWorkflowVersionResponse";
|
|
320
|
-
const _DAS = "DeleteAnnotationStore";
|
|
321
|
-
const _DASR = "DeleteAnnotationStoreRequest";
|
|
322
|
-
const _DASRe = "DeleteAnnotationStoreResponse";
|
|
323
|
-
const _DASV = "DeleteAnnotationStoreVersions";
|
|
324
|
-
const _DASVR = "DeleteAnnotationStoreVersionsRequest";
|
|
325
|
-
const _DASVRe = "DeleteAnnotationStoreVersionsResponse";
|
|
326
|
-
const _DR = "DefinitionRepository";
|
|
327
|
-
const _DRC = "DeleteRunCache";
|
|
328
|
-
const _DRCR = "DeleteRunCacheRequest";
|
|
329
|
-
const _DRD = "DefinitionRepositoryDetails";
|
|
330
|
-
const _DRG = "DeleteRunGroup";
|
|
331
|
-
const _DRGR = "DeleteRunGroupRequest";
|
|
332
|
-
const _DRR = "DeleteReferenceRequest";
|
|
333
|
-
const _DRRe = "DeleteReferenceResponse";
|
|
334
|
-
const _DRRel = "DeleteRunRequest";
|
|
335
|
-
const _DRS = "DeleteReferenceStore";
|
|
336
|
-
const _DRSR = "DeleteReferenceStoreRequest";
|
|
337
|
-
const _DRSRe = "DeleteReferenceStoreResponse";
|
|
338
|
-
const _DRe = "DeleteReference";
|
|
339
|
-
const _DRel = "DeleteRun";
|
|
340
|
-
const _DS = "DeleteShare";
|
|
341
|
-
const _DSAP = "DeleteS3AccessPolicy";
|
|
342
|
-
const _DSAPR = "DeleteS3AccessPolicyRequest";
|
|
343
|
-
const _DSAPRe = "DeleteS3AccessPolicyResponse";
|
|
344
|
-
const _DSR = "DeleteShareRequest";
|
|
345
|
-
const _DSRe = "DeleteShareResponse";
|
|
346
|
-
const _DSS = "DeleteSequenceStore";
|
|
347
|
-
const _DSSR = "DeleteSequenceStoreRequest";
|
|
348
|
-
const _DSSRe = "DeleteSequenceStoreResponse";
|
|
349
|
-
const _DVS = "DeleteVariantStore";
|
|
350
|
-
const _DVSR = "DeleteVariantStoreRequest";
|
|
351
|
-
const _DVSRe = "DeleteVariantStoreResponse";
|
|
352
|
-
const _DW = "DeleteWorkflow";
|
|
353
|
-
const _DWR = "DeleteWorkflowRequest";
|
|
354
|
-
const _DWV = "DeleteWorkflowVersion";
|
|
355
|
-
const _DWVR = "DeleteWorkflowVersionRequest";
|
|
356
|
-
const _ERS = "ExportReadSet";
|
|
357
|
-
const _ERSD = "ExportReadSetDetail";
|
|
358
|
-
const _ERSDL = "ExportReadSetDetailList";
|
|
359
|
-
const _ERSF = "ExportReadSetFilter";
|
|
360
|
-
const _ERSJD = "ExportReadSetJobDetail";
|
|
361
|
-
const _ERSJDL = "ExportReadSetJobDetailList";
|
|
362
|
-
const _ERSL = "ExportReadSetList";
|
|
363
|
-
const _ET = "ETag";
|
|
364
|
-
const _F = "Filter";
|
|
365
|
-
const _FI = "FileInformation";
|
|
366
|
-
const _FO = "FormatOptions";
|
|
367
|
-
const _GAIJ = "GetAnnotationImportJob";
|
|
368
|
-
const _GAIR = "GetAnnotationImportRequest";
|
|
369
|
-
const _GAIRe = "GetAnnotationImportResponse";
|
|
370
|
-
const _GAS = "GetAnnotationStore";
|
|
371
|
-
const _GASR = "GetAnnotationStoreRequest";
|
|
372
|
-
const _GASRe = "GetAnnotationStoreResponse";
|
|
373
|
-
const _GASV = "GetAnnotationStoreVersion";
|
|
374
|
-
const _GASVR = "GetAnnotationStoreVersionRequest";
|
|
375
|
-
const _GASVRe = "GetAnnotationStoreVersionResponse";
|
|
376
|
-
const _GR = "GetReference";
|
|
377
|
-
const _GRC = "GetRunCache";
|
|
378
|
-
const _GRCR = "GetRunCacheRequest";
|
|
379
|
-
const _GRCRe = "GetRunCacheResponse";
|
|
380
|
-
const _GRG = "GetRunGroup";
|
|
381
|
-
const _GRGR = "GetRunGroupRequest";
|
|
382
|
-
const _GRGRe = "GetRunGroupResponse";
|
|
383
|
-
const _GRIJ = "GetReferenceImportJob";
|
|
384
|
-
const _GRIJR = "GetReferenceImportJobRequest";
|
|
385
|
-
const _GRIJRe = "GetReferenceImportJobResponse";
|
|
386
|
-
const _GRM = "GetReferenceMetadata";
|
|
387
|
-
const _GRMR = "GetReferenceMetadataRequest";
|
|
388
|
-
const _GRMRe = "GetReferenceMetadataResponse";
|
|
389
|
-
const _GRR = "GetReferenceRequest";
|
|
390
|
-
const _GRRe = "GetReferenceResponse";
|
|
391
|
-
const _GRRet = "GetRunRequest";
|
|
392
|
-
const _GRRetu = "GetRunResponse";
|
|
393
|
-
const _GRS = "GetReadSet";
|
|
394
|
-
const _GRSAJ = "GetReadSetActivationJob";
|
|
395
|
-
const _GRSAJR = "GetReadSetActivationJobRequest";
|
|
396
|
-
const _GRSAJRe = "GetReadSetActivationJobResponse";
|
|
397
|
-
const _GRSEJ = "GetReadSetExportJob";
|
|
398
|
-
const _GRSEJR = "GetReadSetExportJobRequest";
|
|
399
|
-
const _GRSEJRe = "GetReadSetExportJobResponse";
|
|
400
|
-
const _GRSIJ = "GetReadSetImportJob";
|
|
401
|
-
const _GRSIJR = "GetReadSetImportJobRequest";
|
|
402
|
-
const _GRSIJRe = "GetReadSetImportJobResponse";
|
|
403
|
-
const _GRSM = "GetReadSetMetadata";
|
|
404
|
-
const _GRSMR = "GetReadSetMetadataRequest";
|
|
405
|
-
const _GRSMRe = "GetReadSetMetadataResponse";
|
|
406
|
-
const _GRSR = "GetReadSetRequest";
|
|
407
|
-
const _GRSRe = "GetReadSetResponse";
|
|
408
|
-
const _GRSRet = "GetReferenceStoreRequest";
|
|
409
|
-
const _GRSRete = "GetReferenceStoreResponse";
|
|
410
|
-
const _GRSe = "GetReferenceStore";
|
|
411
|
-
const _GRT = "GetRunTask";
|
|
412
|
-
const _GRTR = "GetRunTaskRequest";
|
|
413
|
-
const _GRTRe = "GetRunTaskResponse";
|
|
414
|
-
const _GRe = "GetRun";
|
|
415
|
-
const _GS = "GetShare";
|
|
416
|
-
const _GSAP = "GetS3AccessPolicy";
|
|
417
|
-
const _GSAPR = "GetS3AccessPolicyRequest";
|
|
418
|
-
const _GSAPRe = "GetS3AccessPolicyResponse";
|
|
419
|
-
const _GSR = "GetShareRequest";
|
|
420
|
-
const _GSRe = "GetShareResponse";
|
|
421
|
-
const _GSS = "GetSequenceStore";
|
|
422
|
-
const _GSSR = "GetSequenceStoreRequest";
|
|
423
|
-
const _GSSRe = "GetSequenceStoreResponse";
|
|
424
|
-
const _GVIJ = "GetVariantImportJob";
|
|
425
|
-
const _GVIR = "GetVariantImportRequest";
|
|
426
|
-
const _GVIRe = "GetVariantImportResponse";
|
|
427
|
-
const _GVS = "GetVariantStore";
|
|
428
|
-
const _GVSR = "GetVariantStoreRequest";
|
|
429
|
-
const _GVSRe = "GetVariantStoreResponse";
|
|
430
|
-
const _GW = "GetWorkflow";
|
|
431
|
-
const _GWR = "GetWorkflowRequest";
|
|
432
|
-
const _GWRe = "GetWorkflowResponse";
|
|
433
|
-
const _GWV = "GetWorkflowVersion";
|
|
434
|
-
const _GWVR = "GetWorkflowVersionRequest";
|
|
435
|
-
const _GWVRe = "GetWorkflowVersionResponse";
|
|
436
|
-
const _ID = "ImageDetails";
|
|
437
|
-
const _IM = "ImageMapping";
|
|
438
|
-
const _IML = "ImageMappingsList";
|
|
439
|
-
const _IRF = "ImportReferenceFilter";
|
|
440
|
-
const _IRJI = "ImportReferenceJobItem";
|
|
441
|
-
const _IRJL = "ImportReferenceJobList";
|
|
442
|
-
const _IRSF = "ImportReadSetFilter";
|
|
443
|
-
const _IRSI = "ImportReferenceSourceItem";
|
|
444
|
-
const _IRSJI = "ImportReadSetJobItem";
|
|
445
|
-
const _IRSJL = "ImportReadSetJobList";
|
|
446
|
-
const _IRSL = "ImportReferenceSourceList";
|
|
447
|
-
const _IRSSI = "ImportReadSetSourceItem";
|
|
448
|
-
const _IRSSL = "ImportReadSetSourceList";
|
|
449
|
-
const _ISE = "InternalServerException";
|
|
450
|
-
const _LAIJ = "ListAnnotationImportJobs";
|
|
451
|
-
const _LAIJF = "ListAnnotationImportJobsFilter";
|
|
452
|
-
const _LAIJR = "ListAnnotationImportJobsRequest";
|
|
453
|
-
const _LAIJRi = "ListAnnotationImportJobsResponse";
|
|
454
|
-
const _LAS = "ListAnnotationStores";
|
|
455
|
-
const _LASF = "ListAnnotationStoresFilter";
|
|
456
|
-
const _LASR = "ListAnnotationStoresRequest";
|
|
457
|
-
const _LASRi = "ListAnnotationStoresResponse";
|
|
458
|
-
const _LASV = "ListAnnotationStoreVersions";
|
|
459
|
-
const _LASVF = "ListAnnotationStoreVersionsFilter";
|
|
460
|
-
const _LASVR = "ListAnnotationStoreVersionsRequest";
|
|
461
|
-
const _LASVRi = "ListAnnotationStoreVersionsResponse";
|
|
462
|
-
const _LMRSU = "ListMultipartReadSetUploads";
|
|
463
|
-
const _LMRSUR = "ListMultipartReadSetUploadsRequest";
|
|
464
|
-
const _LMRSURi = "ListMultipartReadSetUploadsResponse";
|
|
465
|
-
const _LR = "ListReferences";
|
|
466
|
-
const _LRC = "ListRunCaches";
|
|
467
|
-
const _LRCR = "ListRunCachesRequest";
|
|
468
|
-
const _LRCRi = "ListRunCachesResponse";
|
|
469
|
-
const _LRG = "ListRunGroups";
|
|
470
|
-
const _LRGR = "ListRunGroupsRequest";
|
|
471
|
-
const _LRGRi = "ListRunGroupsResponse";
|
|
472
|
-
const _LRIJ = "ListReferenceImportJobs";
|
|
473
|
-
const _LRIJR = "ListReferenceImportJobsRequest";
|
|
474
|
-
const _LRIJRi = "ListReferenceImportJobsResponse";
|
|
475
|
-
const _LRR = "ListReferencesRequest";
|
|
476
|
-
const _LRRi = "ListReferencesResponse";
|
|
477
|
-
const _LRRis = "ListRunsRequest";
|
|
478
|
-
const _LRRist = "ListRunsResponse";
|
|
479
|
-
const _LRS = "ListReadSets";
|
|
480
|
-
const _LRSAJ = "ListReadSetActivationJobs";
|
|
481
|
-
const _LRSAJR = "ListReadSetActivationJobsRequest";
|
|
482
|
-
const _LRSAJRi = "ListReadSetActivationJobsResponse";
|
|
483
|
-
const _LRSEJ = "ListReadSetExportJobs";
|
|
484
|
-
const _LRSEJR = "ListReadSetExportJobsRequest";
|
|
485
|
-
const _LRSEJRi = "ListReadSetExportJobsResponse";
|
|
486
|
-
const _LRSIJ = "ListReadSetImportJobs";
|
|
487
|
-
const _LRSIJR = "ListReadSetImportJobsRequest";
|
|
488
|
-
const _LRSIJRi = "ListReadSetImportJobsResponse";
|
|
489
|
-
const _LRSR = "ListReadSetsRequest";
|
|
490
|
-
const _LRSRi = "ListReadSetsResponse";
|
|
491
|
-
const _LRSRis = "ListReferenceStoresRequest";
|
|
492
|
-
const _LRSRist = "ListReferenceStoresResponse";
|
|
493
|
-
const _LRSUP = "ListReadSetUploadParts";
|
|
494
|
-
const _LRSUPR = "ListReadSetUploadPartsRequest";
|
|
495
|
-
const _LRSUPRi = "ListReadSetUploadPartsResponse";
|
|
496
|
-
const _LRSi = "ListReferenceStores";
|
|
497
|
-
const _LRT = "ListRunTasks";
|
|
498
|
-
const _LRTR = "ListRunTasksRequest";
|
|
499
|
-
const _LRTRi = "ListRunTasksResponse";
|
|
500
|
-
const _LRi = "ListRuns";
|
|
501
|
-
const _LS = "ListShares";
|
|
502
|
-
const _LSR = "ListSharesRequest";
|
|
503
|
-
const _LSRi = "ListSharesResponse";
|
|
504
|
-
const _LSS = "ListSequenceStores";
|
|
505
|
-
const _LSSR = "ListSequenceStoresRequest";
|
|
506
|
-
const _LSSRi = "ListSequenceStoresResponse";
|
|
507
|
-
const _LTFR = "ListTagsForResource";
|
|
508
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
509
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
510
|
-
const _LVIJ = "ListVariantImportJobs";
|
|
511
|
-
const _LVIJF = "ListVariantImportJobsFilter";
|
|
512
|
-
const _LVIJR = "ListVariantImportJobsRequest";
|
|
513
|
-
const _LVIJRi = "ListVariantImportJobsResponse";
|
|
514
|
-
const _LVS = "ListVariantStores";
|
|
515
|
-
const _LVSF = "ListVariantStoresFilter";
|
|
516
|
-
const _LVSR = "ListVariantStoresRequest";
|
|
517
|
-
const _LVSRi = "ListVariantStoresResponse";
|
|
518
|
-
const _LW = "ListWorkflows";
|
|
519
|
-
const _LWR = "ListWorkflowsRequest";
|
|
520
|
-
const _LWRi = "ListWorkflowsResponse";
|
|
521
|
-
const _LWV = "ListWorkflowVersions";
|
|
522
|
-
const _LWVR = "ListWorkflowVersionsRequest";
|
|
523
|
-
const _LWVRi = "ListWorkflowVersionsResponse";
|
|
524
|
-
const _MRSUL = "MultipartReadSetUploadList";
|
|
525
|
-
const _MRSULI = "MultipartReadSetUploadListItem";
|
|
526
|
-
const _NSOE = "NotSupportedOperationException";
|
|
527
|
-
const _PSAP = "PutS3AccessPolicy";
|
|
528
|
-
const _PSAPR = "PutS3AccessPolicyRequest";
|
|
529
|
-
const _PSAPRu = "PutS3AccessPolicyResponse";
|
|
530
|
-
const _R = "Range";
|
|
531
|
-
const _RCL = "RunCacheList";
|
|
532
|
-
const _RCLI = "RunCacheListItem";
|
|
533
|
-
const _RF = "ReferenceFiles";
|
|
534
|
-
const _RFe = "ReferenceFilter";
|
|
535
|
-
const _RGL = "RunGroupList";
|
|
536
|
-
const _RGLI = "RunGroupListItem";
|
|
537
|
-
const _RI = "ReferenceItem";
|
|
538
|
-
const _RL = "ReferenceList";
|
|
539
|
-
const _RLI = "ReferenceListItem";
|
|
540
|
-
const _RLIu = "RunListItem";
|
|
541
|
-
const _RLL = "RunLogLocation";
|
|
542
|
-
const _RLu = "RunList";
|
|
543
|
-
const _RM = "ReadmeMarkdown";
|
|
544
|
-
const _RML = "RegistryMappingsList";
|
|
545
|
-
const _RMe = "RegistryMapping";
|
|
546
|
-
const _RNFE = "ResourceNotFoundException";
|
|
547
|
-
const _RNSE = "RangeNotSatisfiableException";
|
|
548
|
-
const _RO = "ReadOptions";
|
|
549
|
-
const _RSB = "ReferenceStreamingBlob";
|
|
550
|
-
const _RSBE = "ReadSetBatchError";
|
|
551
|
-
const _RSBEL = "ReadSetBatchErrorList";
|
|
552
|
-
const _RSD = "ReferenceStoreDetail";
|
|
553
|
-
const _RSDL = "ReferenceStoreDetailList";
|
|
554
|
-
const _RSF = "ReadSetFiles";
|
|
555
|
-
const _RSFe = "ReadSetFilter";
|
|
556
|
-
const _RSFef = "ReferenceStoreFilter";
|
|
557
|
-
const _RSL = "ReadSetList";
|
|
558
|
-
const _RSLI = "ReadSetListItem";
|
|
559
|
-
const _RSPSB = "ReadSetPartStreamingBlob";
|
|
560
|
-
const _RSSA = "ReadSetS3Access";
|
|
561
|
-
const _RSSB = "ReadSetStreamingBlob";
|
|
562
|
-
const _RSUPL = "ReadSetUploadPartList";
|
|
563
|
-
const _RSUPLF = "ReadSetUploadPartListFilter";
|
|
564
|
-
const _RSUPLI = "ReadSetUploadPartListItem";
|
|
565
|
-
const _RTE = "RequestTimeoutException";
|
|
566
|
-
const _S = "Schema";
|
|
567
|
-
const _SAC = "S3AccessConfig";
|
|
568
|
-
const _SAIJ = "StartAnnotationImportJob";
|
|
569
|
-
const _SAIR = "StartAnnotationImportRequest";
|
|
570
|
-
const _SAIRt = "StartAnnotationImportResponse";
|
|
571
|
-
const _SAP = "S3AccessPolicy";
|
|
572
|
-
const _SC = "SseConfig";
|
|
573
|
-
const _SD = "ShareDetails";
|
|
574
|
-
const _SDL = "ShareDetailsList";
|
|
575
|
-
const _SF = "SourceFiles";
|
|
576
|
-
const _SI = "SequenceInformation";
|
|
577
|
-
const _SO = "StoreOptions";
|
|
578
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
579
|
-
const _SR = "SourceReference";
|
|
580
|
-
const _SRIJ = "StartReferenceImportJob";
|
|
581
|
-
const _SRIJR = "StartReferenceImportJobRequest";
|
|
582
|
-
const _SRIJRt = "StartReferenceImportJobResponse";
|
|
583
|
-
const _SRIJSI = "StartReferenceImportJobSourceItem";
|
|
584
|
-
const _SRIJSL = "StartReferenceImportJobSourceList";
|
|
585
|
-
const _SRR = "StartRunRequest";
|
|
586
|
-
const _SRRt = "StartRunResponse";
|
|
587
|
-
const _SRSAJ = "StartReadSetActivationJob";
|
|
588
|
-
const _SRSAJR = "StartReadSetActivationJobRequest";
|
|
589
|
-
const _SRSAJRt = "StartReadSetActivationJobResponse";
|
|
590
|
-
const _SRSAJSI = "StartReadSetActivationJobSourceItem";
|
|
591
|
-
const _SRSAJSL = "StartReadSetActivationJobSourceList";
|
|
592
|
-
const _SRSEJ = "StartReadSetExportJob";
|
|
593
|
-
const _SRSEJR = "StartReadSetExportJobRequest";
|
|
594
|
-
const _SRSEJRt = "StartReadSetExportJobResponse";
|
|
595
|
-
const _SRSIJ = "StartReadSetImportJob";
|
|
596
|
-
const _SRSIJR = "StartReadSetImportJobRequest";
|
|
597
|
-
const _SRSIJRt = "StartReadSetImportJobResponse";
|
|
598
|
-
const _SRSIJSI = "StartReadSetImportJobSourceItem";
|
|
599
|
-
const _SRSIJSL = "StartReadSetImportJobSourceList";
|
|
600
|
-
const _SRt = "StartRun";
|
|
601
|
-
const _SSD = "SequenceStoreDetail";
|
|
602
|
-
const _SSDL = "SequenceStoreDetailList";
|
|
603
|
-
const _SSF = "SequenceStoreFilter";
|
|
604
|
-
const _SSSA = "SequenceStoreS3Access";
|
|
605
|
-
const _SVIJ = "StartVariantImportJob";
|
|
606
|
-
const _SVIR = "StartVariantImportRequest";
|
|
607
|
-
const _SVIRt = "StartVariantImportResponse";
|
|
608
|
-
const _TE = "ThrottlingException";
|
|
609
|
-
const _TL = "TaskList";
|
|
610
|
-
const _TLI = "TaskListItem";
|
|
611
|
-
const _TO = "TsvOptions";
|
|
612
|
-
const _TR = "TagResource";
|
|
613
|
-
const _TRR = "TagResourceRequest";
|
|
614
|
-
const _TRRa = "TagResourceResponse";
|
|
615
|
-
const _TSO = "TsvStoreOptions";
|
|
616
|
-
const _TVO = "TsvVersionOptions";
|
|
617
|
-
const _UAS = "UpdateAnnotationStore";
|
|
618
|
-
const _UASR = "UpdateAnnotationStoreRequest";
|
|
619
|
-
const _UASRp = "UpdateAnnotationStoreResponse";
|
|
620
|
-
const _UASV = "UpdateAnnotationStoreVersion";
|
|
621
|
-
const _UASVR = "UpdateAnnotationStoreVersionRequest";
|
|
622
|
-
const _UASVRp = "UpdateAnnotationStoreVersionResponse";
|
|
623
|
-
const _UR = "UntagResource";
|
|
624
|
-
const _URC = "UpdateRunCache";
|
|
625
|
-
const _URCR = "UpdateRunCacheRequest";
|
|
626
|
-
const _URG = "UpdateRunGroup";
|
|
627
|
-
const _URGR = "UpdateRunGroupRequest";
|
|
628
|
-
const _URR = "UntagResourceRequest";
|
|
629
|
-
const _URRn = "UntagResourceResponse";
|
|
630
|
-
const _URSP = "UploadReadSetPart";
|
|
631
|
-
const _URSPR = "UploadReadSetPartRequest";
|
|
632
|
-
const _URSPRp = "UploadReadSetPartResponse";
|
|
633
|
-
const _USS = "UpdateSequenceStore";
|
|
634
|
-
const _USSR = "UpdateSequenceStoreRequest";
|
|
635
|
-
const _USSRp = "UpdateSequenceStoreResponse";
|
|
636
|
-
const _UVS = "UpdateVariantStore";
|
|
637
|
-
const _UVSR = "UpdateVariantStoreRequest";
|
|
638
|
-
const _UVSRp = "UpdateVariantStoreResponse";
|
|
639
|
-
const _UW = "UpdateWorkflow";
|
|
640
|
-
const _UWR = "UpdateWorkflowRequest";
|
|
641
|
-
const _UWV = "UpdateWorkflowVersion";
|
|
642
|
-
const _UWVR = "UpdateWorkflowVersionRequest";
|
|
643
|
-
const _VDE = "VersionDeleteError";
|
|
644
|
-
const _VDEL = "VersionDeleteErrorList";
|
|
645
|
-
const _VE = "ValidationException";
|
|
646
|
-
const _VIID = "VariantImportItemDetail";
|
|
647
|
-
const _VIIDa = "VariantImportItemDetails";
|
|
648
|
-
const _VIIS = "VariantImportItemSource";
|
|
649
|
-
const _VIISa = "VariantImportItemSources";
|
|
650
|
-
const _VIJI = "VariantImportJobItem";
|
|
651
|
-
const _VIJIa = "VariantImportJobItems";
|
|
652
|
-
const _VO = "VcfOptions";
|
|
653
|
-
const _VOe = "VersionOptions";
|
|
654
|
-
const _VSI = "VariantStoreItem";
|
|
655
|
-
const _VSIa = "VariantStoreItems";
|
|
656
|
-
const _WL = "WorkflowList";
|
|
657
|
-
const _WLI = "WorkflowListItem";
|
|
658
|
-
const _WP = "WorkflowParameter";
|
|
659
|
-
const _WPT = "WorkflowParameterTemplate";
|
|
660
|
-
const _WVL = "WorkflowVersionList";
|
|
661
|
-
const _WVLI = "WorkflowVersionListItem";
|
|
662
|
-
const _a = "application/json";
|
|
663
|
-
const _aF = "annotationFields";
|
|
664
|
-
const _aIJ = "annotationImportJobs";
|
|
665
|
-
const _aJ = "activationJobs";
|
|
666
|
-
const _aLL = "accessLogLocation";
|
|
667
|
-
const _aS = "annotationStores";
|
|
668
|
-
const _aSV = "annotationStoreVersions";
|
|
669
|
-
const _aT = "annotationType";
|
|
670
|
-
const _ac = "accelerators";
|
|
671
|
-
const _al = "algorithm";
|
|
672
|
-
const _ali = "alignment";
|
|
673
|
-
const _ar = "arn";
|
|
674
|
-
const _c = "client";
|
|
675
|
-
const _cA = "createdAfter";
|
|
676
|
-
const _cAo = "connectionArn";
|
|
677
|
-
const _cB = "createdBefore";
|
|
678
|
-
const _cBOI = "cacheBucketOwnerId";
|
|
679
|
-
const _cBa = "cacheBehavior";
|
|
680
|
-
const _cH = "cacheHit";
|
|
681
|
-
const _cI = "cacheId";
|
|
682
|
-
const _cJI = "creationJobId";
|
|
683
|
-
const _cL = "contentLength";
|
|
684
|
-
const _cRM = "containerRegistryMap";
|
|
685
|
-
const _cRMU = "containerRegistryMapUri";
|
|
686
|
-
const _cSL = "cacheS3Location";
|
|
687
|
-
const _cSU = "cacheS3Uri";
|
|
688
|
-
const _cT = "creationTime";
|
|
689
|
-
const _cTl = "clientToken";
|
|
690
|
-
const _cTo = "completionTime";
|
|
691
|
-
const _cTr = "creationType";
|
|
692
|
-
const _ch = "checksum";
|
|
693
|
-
const _co = "comment";
|
|
694
|
-
const _cod = "code";
|
|
695
|
-
const _cp = "cpus";
|
|
696
|
-
const _d = "description";
|
|
697
|
-
const _dI = "destinationImage";
|
|
698
|
-
const _dN = "destinationName";
|
|
699
|
-
const _dR = "definitionRepository";
|
|
700
|
-
const _dRD = "definitionRepositoryDetails";
|
|
701
|
-
const _dU = "definitionUri";
|
|
702
|
-
const _dZ = "definitionZip";
|
|
703
|
-
const _de = "destination";
|
|
704
|
-
const _def = "definition";
|
|
705
|
-
const _di = "digest";
|
|
706
|
-
const _e = "error";
|
|
707
|
-
const _eAI = "ecrAccountId";
|
|
708
|
-
const _eFP = "excludeFilePatterns";
|
|
709
|
-
const _eJ = "exportJobs";
|
|
710
|
-
const _eLS = "engineLogStream";
|
|
711
|
-
const _eQ = "escapeQuotes";
|
|
712
|
-
const _eRP = "ecrRepositoryPrefix";
|
|
713
|
-
const _eTAF = "eTagAlgorithmFamily";
|
|
714
|
-
const _eV = "engineVersion";
|
|
715
|
-
const _en = "engine";
|
|
716
|
-
const _enc = "encoding";
|
|
717
|
-
const _end = "endpoint";
|
|
718
|
-
const _er = "errors";
|
|
719
|
-
const _es = "escape";
|
|
720
|
-
const _et = "etag";
|
|
721
|
-
const _ex = "export";
|
|
722
|
-
const _f = "force";
|
|
723
|
-
const _fL = "fallbackLocation";
|
|
724
|
-
const _fO = "formatOptions";
|
|
725
|
-
const _fR = "failureReason";
|
|
726
|
-
const _fRI = "fullRepositoryId";
|
|
727
|
-
const _fT = "fileType";
|
|
728
|
-
const _fTH = "formatToHeader";
|
|
729
|
-
const _fi = "files";
|
|
730
|
-
const _fil = "file";
|
|
731
|
-
const _filt = "filter";
|
|
732
|
-
const _g = "gpus";
|
|
733
|
-
const _gF = "generatedFrom";
|
|
734
|
-
const _h = "header";
|
|
735
|
-
const _hE = "httpError";
|
|
736
|
-
const _hH = "httpHeader";
|
|
737
|
-
const _hQ = "httpQuery";
|
|
738
|
-
const _ht = "http";
|
|
739
|
-
const _i = "id";
|
|
740
|
-
const _iD = "imageDetails";
|
|
741
|
-
const _iDm = "imageDigest";
|
|
742
|
-
const _iFF = "ignoreFilterField";
|
|
743
|
-
const _iJ = "importJobs";
|
|
744
|
-
const _iM = "imageMappings";
|
|
745
|
-
const _iQF = "ignoreQualField";
|
|
746
|
-
const _iT = "instanceType";
|
|
747
|
-
const _id = "ids";
|
|
748
|
-
const _im = "image";
|
|
749
|
-
const _in = "index";
|
|
750
|
-
const _it = "items";
|
|
751
|
-
const _jI = "jobId";
|
|
752
|
-
const _jS = "jobStatus";
|
|
753
|
-
const _kA = "keyArn";
|
|
754
|
-
const _lL = "logLevel";
|
|
755
|
-
const _lLo = "logLocation";
|
|
756
|
-
const _lS = "logStream";
|
|
757
|
-
const _lSi = "lineSep";
|
|
758
|
-
const _lUT = "lastUpdatedTime";
|
|
759
|
-
const _m = "message";
|
|
760
|
-
const _mC = "maxCpus";
|
|
761
|
-
const _mD = "maxDuration";
|
|
762
|
-
const _mG = "maxGpus";
|
|
763
|
-
const _mR = "maxRuns";
|
|
764
|
-
const _mRa = "maxResults";
|
|
765
|
-
const _mT = "mediaType";
|
|
766
|
-
const _ma = "main";
|
|
767
|
-
const _md = "md5";
|
|
768
|
-
const _me = "memory";
|
|
769
|
-
const _met = "metadata";
|
|
770
|
-
const _n = "name";
|
|
771
|
-
const _nT = "nextToken";
|
|
772
|
-
const _nV = "numVersions";
|
|
773
|
-
const _o = "optional";
|
|
774
|
-
const _oI = "ownerId";
|
|
775
|
-
const _oU = "outputUri";
|
|
776
|
-
const _p = "parts";
|
|
777
|
-
const _pE = "providerEndpoint";
|
|
778
|
-
const _pN = "partNumber";
|
|
779
|
-
const _pS = "partSource";
|
|
780
|
-
const _pSLT = "propagatedSetLevelTags";
|
|
781
|
-
const _pSa = "partSize";
|
|
782
|
-
const _pSr = "principalSubscriber";
|
|
783
|
-
const _pT = "parameterTemplate";
|
|
784
|
-
const _pTP = "parameterTemplatePath";
|
|
785
|
-
const _pTr = "providerType";
|
|
786
|
-
const _pa = "payload";
|
|
787
|
-
const _par = "parameters";
|
|
788
|
-
const _pr = "priority";
|
|
789
|
-
const _q = "quote";
|
|
790
|
-
const _qA = "quoteAll";
|
|
791
|
-
const _r = "reference";
|
|
792
|
-
const _rA = "roleArn";
|
|
793
|
-
const _rAe = "referenceArn";
|
|
794
|
-
const _rAes = "resourceArn";
|
|
795
|
-
const _rAeso = "resourceArns";
|
|
796
|
-
const _rD = "resourceDigests";
|
|
797
|
-
const _rGI = "runGroupId";
|
|
798
|
-
const _rI = "requestId";
|
|
799
|
-
const _rIe = "referenceId";
|
|
800
|
-
const _rIes = "resourceId";
|
|
801
|
-
const _rIu = "runId";
|
|
802
|
-
const _rL = "requiresLength";
|
|
803
|
-
const _rLN = "runLeftNormalization";
|
|
804
|
-
const _rLS = "runLogStream";
|
|
805
|
-
const _rM = "registryMappings";
|
|
806
|
-
const _rMe = "readmeMarkdown";
|
|
807
|
-
const _rMet = "retentionMode";
|
|
808
|
-
const _rO = "resourceOwner";
|
|
809
|
-
const _rOU = "runOutputUri";
|
|
810
|
-
const _rOe = "readOptions";
|
|
811
|
-
const _rP = "readmePath";
|
|
812
|
-
const _rS = "readSets";
|
|
813
|
-
const _rSI = "readSetId";
|
|
814
|
-
const _rSIe = "referenceStoreId";
|
|
815
|
-
const _rSe = "referenceStores";
|
|
816
|
-
const _rU = "readmeUri";
|
|
817
|
-
const _ra = "range";
|
|
818
|
-
const _re = "readme";
|
|
819
|
-
const _ref = "references";
|
|
820
|
-
const _s = "streaming";
|
|
821
|
-
const _sA = "storeArn";
|
|
822
|
-
const _sAC = "s3AccessConfig";
|
|
823
|
-
const _sAP = "s3AccessPolicy";
|
|
824
|
-
const _sAPA = "s3AccessPointArn";
|
|
825
|
-
const _sAc = "s3Access";
|
|
826
|
-
const _sB = "startedBy";
|
|
827
|
-
const _sC = "sseConfig";
|
|
828
|
-
const _sCt = "storageCapacity";
|
|
829
|
-
const _sF = "storeFormat";
|
|
830
|
-
const _sFT = "sourceFileType";
|
|
831
|
-
const _sFo = "sourceFiles";
|
|
832
|
-
const _sFou = "sourceFile";
|
|
833
|
-
const _sI = "shareId";
|
|
834
|
-
const _sIa = "sampleId";
|
|
835
|
-
const _sIe = "sequenceInformation";
|
|
836
|
-
const _sIo = "sourceImage";
|
|
837
|
-
const _sIt = "storeId";
|
|
838
|
-
const _sIu = "subjectId";
|
|
839
|
-
const _sM = "statusMessage";
|
|
840
|
-
const _sN = "shareName";
|
|
841
|
-
const _sNt = "storeName";
|
|
842
|
-
const _sO = "storeOptions";
|
|
843
|
-
const _sR = "sourceReference";
|
|
844
|
-
const _sS = "sequenceStores";
|
|
845
|
-
const _sSB = "storeSizeBytes";
|
|
846
|
-
const _sSI = "sequenceStoreId";
|
|
847
|
-
const _sT = "storageType";
|
|
848
|
-
const _sTt = "startTime";
|
|
849
|
-
const _sTta = "startingToken";
|
|
850
|
-
const _sTto = "stopTime";
|
|
851
|
-
const _sTtor = "storeType";
|
|
852
|
-
const _sU = "s3Uri";
|
|
853
|
-
const _sc = "schema";
|
|
854
|
-
const _se = "server";
|
|
855
|
-
const _sep = "sep";
|
|
856
|
-
const _sh = "share";
|
|
857
|
-
const _sha = "shares";
|
|
858
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.omics";
|
|
859
|
-
const _so = "source";
|
|
860
|
-
const _sou = "source1";
|
|
861
|
-
const _sour = "source2";
|
|
862
|
-
const _sourc = "sources";
|
|
863
|
-
const _st = "status";
|
|
864
|
-
const _t = "text/markdown";
|
|
865
|
-
const _tBC = "totalBaseCount";
|
|
866
|
-
const _tI = "taskId";
|
|
867
|
-
const _tK = "tagKeys";
|
|
868
|
-
const _tO = "tsvOptions";
|
|
869
|
-
const _tP = "totalParts";
|
|
870
|
-
const _tRC = "totalReadCount";
|
|
871
|
-
const _tSO = "tsvStoreOptions";
|
|
872
|
-
const _tVO = "tsvVersionOptions";
|
|
873
|
-
const _ta = "tags";
|
|
874
|
-
const _ty = "type";
|
|
875
|
-
const _u = "uuid";
|
|
876
|
-
const _uA = "updatedAfter";
|
|
877
|
-
const _uB = "updatedBefore";
|
|
878
|
-
const _uI = "uploadId";
|
|
879
|
-
const _uRP = "upstreamRepositoryPrefix";
|
|
880
|
-
const _uRU = "upstreamRegistryUrl";
|
|
881
|
-
const _uT = "updateTime";
|
|
882
|
-
const _up = "uploads";
|
|
883
|
-
const _v = "versions";
|
|
884
|
-
const _vA = "versionArn";
|
|
885
|
-
const _vIJ = "variantImportJobs";
|
|
886
|
-
const _vN = "versionName";
|
|
887
|
-
const _vO = "versionOptions";
|
|
888
|
-
const _vOc = "vcfOptions";
|
|
889
|
-
const _vS = "variantStores";
|
|
890
|
-
const _vSB = "versionSizeBytes";
|
|
891
|
-
const _va = "value";
|
|
892
|
-
const _wBOI = "workflowBucketOwnerId";
|
|
893
|
-
const _wI = "workflowId";
|
|
894
|
-
const _wOI = "workflowOwnerId";
|
|
895
|
-
const _wT = "workflowType";
|
|
896
|
-
const _wU = "workflowUuid";
|
|
897
|
-
const _wVN = "workflowVersionName";
|
|
898
|
-
const n0 = "com.amazonaws.omics";
|
|
899
|
-
var ReadmeMarkdown = [0, n0, _RM, { [_mT]: _t }, 0];
|
|
900
|
-
var ReadSetPartStreamingBlob = [0, n0, _RSPSB, { [_rL]: 1, [_s]: 1 }, 42];
|
|
901
|
-
var ReadSetStreamingBlob = [0, n0, _RSSB, { [_s]: 1 }, 42];
|
|
902
|
-
var ReferenceStreamingBlob = [0, n0, _RSB, { [_s]: 1 }, 42];
|
|
903
|
-
var S3AccessPolicy = [0, n0, _SAP, { [_mT]: _a }, 0];
|
|
904
|
-
var AbortMultipartReadSetUploadRequest$ = [3, n0, _AMRSUR,
|
|
905
|
-
0,
|
|
906
|
-
[_sSI, _uI],
|
|
907
|
-
[[0, 1], [0, 1]], 2
|
|
908
|
-
];
|
|
909
|
-
var AbortMultipartReadSetUploadResponse$ = [3, n0, _AMRSURb,
|
|
910
|
-
0,
|
|
911
|
-
[],
|
|
912
|
-
[]
|
|
913
|
-
];
|
|
914
|
-
var AcceptShareRequest$ = [3, n0, _ASR,
|
|
915
|
-
0,
|
|
916
|
-
[_sI],
|
|
917
|
-
[[0, 1]], 1
|
|
918
|
-
];
|
|
919
|
-
var AcceptShareResponse$ = [3, n0, _ASRc,
|
|
920
|
-
0,
|
|
921
|
-
[_st],
|
|
922
|
-
[0]
|
|
923
|
-
];
|
|
924
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
925
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
926
|
-
[_m],
|
|
927
|
-
[0], 1
|
|
928
|
-
];
|
|
929
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
930
|
-
var ActivateReadSetFilter$ = [3, n0, _ARSF,
|
|
931
|
-
0,
|
|
932
|
-
[_st, _cA, _cB],
|
|
933
|
-
[0, 5, 5]
|
|
934
|
-
];
|
|
935
|
-
var ActivateReadSetJobItem$ = [3, n0, _ARSJI,
|
|
936
|
-
0,
|
|
937
|
-
[_i, _sSI, _st, _cT, _cTo],
|
|
938
|
-
[0, 0, 0, 5, 5], 4
|
|
939
|
-
];
|
|
940
|
-
var ActivateReadSetSourceItem$ = [3, n0, _ARSSI,
|
|
941
|
-
0,
|
|
942
|
-
[_rSI, _st, _sM],
|
|
943
|
-
[0, 0, 0], 2
|
|
944
|
-
];
|
|
945
|
-
var AnnotationImportItemDetail$ = [3, n0, _AIID,
|
|
946
|
-
0,
|
|
947
|
-
[_so, _jS],
|
|
948
|
-
[0, 0], 2
|
|
949
|
-
];
|
|
950
|
-
var AnnotationImportItemSource$ = [3, n0, _AIIS,
|
|
951
|
-
0,
|
|
952
|
-
[_so],
|
|
953
|
-
[0], 1
|
|
954
|
-
];
|
|
955
|
-
var AnnotationImportJobItem$ = [3, n0, _AIJI,
|
|
956
|
-
0,
|
|
957
|
-
[_i, _dN, _vN, _rA, _st, _cT, _uT, _cTo, _rLN, _aF],
|
|
958
|
-
[0, 0, 0, 0, 0, 5, 5, 5, 2, 128 | 0], 7
|
|
959
|
-
];
|
|
960
|
-
var AnnotationStoreItem$ = [3, n0, _ASI,
|
|
961
|
-
0,
|
|
962
|
-
[_i, _r, _st, _sA, _n, _sF, _d, _sC, _cT, _uT, _sM, _sSB],
|
|
963
|
-
[0, () => ReferenceItem$, 0, 0, 0, 0, 0, () => SseConfig$, 5, 5, 0, 1], 12
|
|
964
|
-
];
|
|
965
|
-
var AnnotationStoreVersionItem$ = [3, n0, _ASVI,
|
|
966
|
-
0,
|
|
967
|
-
[_sIt, _i, _st, _vA, _n, _vN, _d, _cT, _uT, _sM, _vSB],
|
|
968
|
-
[0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 1], 11
|
|
969
|
-
];
|
|
970
|
-
var BatchDeleteReadSetRequest$ = [3, n0, _BDRSR,
|
|
971
|
-
0,
|
|
972
|
-
[_id, _sSI],
|
|
973
|
-
[64 | 0, [0, 1]], 2
|
|
974
|
-
];
|
|
975
|
-
var BatchDeleteReadSetResponse$ = [3, n0, _BDRSRa,
|
|
976
|
-
0,
|
|
977
|
-
[_er],
|
|
978
|
-
[() => ReadSetBatchErrorList]
|
|
979
|
-
];
|
|
980
|
-
var CancelAnnotationImportRequest$ = [3, n0, _CAIR,
|
|
981
|
-
0,
|
|
982
|
-
[_jI],
|
|
983
|
-
[[0, 1]], 1
|
|
984
|
-
];
|
|
985
|
-
var CancelAnnotationImportResponse$ = [3, n0, _CAIRa,
|
|
986
|
-
0,
|
|
987
|
-
[],
|
|
988
|
-
[]
|
|
989
|
-
];
|
|
990
|
-
var CancelRunRequest$ = [3, n0, _CRR,
|
|
991
|
-
0,
|
|
992
|
-
[_i],
|
|
993
|
-
[[0, 1]], 1
|
|
994
|
-
];
|
|
995
|
-
var CancelVariantImportRequest$ = [3, n0, _CVIR,
|
|
996
|
-
0,
|
|
997
|
-
[_jI],
|
|
998
|
-
[[0, 1]], 1
|
|
999
|
-
];
|
|
1000
|
-
var CancelVariantImportResponse$ = [3, n0, _CVIRa,
|
|
1001
|
-
0,
|
|
1002
|
-
[],
|
|
1003
|
-
[]
|
|
1004
|
-
];
|
|
1005
|
-
var CompleteMultipartReadSetUploadRequest$ = [3, n0, _CMRSUR,
|
|
1006
|
-
0,
|
|
1007
|
-
[_sSI, _uI, _p],
|
|
1008
|
-
[[0, 1], [0, 1], () => CompleteReadSetUploadPartList], 3
|
|
1009
|
-
];
|
|
1010
|
-
var CompleteMultipartReadSetUploadResponse$ = [3, n0, _CMRSURo,
|
|
1011
|
-
0,
|
|
1012
|
-
[_rSI],
|
|
1013
|
-
[0], 1
|
|
1014
|
-
];
|
|
1015
|
-
var CompleteReadSetUploadPartListItem$ = [3, n0, _CRSUPLI,
|
|
1016
|
-
0,
|
|
1017
|
-
[_pN, _pS, _ch],
|
|
1018
|
-
[1, 0, 0], 3
|
|
1019
|
-
];
|
|
1020
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
1021
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
1022
|
-
[_m],
|
|
1023
|
-
[0], 1
|
|
1024
|
-
];
|
|
1025
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
1026
|
-
var ContainerRegistryMap$ = [3, n0, _CRM,
|
|
1027
|
-
0,
|
|
1028
|
-
[_rM, _iM],
|
|
1029
|
-
[() => RegistryMappingsList, () => ImageMappingsList]
|
|
1030
|
-
];
|
|
1031
|
-
var CreateAnnotationStoreRequest$ = [3, n0, _CASR,
|
|
1032
|
-
0,
|
|
1033
|
-
[_sF, _r, _n, _d, _ta, _vN, _sC, _sO],
|
|
1034
|
-
[0, () => ReferenceItem$, 0, 0, 128 | 0, 0, () => SseConfig$, () => StoreOptions$], 1
|
|
1035
|
-
];
|
|
1036
|
-
var CreateAnnotationStoreResponse$ = [3, n0, _CASRr,
|
|
1037
|
-
0,
|
|
1038
|
-
[_i, _st, _n, _vN, _cT, _r, _sF, _sO],
|
|
1039
|
-
[0, 0, 0, 0, 5, () => ReferenceItem$, 0, () => StoreOptions$], 5
|
|
1040
|
-
];
|
|
1041
|
-
var CreateAnnotationStoreVersionRequest$ = [3, n0, _CASVR,
|
|
1042
|
-
0,
|
|
1043
|
-
[_n, _vN, _d, _vO, _ta],
|
|
1044
|
-
[[0, 1], 0, 0, () => VersionOptions$, 128 | 0], 2
|
|
1045
|
-
];
|
|
1046
|
-
var CreateAnnotationStoreVersionResponse$ = [3, n0, _CASVRr,
|
|
1047
|
-
0,
|
|
1048
|
-
[_i, _vN, _sIt, _n, _st, _cT, _vO],
|
|
1049
|
-
[0, 0, 0, 0, 0, 5, () => VersionOptions$], 6
|
|
1050
|
-
];
|
|
1051
|
-
var CreateMultipartReadSetUploadRequest$ = [3, n0, _CMRSURr,
|
|
1052
|
-
0,
|
|
1053
|
-
[_sSI, _sFT, _sIu, _sIa, _n, _cTl, _gF, _rAe, _d, _ta],
|
|
1054
|
-
[[0, 1], 0, 0, 0, 0, 0, 0, 0, 0, 128 | 0], 5
|
|
1055
|
-
];
|
|
1056
|
-
var CreateMultipartReadSetUploadResponse$ = [3, n0, _CMRSURre,
|
|
1057
|
-
0,
|
|
1058
|
-
[_sSI, _uI, _sFT, _sIu, _sIa, _rAe, _cT, _gF, _n, _d, _ta],
|
|
1059
|
-
[0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 128 | 0], 7
|
|
1060
|
-
];
|
|
1061
|
-
var CreateReferenceStoreRequest$ = [3, n0, _CRSR,
|
|
1062
|
-
0,
|
|
1063
|
-
[_n, _d, _sC, _ta, _cTl],
|
|
1064
|
-
[0, 0, () => SseConfig$, 128 | 0, 0], 1
|
|
1065
|
-
];
|
|
1066
|
-
var CreateReferenceStoreResponse$ = [3, n0, _CRSRr,
|
|
1067
|
-
0,
|
|
1068
|
-
[_i, _ar, _cT, _n, _d, _sC],
|
|
1069
|
-
[0, 0, 5, 0, 0, () => SseConfig$], 3
|
|
1070
|
-
];
|
|
1071
|
-
var CreateRunCacheRequest$ = [3, n0, _CRCR,
|
|
1072
|
-
0,
|
|
1073
|
-
[_cSL, _cBa, _d, _n, _rI, _ta, _cBOI],
|
|
1074
|
-
[0, 0, 0, 0, [0, 4], 128 | 0, 0], 1
|
|
1075
|
-
];
|
|
1076
|
-
var CreateRunCacheResponse$ = [3, n0, _CRCRr,
|
|
1077
|
-
0,
|
|
1078
|
-
[_ar, _i, _st, _ta],
|
|
1079
|
-
[0, 0, 0, 128 | 0]
|
|
1080
|
-
];
|
|
1081
|
-
var CreateRunGroupRequest$ = [3, n0, _CRGR,
|
|
1082
|
-
0,
|
|
1083
|
-
[_n, _mC, _mR, _mD, _ta, _rI, _mG],
|
|
1084
|
-
[0, 1, 1, 1, 128 | 0, [0, 4], 1]
|
|
1085
|
-
];
|
|
1086
|
-
var CreateRunGroupResponse$ = [3, n0, _CRGRr,
|
|
1087
|
-
0,
|
|
1088
|
-
[_ar, _i, _ta],
|
|
1089
|
-
[0, 0, 128 | 0]
|
|
1090
|
-
];
|
|
1091
|
-
var CreateSequenceStoreRequest$ = [3, n0, _CSSR,
|
|
1092
|
-
0,
|
|
1093
|
-
[_n, _d, _sC, _ta, _cTl, _fL, _eTAF, _pSLT, _sAC],
|
|
1094
|
-
[0, 0, () => SseConfig$, 128 | 0, [0, 4], 0, 0, 64 | 0, () => S3AccessConfig$], 1
|
|
1095
|
-
];
|
|
1096
|
-
var CreateSequenceStoreResponse$ = [3, n0, _CSSRr,
|
|
1097
|
-
0,
|
|
1098
|
-
[_i, _ar, _cT, _n, _d, _sC, _fL, _eTAF, _st, _sM, _pSLT, _sAc],
|
|
1099
|
-
[0, 0, 5, 0, 0, () => SseConfig$, 0, 0, 0, 0, 64 | 0, () => SequenceStoreS3Access$], 3
|
|
1100
|
-
];
|
|
1101
|
-
var CreateShareRequest$ = [3, n0, _CSR,
|
|
1102
|
-
0,
|
|
1103
|
-
[_rAes, _pSr, _sN],
|
|
1104
|
-
[0, 0, 0], 2
|
|
1105
|
-
];
|
|
1106
|
-
var CreateShareResponse$ = [3, n0, _CSRr,
|
|
1107
|
-
0,
|
|
1108
|
-
[_sI, _st, _sN],
|
|
1109
|
-
[0, 0, 0]
|
|
1110
|
-
];
|
|
1111
|
-
var CreateVariantStoreRequest$ = [3, n0, _CVSR,
|
|
1112
|
-
0,
|
|
1113
|
-
[_r, _n, _d, _ta, _sC],
|
|
1114
|
-
[() => ReferenceItem$, 0, 0, 128 | 0, () => SseConfig$], 1
|
|
1115
|
-
];
|
|
1116
|
-
var CreateVariantStoreResponse$ = [3, n0, _CVSRr,
|
|
1117
|
-
0,
|
|
1118
|
-
[_i, _st, _n, _cT, _r],
|
|
1119
|
-
[0, 0, 0, 5, () => ReferenceItem$], 4
|
|
1120
|
-
];
|
|
1121
|
-
var CreateWorkflowRequest$ = [3, n0, _CWR,
|
|
1122
|
-
0,
|
|
1123
|
-
[_n, _d, _en, _dZ, _dU, _ma, _pT, _sCt, _ta, _rI, _ac, _sT, _cRM, _cRMU, _rMe, _pTP, _rP, _dR, _wBOI, _rU],
|
|
1124
|
-
[0, 0, 0, 21, 0, 0, () => WorkflowParameterTemplate, 1, 128 | 0, [0, 4], 0, 0, () => ContainerRegistryMap$, 0, [() => ReadmeMarkdown, 0], 0, 0, () => DefinitionRepository$, 0, 0]
|
|
1125
|
-
];
|
|
1126
|
-
var CreateWorkflowResponse$ = [3, n0, _CWRr,
|
|
1127
|
-
0,
|
|
1128
|
-
[_ar, _i, _st, _ta, _u],
|
|
1129
|
-
[0, 0, 0, 128 | 0, 0]
|
|
1130
|
-
];
|
|
1131
|
-
var CreateWorkflowVersionRequest$ = [3, n0, _CWVR,
|
|
1132
|
-
0,
|
|
1133
|
-
[_wI, _vN, _dZ, _dU, _ac, _d, _en, _ma, _pT, _rI, _sT, _sCt, _ta, _wBOI, _cRM, _cRMU, _rMe, _pTP, _rP, _dR, _rU],
|
|
1134
|
-
[[0, 1], 0, 21, 0, 0, 0, 0, 0, () => WorkflowParameterTemplate, [0, 4], 0, 1, 128 | 0, 0, () => ContainerRegistryMap$, 0, [() => ReadmeMarkdown, 0], 0, 0, () => DefinitionRepository$, 0], 2
|
|
1135
|
-
];
|
|
1136
|
-
var CreateWorkflowVersionResponse$ = [3, n0, _CWVRr,
|
|
1137
|
-
0,
|
|
1138
|
-
[_ar, _wI, _vN, _st, _ta, _u],
|
|
1139
|
-
[0, 0, 0, 0, 128 | 0, 0]
|
|
1140
|
-
];
|
|
1141
|
-
var DefinitionRepository$ = [3, n0, _DR,
|
|
1142
|
-
0,
|
|
1143
|
-
[_cAo, _fRI, _sR, _eFP],
|
|
1144
|
-
[0, 0, () => SourceReference$, 64 | 0], 2
|
|
1145
|
-
];
|
|
1146
|
-
var DefinitionRepositoryDetails$ = [3, n0, _DRD,
|
|
1147
|
-
0,
|
|
1148
|
-
[_cAo, _fRI, _sR, _pTr, _pE],
|
|
1149
|
-
[0, 0, () => SourceReference$, 0, 0]
|
|
1150
|
-
];
|
|
1151
|
-
var DeleteAnnotationStoreRequest$ = [3, n0, _DASR,
|
|
1152
|
-
0,
|
|
1153
|
-
[_n, _f],
|
|
1154
|
-
[[0, 1], [2, { [_hQ]: _f }]], 1
|
|
1155
|
-
];
|
|
1156
|
-
var DeleteAnnotationStoreResponse$ = [3, n0, _DASRe,
|
|
1157
|
-
0,
|
|
1158
|
-
[_st],
|
|
1159
|
-
[0], 1
|
|
1160
|
-
];
|
|
1161
|
-
var DeleteAnnotationStoreVersionsRequest$ = [3, n0, _DASVR,
|
|
1162
|
-
0,
|
|
1163
|
-
[_n, _v, _f],
|
|
1164
|
-
[[0, 1], 64 | 0, [2, { [_hQ]: _f }]], 2
|
|
1165
|
-
];
|
|
1166
|
-
var DeleteAnnotationStoreVersionsResponse$ = [3, n0, _DASVRe,
|
|
1167
|
-
0,
|
|
1168
|
-
[_er],
|
|
1169
|
-
[() => VersionDeleteErrorList]
|
|
1170
|
-
];
|
|
1171
|
-
var DeleteReferenceRequest$ = [3, n0, _DRR,
|
|
1172
|
-
0,
|
|
1173
|
-
[_i, _rSIe],
|
|
1174
|
-
[[0, 1], [0, 1]], 2
|
|
1175
|
-
];
|
|
1176
|
-
var DeleteReferenceResponse$ = [3, n0, _DRRe,
|
|
1177
|
-
0,
|
|
1178
|
-
[],
|
|
1179
|
-
[]
|
|
1180
|
-
];
|
|
1181
|
-
var DeleteReferenceStoreRequest$ = [3, n0, _DRSR,
|
|
1182
|
-
0,
|
|
1183
|
-
[_i],
|
|
1184
|
-
[[0, 1]], 1
|
|
1185
|
-
];
|
|
1186
|
-
var DeleteReferenceStoreResponse$ = [3, n0, _DRSRe,
|
|
1187
|
-
0,
|
|
1188
|
-
[],
|
|
1189
|
-
[]
|
|
1190
|
-
];
|
|
1191
|
-
var DeleteRunCacheRequest$ = [3, n0, _DRCR,
|
|
1192
|
-
0,
|
|
1193
|
-
[_i],
|
|
1194
|
-
[[0, 1]], 1
|
|
1195
|
-
];
|
|
1196
|
-
var DeleteRunGroupRequest$ = [3, n0, _DRGR,
|
|
1197
|
-
0,
|
|
1198
|
-
[_i],
|
|
1199
|
-
[[0, 1]], 1
|
|
1200
|
-
];
|
|
1201
|
-
var DeleteRunRequest$ = [3, n0, _DRRel,
|
|
1202
|
-
0,
|
|
1203
|
-
[_i],
|
|
1204
|
-
[[0, 1]], 1
|
|
1205
|
-
];
|
|
1206
|
-
var DeleteS3AccessPolicyRequest$ = [3, n0, _DSAPR,
|
|
1207
|
-
0,
|
|
1208
|
-
[_sAPA],
|
|
1209
|
-
[[0, 1]], 1
|
|
1210
|
-
];
|
|
1211
|
-
var DeleteS3AccessPolicyResponse$ = [3, n0, _DSAPRe,
|
|
1212
|
-
0,
|
|
1213
|
-
[],
|
|
1214
|
-
[]
|
|
1215
|
-
];
|
|
1216
|
-
var DeleteSequenceStoreRequest$ = [3, n0, _DSSR,
|
|
1217
|
-
0,
|
|
1218
|
-
[_i],
|
|
1219
|
-
[[0, 1]], 1
|
|
1220
|
-
];
|
|
1221
|
-
var DeleteSequenceStoreResponse$ = [3, n0, _DSSRe,
|
|
1222
|
-
0,
|
|
1223
|
-
[],
|
|
1224
|
-
[]
|
|
1225
|
-
];
|
|
1226
|
-
var DeleteShareRequest$ = [3, n0, _DSR,
|
|
1227
|
-
0,
|
|
1228
|
-
[_sI],
|
|
1229
|
-
[[0, 1]], 1
|
|
1230
|
-
];
|
|
1231
|
-
var DeleteShareResponse$ = [3, n0, _DSRe,
|
|
1232
|
-
0,
|
|
1233
|
-
[_st],
|
|
1234
|
-
[0]
|
|
1235
|
-
];
|
|
1236
|
-
var DeleteVariantStoreRequest$ = [3, n0, _DVSR,
|
|
1237
|
-
0,
|
|
1238
|
-
[_n, _f],
|
|
1239
|
-
[[0, 1], [2, { [_hQ]: _f }]], 1
|
|
1240
|
-
];
|
|
1241
|
-
var DeleteVariantStoreResponse$ = [3, n0, _DVSRe,
|
|
1242
|
-
0,
|
|
1243
|
-
[_st],
|
|
1244
|
-
[0], 1
|
|
1245
|
-
];
|
|
1246
|
-
var DeleteWorkflowRequest$ = [3, n0, _DWR,
|
|
1247
|
-
0,
|
|
1248
|
-
[_i],
|
|
1249
|
-
[[0, 1]], 1
|
|
1250
|
-
];
|
|
1251
|
-
var DeleteWorkflowVersionRequest$ = [3, n0, _DWVR,
|
|
1252
|
-
0,
|
|
1253
|
-
[_wI, _vN],
|
|
1254
|
-
[[0, 1], [0, 1]], 2
|
|
1255
|
-
];
|
|
1256
|
-
var ETag$ = [3, n0, _ET,
|
|
1257
|
-
0,
|
|
1258
|
-
[_al, _sou, _sour],
|
|
1259
|
-
[0, 0, 0]
|
|
1260
|
-
];
|
|
1261
|
-
var ExportReadSet$ = [3, n0, _ERS,
|
|
1262
|
-
0,
|
|
1263
|
-
[_rSI],
|
|
1264
|
-
[0], 1
|
|
1265
|
-
];
|
|
1266
|
-
var ExportReadSetDetail$ = [3, n0, _ERSD,
|
|
1267
|
-
0,
|
|
1268
|
-
[_i, _st, _sM],
|
|
1269
|
-
[0, 0, 0], 2
|
|
1270
|
-
];
|
|
1271
|
-
var ExportReadSetFilter$ = [3, n0, _ERSF,
|
|
1272
|
-
0,
|
|
1273
|
-
[_st, _cA, _cB],
|
|
1274
|
-
[0, 5, 5]
|
|
1275
|
-
];
|
|
1276
|
-
var ExportReadSetJobDetail$ = [3, n0, _ERSJD,
|
|
1277
|
-
0,
|
|
1278
|
-
[_i, _sSI, _de, _st, _cT, _cTo],
|
|
1279
|
-
[0, 0, 0, 0, 5, 5], 5
|
|
1280
|
-
];
|
|
1281
|
-
var FileInformation$ = [3, n0, _FI,
|
|
1282
|
-
0,
|
|
1283
|
-
[_tP, _pSa, _cL, _sAc],
|
|
1284
|
-
[1, 1, 1, () => ReadSetS3Access$]
|
|
1285
|
-
];
|
|
1286
|
-
var Filter$ = [3, n0, _F,
|
|
1287
|
-
0,
|
|
1288
|
-
[_rAeso, _st, _ty],
|
|
1289
|
-
[64 | 0, 64 | 0, 64 | 0]
|
|
1290
|
-
];
|
|
1291
|
-
var GetAnnotationImportRequest$ = [3, n0, _GAIR,
|
|
1292
|
-
0,
|
|
1293
|
-
[_jI],
|
|
1294
|
-
[[0, 1]], 1
|
|
1295
|
-
];
|
|
1296
|
-
var GetAnnotationImportResponse$ = [3, n0, _GAIRe,
|
|
1297
|
-
0,
|
|
1298
|
-
[_i, _dN, _vN, _rA, _st, _sM, _cT, _uT, _cTo, _it, _rLN, _fO, _aF],
|
|
1299
|
-
[0, 0, 0, 0, 0, 0, 5, 5, 5, () => AnnotationImportItemDetails, 2, () => FormatOptions$, 128 | 0], 12
|
|
1300
|
-
];
|
|
1301
|
-
var GetAnnotationStoreRequest$ = [3, n0, _GASR,
|
|
1302
|
-
0,
|
|
1303
|
-
[_n],
|
|
1304
|
-
[[0, 1]], 1
|
|
1305
|
-
];
|
|
1306
|
-
var GetAnnotationStoreResponse$ = [3, n0, _GASRe,
|
|
1307
|
-
0,
|
|
1308
|
-
[_i, _r, _st, _sA, _n, _d, _sC, _cT, _uT, _ta, _sM, _sSB, _nV, _sO, _sF],
|
|
1309
|
-
[0, () => ReferenceItem$, 0, 0, 0, 0, () => SseConfig$, 5, 5, 128 | 0, 0, 1, 1, () => StoreOptions$, 0], 13
|
|
1310
|
-
];
|
|
1311
|
-
var GetAnnotationStoreVersionRequest$ = [3, n0, _GASVR,
|
|
1312
|
-
0,
|
|
1313
|
-
[_n, _vN],
|
|
1314
|
-
[[0, 1], [0, 1]], 2
|
|
1315
|
-
];
|
|
1316
|
-
var GetAnnotationStoreVersionResponse$ = [3, n0, _GASVRe,
|
|
1317
|
-
0,
|
|
1318
|
-
[_sIt, _i, _st, _vA, _n, _vN, _d, _cT, _uT, _ta, _sM, _vSB, _vO],
|
|
1319
|
-
[0, 0, 0, 0, 0, 0, 0, 5, 5, 128 | 0, 0, 1, () => VersionOptions$], 12
|
|
1320
|
-
];
|
|
1321
|
-
var GetReadSetActivationJobRequest$ = [3, n0, _GRSAJR,
|
|
1322
|
-
0,
|
|
1323
|
-
[_i, _sSI],
|
|
1324
|
-
[[0, 1], [0, 1]], 2
|
|
1325
|
-
];
|
|
1326
|
-
var GetReadSetActivationJobResponse$ = [3, n0, _GRSAJRe,
|
|
1327
|
-
0,
|
|
1328
|
-
[_i, _sSI, _st, _cT, _sM, _cTo, _sourc],
|
|
1329
|
-
[0, 0, 0, 5, 0, 5, () => ActivateReadSetSourceList], 4
|
|
1330
|
-
];
|
|
1331
|
-
var GetReadSetExportJobRequest$ = [3, n0, _GRSEJR,
|
|
1332
|
-
0,
|
|
1333
|
-
[_sSI, _i],
|
|
1334
|
-
[[0, 1], [0, 1]], 2
|
|
1335
|
-
];
|
|
1336
|
-
var GetReadSetExportJobResponse$ = [3, n0, _GRSEJRe,
|
|
1337
|
-
0,
|
|
1338
|
-
[_i, _sSI, _de, _st, _cT, _sM, _cTo, _rS],
|
|
1339
|
-
[0, 0, 0, 0, 5, 0, 5, () => ExportReadSetDetailList], 5
|
|
1340
|
-
];
|
|
1341
|
-
var GetReadSetImportJobRequest$ = [3, n0, _GRSIJR,
|
|
1342
|
-
0,
|
|
1343
|
-
[_i, _sSI],
|
|
1344
|
-
[[0, 1], [0, 1]], 2
|
|
1345
|
-
];
|
|
1346
|
-
var GetReadSetImportJobResponse$ = [3, n0, _GRSIJRe,
|
|
1347
|
-
0,
|
|
1348
|
-
[_i, _sSI, _rA, _st, _cT, _sourc, _sM, _cTo],
|
|
1349
|
-
[0, 0, 0, 0, 5, () => ImportReadSetSourceList, 0, 5], 6
|
|
1350
|
-
];
|
|
1351
|
-
var GetReadSetMetadataRequest$ = [3, n0, _GRSMR,
|
|
1352
|
-
0,
|
|
1353
|
-
[_i, _sSI],
|
|
1354
|
-
[[0, 1], [0, 1]], 2
|
|
1355
|
-
];
|
|
1356
|
-
var GetReadSetMetadataResponse$ = [3, n0, _GRSMRe,
|
|
1357
|
-
0,
|
|
1358
|
-
[_i, _ar, _sSI, _st, _fT, _cT, _sIu, _sIa, _n, _d, _sIe, _rAe, _fi, _sM, _cTr, _et, _cJI],
|
|
1359
|
-
[0, 0, 0, 0, 0, 5, 0, 0, 0, 0, () => SequenceInformation$, 0, () => ReadSetFiles$, 0, 0, () => ETag$, 0], 6
|
|
1360
|
-
];
|
|
1361
|
-
var GetReadSetRequest$ = [3, n0, _GRSR,
|
|
1362
|
-
0,
|
|
1363
|
-
[_i, _sSI, _pN, _fil],
|
|
1364
|
-
[[0, 1], [0, 1], [1, { [_hQ]: _pN }], [0, { [_hQ]: _fil }]], 3
|
|
1365
|
-
];
|
|
1366
|
-
var GetReadSetResponse$ = [3, n0, _GRSRe,
|
|
1367
|
-
0,
|
|
1368
|
-
[_pa],
|
|
1369
|
-
[[() => ReadSetStreamingBlob, 16]]
|
|
1370
|
-
];
|
|
1371
|
-
var GetReferenceImportJobRequest$ = [3, n0, _GRIJR,
|
|
1372
|
-
0,
|
|
1373
|
-
[_i, _rSIe],
|
|
1374
|
-
[[0, 1], [0, 1]], 2
|
|
1375
|
-
];
|
|
1376
|
-
var GetReferenceImportJobResponse$ = [3, n0, _GRIJRe,
|
|
1377
|
-
0,
|
|
1378
|
-
[_i, _rSIe, _rA, _st, _cT, _sourc, _sM, _cTo],
|
|
1379
|
-
[0, 0, 0, 0, 5, () => ImportReferenceSourceList, 0, 5], 6
|
|
1380
|
-
];
|
|
1381
|
-
var GetReferenceMetadataRequest$ = [3, n0, _GRMR,
|
|
1382
|
-
0,
|
|
1383
|
-
[_i, _rSIe],
|
|
1384
|
-
[[0, 1], [0, 1]], 2
|
|
1385
|
-
];
|
|
1386
|
-
var GetReferenceMetadataResponse$ = [3, n0, _GRMRe,
|
|
1387
|
-
0,
|
|
1388
|
-
[_i, _ar, _rSIe, _md, _cT, _uT, _st, _n, _d, _fi, _cTr, _cJI],
|
|
1389
|
-
[0, 0, 0, 0, 5, 5, 0, 0, 0, () => ReferenceFiles$, 0, 0], 6
|
|
1390
|
-
];
|
|
1391
|
-
var GetReferenceRequest$ = [3, n0, _GRR,
|
|
1392
|
-
0,
|
|
1393
|
-
[_i, _rSIe, _pN, _ra, _fil],
|
|
1394
|
-
[[0, 1], [0, 1], [1, { [_hQ]: _pN }], [0, { [_hH]: _R }], [0, { [_hQ]: _fil }]], 3
|
|
1395
|
-
];
|
|
1396
|
-
var GetReferenceResponse$ = [3, n0, _GRRe,
|
|
1397
|
-
0,
|
|
1398
|
-
[_pa],
|
|
1399
|
-
[[() => ReferenceStreamingBlob, 16]]
|
|
1400
|
-
];
|
|
1401
|
-
var GetReferenceStoreRequest$ = [3, n0, _GRSRet,
|
|
1402
|
-
0,
|
|
1403
|
-
[_i],
|
|
1404
|
-
[[0, 1]], 1
|
|
1405
|
-
];
|
|
1406
|
-
var GetReferenceStoreResponse$ = [3, n0, _GRSRete,
|
|
1407
|
-
0,
|
|
1408
|
-
[_i, _ar, _cT, _n, _d, _sC],
|
|
1409
|
-
[0, 0, 5, 0, 0, () => SseConfig$], 3
|
|
1410
|
-
];
|
|
1411
|
-
var GetRunCacheRequest$ = [3, n0, _GRCR,
|
|
1412
|
-
0,
|
|
1413
|
-
[_i],
|
|
1414
|
-
[[0, 1]], 1
|
|
1415
|
-
];
|
|
1416
|
-
var GetRunCacheResponse$ = [3, n0, _GRCRe,
|
|
1417
|
-
0,
|
|
1418
|
-
[_ar, _cBa, _cBOI, _cSU, _cT, _d, _i, _n, _st, _ta],
|
|
1419
|
-
[0, 0, 0, 0, 5, 0, 0, 0, 0, 128 | 0]
|
|
1420
|
-
];
|
|
1421
|
-
var GetRunGroupRequest$ = [3, n0, _GRGR,
|
|
1422
|
-
0,
|
|
1423
|
-
[_i],
|
|
1424
|
-
[[0, 1]], 1
|
|
1425
|
-
];
|
|
1426
|
-
var GetRunGroupResponse$ = [3, n0, _GRGRe,
|
|
1427
|
-
0,
|
|
1428
|
-
[_ar, _i, _n, _mC, _mR, _mD, _cT, _ta, _mG],
|
|
1429
|
-
[0, 0, 0, 1, 1, 1, 5, 128 | 0, 1]
|
|
1430
|
-
];
|
|
1431
|
-
var GetRunRequest$ = [3, n0, _GRRet,
|
|
1432
|
-
0,
|
|
1433
|
-
[_i, _ex],
|
|
1434
|
-
[[0, 1], [64 | 0, { [_hQ]: _ex }]], 1
|
|
1435
|
-
];
|
|
1436
|
-
var GetRunResponse$ = [3, n0, _GRRetu,
|
|
1437
|
-
0,
|
|
1438
|
-
[_ar, _i, _cI, _cBa, _eV, _st, _wI, _wT, _rIu, _rA, _n, _rGI, _pr, _def, _di, _par, _sCt, _oU, _lL, _rD, _sB, _cT, _sTt, _sTto, _sM, _ta, _ac, _rMet, _fR, _lLo, _u, _rOU, _sT, _wOI, _wVN, _wU],
|
|
1439
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 15, 1, 0, 0, 128 | 0, 0, 5, 5, 5, 0, 128 | 0, 0, 0, 0, () => RunLogLocation$, 0, 0, 0, 0, 0, 0]
|
|
1440
|
-
];
|
|
1441
|
-
var GetRunTaskRequest$ = [3, n0, _GRTR,
|
|
1442
|
-
0,
|
|
1443
|
-
[_i, _tI],
|
|
1444
|
-
[[0, 1], [0, 1]], 2
|
|
1445
|
-
];
|
|
1446
|
-
var GetRunTaskResponse$ = [3, n0, _GRTRe,
|
|
1447
|
-
0,
|
|
1448
|
-
[_tI, _st, _n, _cp, _cH, _cSU, _me, _cT, _sTt, _sTto, _sM, _lS, _g, _iT, _fR, _iD],
|
|
1449
|
-
[0, 0, 0, 1, 2, 0, 1, 5, 5, 5, 0, 0, 1, 0, 0, () => ImageDetails$]
|
|
1450
|
-
];
|
|
1451
|
-
var GetS3AccessPolicyRequest$ = [3, n0, _GSAPR,
|
|
1452
|
-
0,
|
|
1453
|
-
[_sAPA],
|
|
1454
|
-
[[0, 1]], 1
|
|
1455
|
-
];
|
|
1456
|
-
var GetS3AccessPolicyResponse$ = [3, n0, _GSAPRe,
|
|
1457
|
-
0,
|
|
1458
|
-
[_sAP, _sAPA, _sIt, _sTtor, _uT],
|
|
1459
|
-
[[() => S3AccessPolicy, 0], 0, 0, 0, 5], 1
|
|
1460
|
-
];
|
|
1461
|
-
var GetSequenceStoreRequest$ = [3, n0, _GSSR,
|
|
1462
|
-
0,
|
|
1463
|
-
[_i],
|
|
1464
|
-
[[0, 1]], 1
|
|
1465
|
-
];
|
|
1466
|
-
var GetSequenceStoreResponse$ = [3, n0, _GSSRe,
|
|
1467
|
-
0,
|
|
1468
|
-
[_i, _ar, _cT, _n, _d, _sC, _fL, _sAc, _eTAF, _st, _sM, _pSLT, _uT],
|
|
1469
|
-
[0, 0, 5, 0, 0, () => SseConfig$, 0, () => SequenceStoreS3Access$, 0, 0, 0, 64 | 0, 5], 3
|
|
1470
|
-
];
|
|
1471
|
-
var GetShareRequest$ = [3, n0, _GSR,
|
|
1472
|
-
0,
|
|
1473
|
-
[_sI],
|
|
1474
|
-
[[0, 1]], 1
|
|
1475
|
-
];
|
|
1476
|
-
var GetShareResponse$ = [3, n0, _GSRe,
|
|
1477
|
-
0,
|
|
1478
|
-
[_sh],
|
|
1479
|
-
[() => ShareDetails$]
|
|
1480
|
-
];
|
|
1481
|
-
var GetVariantImportRequest$ = [3, n0, _GVIR,
|
|
1482
|
-
0,
|
|
1483
|
-
[_jI],
|
|
1484
|
-
[[0, 1]], 1
|
|
1485
|
-
];
|
|
1486
|
-
var GetVariantImportResponse$ = [3, n0, _GVIRe,
|
|
1487
|
-
0,
|
|
1488
|
-
[_i, _dN, _rA, _st, _sM, _cT, _uT, _it, _rLN, _cTo, _aF],
|
|
1489
|
-
[0, 0, 0, 0, 0, 5, 5, () => VariantImportItemDetails, 2, 5, 128 | 0], 9
|
|
1490
|
-
];
|
|
1491
|
-
var GetVariantStoreRequest$ = [3, n0, _GVSR,
|
|
1492
|
-
0,
|
|
1493
|
-
[_n],
|
|
1494
|
-
[[0, 1]], 1
|
|
1495
|
-
];
|
|
1496
|
-
var GetVariantStoreResponse$ = [3, n0, _GVSRe,
|
|
1497
|
-
0,
|
|
1498
|
-
[_i, _r, _st, _sA, _n, _d, _sC, _cT, _uT, _ta, _sM, _sSB],
|
|
1499
|
-
[0, () => ReferenceItem$, 0, 0, 0, 0, () => SseConfig$, 5, 5, 128 | 0, 0, 1], 12
|
|
1500
|
-
];
|
|
1501
|
-
var GetWorkflowRequest$ = [3, n0, _GWR,
|
|
1502
|
-
0,
|
|
1503
|
-
[_i, _ty, _ex, _wOI],
|
|
1504
|
-
[[0, 1], [0, { [_hQ]: _ty }], [64 | 0, { [_hQ]: _ex }], [0, { [_hQ]: _wOI }]], 1
|
|
1505
|
-
];
|
|
1506
|
-
var GetWorkflowResponse$ = [3, n0, _GWRe,
|
|
1507
|
-
0,
|
|
1508
|
-
[_ar, _i, _st, _ty, _n, _d, _en, _def, _ma, _di, _pT, _sCt, _cT, _sM, _ta, _met, _ac, _sT, _u, _cRM, _re, _dRD, _rP],
|
|
1509
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, () => WorkflowParameterTemplate, 1, 5, 0, 128 | 0, 128 | 0, 0, 0, 0, () => ContainerRegistryMap$, 0, () => DefinitionRepositoryDetails$, 0]
|
|
1510
|
-
];
|
|
1511
|
-
var GetWorkflowVersionRequest$ = [3, n0, _GWVR,
|
|
1512
|
-
0,
|
|
1513
|
-
[_wI, _vN, _ty, _ex, _wOI],
|
|
1514
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _ty }], [64 | 0, { [_hQ]: _ex }], [0, { [_hQ]: _wOI }]], 2
|
|
1515
|
-
];
|
|
1516
|
-
var GetWorkflowVersionResponse$ = [3, n0, _GWVRe,
|
|
1517
|
-
0,
|
|
1518
|
-
[_ar, _wI, _vN, _ac, _cT, _d, _def, _di, _en, _ma, _met, _pT, _st, _sM, _sT, _sCt, _ty, _ta, _u, _wBOI, _cRM, _re, _dRD, _rP],
|
|
1519
|
-
[0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 128 | 0, () => WorkflowParameterTemplate, 0, 0, 0, 1, 0, 128 | 0, 0, 0, () => ContainerRegistryMap$, 0, () => DefinitionRepositoryDetails$, 0]
|
|
1520
|
-
];
|
|
1521
|
-
var ImageDetails$ = [3, n0, _ID,
|
|
1522
|
-
0,
|
|
1523
|
-
[_im, _iDm, _sIo],
|
|
1524
|
-
[0, 0, 0]
|
|
1525
|
-
];
|
|
1526
|
-
var ImageMapping$ = [3, n0, _IM,
|
|
1527
|
-
0,
|
|
1528
|
-
[_sIo, _dI],
|
|
1529
|
-
[0, 0]
|
|
1530
|
-
];
|
|
1531
|
-
var ImportReadSetFilter$ = [3, n0, _IRSF,
|
|
1532
|
-
0,
|
|
1533
|
-
[_st, _cA, _cB],
|
|
1534
|
-
[0, 5, 5]
|
|
1535
|
-
];
|
|
1536
|
-
var ImportReadSetJobItem$ = [3, n0, _IRSJI,
|
|
1537
|
-
0,
|
|
1538
|
-
[_i, _sSI, _rA, _st, _cT, _cTo],
|
|
1539
|
-
[0, 0, 0, 0, 5, 5], 5
|
|
1540
|
-
];
|
|
1541
|
-
var ImportReadSetSourceItem$ = [3, n0, _IRSSI,
|
|
1542
|
-
0,
|
|
1543
|
-
[_sFo, _sFT, _st, _sIu, _sIa, _sM, _gF, _rAe, _n, _d, _ta, _rSI],
|
|
1544
|
-
[() => SourceFiles$, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128 | 0, 0], 5
|
|
1545
|
-
];
|
|
1546
|
-
var ImportReferenceFilter$ = [3, n0, _IRF,
|
|
1547
|
-
0,
|
|
1548
|
-
[_st, _cA, _cB],
|
|
1549
|
-
[0, 5, 5]
|
|
1550
|
-
];
|
|
1551
|
-
var ImportReferenceJobItem$ = [3, n0, _IRJI,
|
|
1552
|
-
0,
|
|
1553
|
-
[_i, _rSIe, _rA, _st, _cT, _cTo],
|
|
1554
|
-
[0, 0, 0, 0, 5, 5], 5
|
|
1555
|
-
];
|
|
1556
|
-
var ImportReferenceSourceItem$ = [3, n0, _IRSI,
|
|
1557
|
-
0,
|
|
1558
|
-
[_st, _sFou, _sM, _n, _d, _ta, _rIe],
|
|
1559
|
-
[0, 0, 0, 0, 0, 128 | 0, 0], 1
|
|
1560
|
-
];
|
|
1561
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
1562
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
1563
|
-
[_m],
|
|
1564
|
-
[0], 1
|
|
1565
|
-
];
|
|
1566
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
1567
|
-
var ListAnnotationImportJobsFilter$ = [3, n0, _LAIJF,
|
|
1568
|
-
0,
|
|
1569
|
-
[_st, _sNt],
|
|
1570
|
-
[0, 0]
|
|
1571
|
-
];
|
|
1572
|
-
var ListAnnotationImportJobsRequest$ = [3, n0, _LAIJR,
|
|
1573
|
-
0,
|
|
1574
|
-
[_mRa, _id, _nT, _filt],
|
|
1575
|
-
[[1, { [_hQ]: _mRa }], 64 | 0, [0, { [_hQ]: _nT }], () => ListAnnotationImportJobsFilter$]
|
|
1576
|
-
];
|
|
1577
|
-
var ListAnnotationImportJobsResponse$ = [3, n0, _LAIJRi,
|
|
1578
|
-
0,
|
|
1579
|
-
[_aIJ, _nT],
|
|
1580
|
-
[() => AnnotationImportJobItems, 0]
|
|
1581
|
-
];
|
|
1582
|
-
var ListAnnotationStoresFilter$ = [3, n0, _LASF,
|
|
1583
|
-
0,
|
|
1584
|
-
[_st],
|
|
1585
|
-
[0]
|
|
1586
|
-
];
|
|
1587
|
-
var ListAnnotationStoresRequest$ = [3, n0, _LASR,
|
|
1588
|
-
0,
|
|
1589
|
-
[_id, _mRa, _nT, _filt],
|
|
1590
|
-
[64 | 0, [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }], () => ListAnnotationStoresFilter$]
|
|
1591
|
-
];
|
|
1592
|
-
var ListAnnotationStoresResponse$ = [3, n0, _LASRi,
|
|
1593
|
-
0,
|
|
1594
|
-
[_aS, _nT],
|
|
1595
|
-
[() => AnnotationStoreItems, 0]
|
|
1596
|
-
];
|
|
1597
|
-
var ListAnnotationStoreVersionsFilter$ = [3, n0, _LASVF,
|
|
1598
|
-
0,
|
|
1599
|
-
[_st],
|
|
1600
|
-
[0]
|
|
1601
|
-
];
|
|
1602
|
-
var ListAnnotationStoreVersionsRequest$ = [3, n0, _LASVR,
|
|
1603
|
-
0,
|
|
1604
|
-
[_n, _mRa, _nT, _filt],
|
|
1605
|
-
[[0, 1], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }], () => ListAnnotationStoreVersionsFilter$], 1
|
|
1606
|
-
];
|
|
1607
|
-
var ListAnnotationStoreVersionsResponse$ = [3, n0, _LASVRi,
|
|
1608
|
-
0,
|
|
1609
|
-
[_aSV, _nT],
|
|
1610
|
-
[() => AnnotationStoreVersionItems, 0]
|
|
1611
|
-
];
|
|
1612
|
-
var ListMultipartReadSetUploadsRequest$ = [3, n0, _LMRSUR,
|
|
1613
|
-
0,
|
|
1614
|
-
[_sSI, _mRa, _nT],
|
|
1615
|
-
[[0, 1], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]], 1
|
|
1616
|
-
];
|
|
1617
|
-
var ListMultipartReadSetUploadsResponse$ = [3, n0, _LMRSURi,
|
|
1618
|
-
0,
|
|
1619
|
-
[_nT, _up],
|
|
1620
|
-
[0, () => MultipartReadSetUploadList]
|
|
1621
|
-
];
|
|
1622
|
-
var ListReadSetActivationJobsRequest$ = [3, n0, _LRSAJR,
|
|
1623
|
-
0,
|
|
1624
|
-
[_sSI, _mRa, _nT, _filt],
|
|
1625
|
-
[[0, 1], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }], () => ActivateReadSetFilter$], 1
|
|
1626
|
-
];
|
|
1627
|
-
var ListReadSetActivationJobsResponse$ = [3, n0, _LRSAJRi,
|
|
1628
|
-
0,
|
|
1629
|
-
[_nT, _aJ],
|
|
1630
|
-
[0, () => ActivateReadSetJobList]
|
|
1631
|
-
];
|
|
1632
|
-
var ListReadSetExportJobsRequest$ = [3, n0, _LRSEJR,
|
|
1633
|
-
0,
|
|
1634
|
-
[_sSI, _mRa, _nT, _filt],
|
|
1635
|
-
[[0, 1], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }], () => ExportReadSetFilter$], 1
|
|
1636
|
-
];
|
|
1637
|
-
var ListReadSetExportJobsResponse$ = [3, n0, _LRSEJRi,
|
|
1638
|
-
0,
|
|
1639
|
-
[_nT, _eJ],
|
|
1640
|
-
[0, () => ExportReadSetJobDetailList]
|
|
1641
|
-
];
|
|
1642
|
-
var ListReadSetImportJobsRequest$ = [3, n0, _LRSIJR,
|
|
1643
|
-
0,
|
|
1644
|
-
[_sSI, _mRa, _nT, _filt],
|
|
1645
|
-
[[0, 1], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }], () => ImportReadSetFilter$], 1
|
|
1646
|
-
];
|
|
1647
|
-
var ListReadSetImportJobsResponse$ = [3, n0, _LRSIJRi,
|
|
1648
|
-
0,
|
|
1649
|
-
[_nT, _iJ],
|
|
1650
|
-
[0, () => ImportReadSetJobList]
|
|
1651
|
-
];
|
|
1652
|
-
var ListReadSetsRequest$ = [3, n0, _LRSR,
|
|
1653
|
-
0,
|
|
1654
|
-
[_sSI, _mRa, _nT, _filt],
|
|
1655
|
-
[[0, 1], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }], () => ReadSetFilter$], 1
|
|
1656
|
-
];
|
|
1657
|
-
var ListReadSetsResponse$ = [3, n0, _LRSRi,
|
|
1658
|
-
0,
|
|
1659
|
-
[_rS, _nT],
|
|
1660
|
-
[() => ReadSetList, 0], 1
|
|
1661
|
-
];
|
|
1662
|
-
var ListReadSetUploadPartsRequest$ = [3, n0, _LRSUPR,
|
|
1663
|
-
0,
|
|
1664
|
-
[_sSI, _uI, _pS, _mRa, _nT, _filt],
|
|
1665
|
-
[[0, 1], [0, 1], 0, [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }], () => ReadSetUploadPartListFilter$], 3
|
|
1666
|
-
];
|
|
1667
|
-
var ListReadSetUploadPartsResponse$ = [3, n0, _LRSUPRi,
|
|
1668
|
-
0,
|
|
1669
|
-
[_nT, _p],
|
|
1670
|
-
[0, () => ReadSetUploadPartList]
|
|
1671
|
-
];
|
|
1672
|
-
var ListReferenceImportJobsRequest$ = [3, n0, _LRIJR,
|
|
1673
|
-
0,
|
|
1674
|
-
[_rSIe, _mRa, _nT, _filt],
|
|
1675
|
-
[[0, 1], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }], () => ImportReferenceFilter$], 1
|
|
1676
|
-
];
|
|
1677
|
-
var ListReferenceImportJobsResponse$ = [3, n0, _LRIJRi,
|
|
1678
|
-
0,
|
|
1679
|
-
[_nT, _iJ],
|
|
1680
|
-
[0, () => ImportReferenceJobList]
|
|
1681
|
-
];
|
|
1682
|
-
var ListReferencesRequest$ = [3, n0, _LRR,
|
|
1683
|
-
0,
|
|
1684
|
-
[_rSIe, _mRa, _nT, _filt],
|
|
1685
|
-
[[0, 1], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }], () => ReferenceFilter$], 1
|
|
1686
|
-
];
|
|
1687
|
-
var ListReferencesResponse$ = [3, n0, _LRRi,
|
|
1688
|
-
0,
|
|
1689
|
-
[_ref, _nT],
|
|
1690
|
-
[() => ReferenceList, 0], 1
|
|
1691
|
-
];
|
|
1692
|
-
var ListReferenceStoresRequest$ = [3, n0, _LRSRis,
|
|
1693
|
-
0,
|
|
1694
|
-
[_mRa, _nT, _filt],
|
|
1695
|
-
[[1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }], () => ReferenceStoreFilter$]
|
|
1696
|
-
];
|
|
1697
|
-
var ListReferenceStoresResponse$ = [3, n0, _LRSRist,
|
|
1698
|
-
0,
|
|
1699
|
-
[_rSe, _nT],
|
|
1700
|
-
[() => ReferenceStoreDetailList, 0], 1
|
|
1701
|
-
];
|
|
1702
|
-
var ListRunCachesRequest$ = [3, n0, _LRCR,
|
|
1703
|
-
0,
|
|
1704
|
-
[_mRa, _sTta],
|
|
1705
|
-
[[1, { [_hQ]: _mRa }], [0, { [_hQ]: _sTta }]]
|
|
1706
|
-
];
|
|
1707
|
-
var ListRunCachesResponse$ = [3, n0, _LRCRi,
|
|
1708
|
-
0,
|
|
1709
|
-
[_it, _nT],
|
|
1710
|
-
[() => RunCacheList, 0]
|
|
1711
|
-
];
|
|
1712
|
-
var ListRunGroupsRequest$ = [3, n0, _LRGR,
|
|
1713
|
-
0,
|
|
1714
|
-
[_n, _sTta, _mRa],
|
|
1715
|
-
[[0, { [_hQ]: _n }], [0, { [_hQ]: _sTta }], [1, { [_hQ]: _mRa }]]
|
|
1716
|
-
];
|
|
1717
|
-
var ListRunGroupsResponse$ = [3, n0, _LRGRi,
|
|
1718
|
-
0,
|
|
1719
|
-
[_it, _nT],
|
|
1720
|
-
[() => RunGroupList, 0]
|
|
1721
|
-
];
|
|
1722
|
-
var ListRunsRequest$ = [3, n0, _LRRis,
|
|
1723
|
-
0,
|
|
1724
|
-
[_n, _rGI, _sTta, _mRa, _st],
|
|
1725
|
-
[[0, { [_hQ]: _n }], [0, { [_hQ]: _rGI }], [0, { [_hQ]: _sTta }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _st }]]
|
|
1726
|
-
];
|
|
1727
|
-
var ListRunsResponse$ = [3, n0, _LRRist,
|
|
1728
|
-
0,
|
|
1729
|
-
[_it, _nT],
|
|
1730
|
-
[() => RunList, 0]
|
|
1731
|
-
];
|
|
1732
|
-
var ListRunTasksRequest$ = [3, n0, _LRTR,
|
|
1733
|
-
0,
|
|
1734
|
-
[_i, _st, _sTta, _mRa],
|
|
1735
|
-
[[0, 1], [0, { [_hQ]: _st }], [0, { [_hQ]: _sTta }], [1, { [_hQ]: _mRa }]], 1
|
|
1736
|
-
];
|
|
1737
|
-
var ListRunTasksResponse$ = [3, n0, _LRTRi,
|
|
1738
|
-
0,
|
|
1739
|
-
[_it, _nT],
|
|
1740
|
-
[() => TaskList, 0]
|
|
1741
|
-
];
|
|
1742
|
-
var ListSequenceStoresRequest$ = [3, n0, _LSSR,
|
|
1743
|
-
0,
|
|
1744
|
-
[_mRa, _nT, _filt],
|
|
1745
|
-
[[1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }], () => SequenceStoreFilter$]
|
|
1746
|
-
];
|
|
1747
|
-
var ListSequenceStoresResponse$ = [3, n0, _LSSRi,
|
|
1748
|
-
0,
|
|
1749
|
-
[_sS, _nT],
|
|
1750
|
-
[() => SequenceStoreDetailList, 0], 1
|
|
1751
|
-
];
|
|
1752
|
-
var ListSharesRequest$ = [3, n0, _LSR,
|
|
1753
|
-
0,
|
|
1754
|
-
[_rO, _filt, _nT, _mRa],
|
|
1755
|
-
[0, () => Filter$, [0, { [_hQ]: _nT }], [1, { [_hQ]: _mRa }]], 1
|
|
1756
|
-
];
|
|
1757
|
-
var ListSharesResponse$ = [3, n0, _LSRi,
|
|
1758
|
-
0,
|
|
1759
|
-
[_sha, _nT],
|
|
1760
|
-
[() => ShareDetailsList, 0], 1
|
|
1761
|
-
];
|
|
1762
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1763
|
-
0,
|
|
1764
|
-
[_rAes],
|
|
1765
|
-
[[0, 1]], 1
|
|
1766
|
-
];
|
|
1767
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1768
|
-
0,
|
|
1769
|
-
[_ta],
|
|
1770
|
-
[128 | 0], 1
|
|
1771
|
-
];
|
|
1772
|
-
var ListVariantImportJobsFilter$ = [3, n0, _LVIJF,
|
|
1773
|
-
0,
|
|
1774
|
-
[_st, _sNt],
|
|
1775
|
-
[0, 0]
|
|
1776
|
-
];
|
|
1777
|
-
var ListVariantImportJobsRequest$ = [3, n0, _LVIJR,
|
|
1778
|
-
0,
|
|
1779
|
-
[_mRa, _id, _nT, _filt],
|
|
1780
|
-
[[1, { [_hQ]: _mRa }], 64 | 0, [0, { [_hQ]: _nT }], () => ListVariantImportJobsFilter$]
|
|
1781
|
-
];
|
|
1782
|
-
var ListVariantImportJobsResponse$ = [3, n0, _LVIJRi,
|
|
1783
|
-
0,
|
|
1784
|
-
[_vIJ, _nT],
|
|
1785
|
-
[() => VariantImportJobItems, 0]
|
|
1786
|
-
];
|
|
1787
|
-
var ListVariantStoresFilter$ = [3, n0, _LVSF,
|
|
1788
|
-
0,
|
|
1789
|
-
[_st],
|
|
1790
|
-
[0]
|
|
1791
|
-
];
|
|
1792
|
-
var ListVariantStoresRequest$ = [3, n0, _LVSR,
|
|
1793
|
-
0,
|
|
1794
|
-
[_mRa, _id, _nT, _filt],
|
|
1795
|
-
[[1, { [_hQ]: _mRa }], 64 | 0, [0, { [_hQ]: _nT }], () => ListVariantStoresFilter$]
|
|
1796
|
-
];
|
|
1797
|
-
var ListVariantStoresResponse$ = [3, n0, _LVSRi,
|
|
1798
|
-
0,
|
|
1799
|
-
[_vS, _nT],
|
|
1800
|
-
[() => VariantStoreItems, 0]
|
|
1801
|
-
];
|
|
1802
|
-
var ListWorkflowsRequest$ = [3, n0, _LWR,
|
|
1803
|
-
0,
|
|
1804
|
-
[_ty, _n, _sTta, _mRa],
|
|
1805
|
-
[[0, { [_hQ]: _ty }], [0, { [_hQ]: _n }], [0, { [_hQ]: _sTta }], [1, { [_hQ]: _mRa }]]
|
|
1806
|
-
];
|
|
1807
|
-
var ListWorkflowsResponse$ = [3, n0, _LWRi,
|
|
1808
|
-
0,
|
|
1809
|
-
[_it, _nT],
|
|
1810
|
-
[() => WorkflowList, 0]
|
|
1811
|
-
];
|
|
1812
|
-
var ListWorkflowVersionsRequest$ = [3, n0, _LWVR,
|
|
1813
|
-
0,
|
|
1814
|
-
[_wI, _ty, _wOI, _sTta, _mRa],
|
|
1815
|
-
[[0, 1], [0, { [_hQ]: _ty }], [0, { [_hQ]: _wOI }], [0, { [_hQ]: _sTta }], [1, { [_hQ]: _mRa }]], 1
|
|
1816
|
-
];
|
|
1817
|
-
var ListWorkflowVersionsResponse$ = [3, n0, _LWVRi,
|
|
1818
|
-
0,
|
|
1819
|
-
[_it, _nT],
|
|
1820
|
-
[() => WorkflowVersionList, 0]
|
|
1821
|
-
];
|
|
1822
|
-
var MultipartReadSetUploadListItem$ = [3, n0, _MRSULI,
|
|
1823
|
-
0,
|
|
1824
|
-
[_sSI, _uI, _sFT, _sIu, _sIa, _gF, _rAe, _cT, _n, _d, _ta],
|
|
1825
|
-
[0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 128 | 0], 8
|
|
1826
|
-
];
|
|
1827
|
-
var NotSupportedOperationException$ = [-3, n0, _NSOE,
|
|
1828
|
-
{ [_e]: _c, [_hE]: 405 },
|
|
1829
|
-
[_m],
|
|
1830
|
-
[0], 1
|
|
1831
|
-
];
|
|
1832
|
-
schema.TypeRegistry.for(n0).registerError(NotSupportedOperationException$, NotSupportedOperationException);
|
|
1833
|
-
var PutS3AccessPolicyRequest$ = [3, n0, _PSAPR,
|
|
1834
|
-
0,
|
|
1835
|
-
[_sAPA, _sAP],
|
|
1836
|
-
[[0, 1], [() => S3AccessPolicy, 0]], 2
|
|
1837
|
-
];
|
|
1838
|
-
var PutS3AccessPolicyResponse$ = [3, n0, _PSAPRu,
|
|
1839
|
-
0,
|
|
1840
|
-
[_sAPA, _sIt, _sTtor],
|
|
1841
|
-
[0, 0, 0]
|
|
1842
|
-
];
|
|
1843
|
-
var RangeNotSatisfiableException$ = [-3, n0, _RNSE,
|
|
1844
|
-
{ [_e]: _c, [_hE]: 416 },
|
|
1845
|
-
[_m],
|
|
1846
|
-
[0], 1
|
|
1847
|
-
];
|
|
1848
|
-
schema.TypeRegistry.for(n0).registerError(RangeNotSatisfiableException$, RangeNotSatisfiableException);
|
|
1849
|
-
var ReadOptions$ = [3, n0, _RO,
|
|
1850
|
-
0,
|
|
1851
|
-
[_sep, _enc, _q, _qA, _es, _eQ, _co, _h, _lSi],
|
|
1852
|
-
[0, 0, 0, 2, 0, 2, 0, 2, 0]
|
|
1853
|
-
];
|
|
1854
|
-
var ReadSetBatchError$ = [3, n0, _RSBE,
|
|
1855
|
-
0,
|
|
1856
|
-
[_i, _cod, _m],
|
|
1857
|
-
[0, 0, 0], 3
|
|
1858
|
-
];
|
|
1859
|
-
var ReadSetFiles$ = [3, n0, _RSF,
|
|
1860
|
-
0,
|
|
1861
|
-
[_sou, _sour, _in],
|
|
1862
|
-
[() => FileInformation$, () => FileInformation$, () => FileInformation$]
|
|
1863
|
-
];
|
|
1864
|
-
var ReadSetFilter$ = [3, n0, _RSFe,
|
|
1865
|
-
0,
|
|
1866
|
-
[_n, _st, _rAe, _cA, _cB, _sIa, _sIu, _gF, _cTr],
|
|
1867
|
-
[0, 0, 0, 5, 5, 0, 0, 0, 0]
|
|
1868
|
-
];
|
|
1869
|
-
var ReadSetListItem$ = [3, n0, _RSLI,
|
|
1870
|
-
0,
|
|
1871
|
-
[_i, _ar, _sSI, _st, _fT, _cT, _sIu, _sIa, _n, _d, _rAe, _sIe, _sM, _cTr, _et],
|
|
1872
|
-
[0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, () => SequenceInformation$, 0, 0, () => ETag$], 6
|
|
1873
|
-
];
|
|
1874
|
-
var ReadSetS3Access$ = [3, n0, _RSSA,
|
|
1875
|
-
0,
|
|
1876
|
-
[_sU],
|
|
1877
|
-
[0]
|
|
1878
|
-
];
|
|
1879
|
-
var ReadSetUploadPartListFilter$ = [3, n0, _RSUPLF,
|
|
1880
|
-
0,
|
|
1881
|
-
[_cA, _cB],
|
|
1882
|
-
[5, 5]
|
|
1883
|
-
];
|
|
1884
|
-
var ReadSetUploadPartListItem$ = [3, n0, _RSUPLI,
|
|
1885
|
-
0,
|
|
1886
|
-
[_pN, _pSa, _pS, _ch, _cT, _lUT],
|
|
1887
|
-
[1, 1, 0, 0, 5, 5], 4
|
|
1888
|
-
];
|
|
1889
|
-
var ReferenceFiles$ = [3, n0, _RF,
|
|
1890
|
-
0,
|
|
1891
|
-
[_so, _in],
|
|
1892
|
-
[() => FileInformation$, () => FileInformation$]
|
|
1893
|
-
];
|
|
1894
|
-
var ReferenceFilter$ = [3, n0, _RFe,
|
|
1895
|
-
0,
|
|
1896
|
-
[_n, _md, _cA, _cB],
|
|
1897
|
-
[0, 0, 5, 5]
|
|
1898
|
-
];
|
|
1899
|
-
var ReferenceListItem$ = [3, n0, _RLI,
|
|
1900
|
-
0,
|
|
1901
|
-
[_i, _ar, _rSIe, _md, _cT, _uT, _st, _n, _d],
|
|
1902
|
-
[0, 0, 0, 0, 5, 5, 0, 0, 0], 6
|
|
1903
|
-
];
|
|
1904
|
-
var ReferenceStoreDetail$ = [3, n0, _RSD,
|
|
1905
|
-
0,
|
|
1906
|
-
[_ar, _i, _cT, _n, _d, _sC],
|
|
1907
|
-
[0, 0, 5, 0, 0, () => SseConfig$], 3
|
|
1908
|
-
];
|
|
1909
|
-
var ReferenceStoreFilter$ = [3, n0, _RSFef,
|
|
1910
|
-
0,
|
|
1911
|
-
[_n, _cA, _cB],
|
|
1912
|
-
[0, 5, 5]
|
|
1913
|
-
];
|
|
1914
|
-
var RegistryMapping$ = [3, n0, _RMe,
|
|
1915
|
-
0,
|
|
1916
|
-
[_uRU, _eRP, _uRP, _eAI],
|
|
1917
|
-
[0, 0, 0, 0]
|
|
1918
|
-
];
|
|
1919
|
-
var RequestTimeoutException$ = [-3, n0, _RTE,
|
|
1920
|
-
{ [_e]: _c, [_hE]: 408 },
|
|
1921
|
-
[_m],
|
|
1922
|
-
[0], 1
|
|
1923
|
-
];
|
|
1924
|
-
schema.TypeRegistry.for(n0).registerError(RequestTimeoutException$, RequestTimeoutException);
|
|
1925
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
1926
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
1927
|
-
[_m],
|
|
1928
|
-
[0], 1
|
|
1929
|
-
];
|
|
1930
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1931
|
-
var RunCacheListItem$ = [3, n0, _RCLI,
|
|
1932
|
-
0,
|
|
1933
|
-
[_ar, _cBa, _cSU, _cT, _i, _n, _st],
|
|
1934
|
-
[0, 0, 0, 5, 0, 0, 0]
|
|
1935
|
-
];
|
|
1936
|
-
var RunGroupListItem$ = [3, n0, _RGLI,
|
|
1937
|
-
0,
|
|
1938
|
-
[_ar, _i, _n, _mC, _mR, _mD, _cT, _mG],
|
|
1939
|
-
[0, 0, 0, 1, 1, 1, 5, 1]
|
|
1940
|
-
];
|
|
1941
|
-
var RunListItem$ = [3, n0, _RLIu,
|
|
1942
|
-
0,
|
|
1943
|
-
[_ar, _i, _st, _wI, _n, _pr, _sCt, _cT, _sTt, _sTto, _sT, _wVN],
|
|
1944
|
-
[0, 0, 0, 0, 0, 1, 1, 5, 5, 5, 0, 0]
|
|
1945
|
-
];
|
|
1946
|
-
var RunLogLocation$ = [3, n0, _RLL,
|
|
1947
|
-
0,
|
|
1948
|
-
[_eLS, _rLS],
|
|
1949
|
-
[0, 0]
|
|
1950
|
-
];
|
|
1951
|
-
var S3AccessConfig$ = [3, n0, _SAC,
|
|
1952
|
-
0,
|
|
1953
|
-
[_aLL],
|
|
1954
|
-
[0]
|
|
1955
|
-
];
|
|
1956
|
-
var SequenceInformation$ = [3, n0, _SI,
|
|
1957
|
-
0,
|
|
1958
|
-
[_tRC, _tBC, _gF, _ali],
|
|
1959
|
-
[1, 1, 0, 0]
|
|
1960
|
-
];
|
|
1961
|
-
var SequenceStoreDetail$ = [3, n0, _SSD,
|
|
1962
|
-
0,
|
|
1963
|
-
[_ar, _i, _cT, _n, _d, _sC, _fL, _eTAF, _st, _sM, _uT],
|
|
1964
|
-
[0, 0, 5, 0, 0, () => SseConfig$, 0, 0, 0, 0, 5], 3
|
|
1965
|
-
];
|
|
1966
|
-
var SequenceStoreFilter$ = [3, n0, _SSF,
|
|
1967
|
-
0,
|
|
1968
|
-
[_n, _cA, _cB, _st, _uA, _uB],
|
|
1969
|
-
[0, 5, 5, 0, 5, 5]
|
|
1970
|
-
];
|
|
1971
|
-
var SequenceStoreS3Access$ = [3, n0, _SSSA,
|
|
1972
|
-
0,
|
|
1973
|
-
[_sU, _sAPA, _aLL],
|
|
1974
|
-
[0, 0, 0]
|
|
1975
|
-
];
|
|
1976
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
1977
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
1978
|
-
[_m],
|
|
1979
|
-
[0], 1
|
|
1980
|
-
];
|
|
1981
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
1982
|
-
var ShareDetails$ = [3, n0, _SD,
|
|
1983
|
-
0,
|
|
1984
|
-
[_sI, _rAes, _rIes, _pSr, _oI, _st, _sM, _sN, _cT, _uT],
|
|
1985
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 5, 5]
|
|
1986
|
-
];
|
|
1987
|
-
var SourceFiles$ = [3, n0, _SF,
|
|
1988
|
-
0,
|
|
1989
|
-
[_sou, _sour],
|
|
1990
|
-
[0, 0], 1
|
|
1991
|
-
];
|
|
1992
|
-
var SourceReference$ = [3, n0, _SR,
|
|
1993
|
-
0,
|
|
1994
|
-
[_ty, _va],
|
|
1995
|
-
[0, 0], 2
|
|
1996
|
-
];
|
|
1997
|
-
var SseConfig$ = [3, n0, _SC,
|
|
1998
|
-
0,
|
|
1999
|
-
[_ty, _kA],
|
|
2000
|
-
[0, 0], 1
|
|
2001
|
-
];
|
|
2002
|
-
var StartAnnotationImportRequest$ = [3, n0, _SAIR,
|
|
2003
|
-
0,
|
|
2004
|
-
[_dN, _rA, _it, _vN, _fO, _rLN, _aF],
|
|
2005
|
-
[0, 0, () => AnnotationImportItemSources, 0, () => FormatOptions$, 2, 128 | 0], 3
|
|
2006
|
-
];
|
|
2007
|
-
var StartAnnotationImportResponse$ = [3, n0, _SAIRt,
|
|
2008
|
-
0,
|
|
2009
|
-
[_jI],
|
|
2010
|
-
[0], 1
|
|
2011
|
-
];
|
|
2012
|
-
var StartReadSetActivationJobRequest$ = [3, n0, _SRSAJR,
|
|
2013
|
-
0,
|
|
2014
|
-
[_sSI, _sourc, _cTl],
|
|
2015
|
-
[[0, 1], () => StartReadSetActivationJobSourceList, 0], 2
|
|
2016
|
-
];
|
|
2017
|
-
var StartReadSetActivationJobResponse$ = [3, n0, _SRSAJRt,
|
|
2018
|
-
0,
|
|
2019
|
-
[_i, _sSI, _st, _cT],
|
|
2020
|
-
[0, 0, 0, 5], 4
|
|
2021
|
-
];
|
|
2022
|
-
var StartReadSetActivationJobSourceItem$ = [3, n0, _SRSAJSI,
|
|
2023
|
-
0,
|
|
2024
|
-
[_rSI],
|
|
2025
|
-
[0], 1
|
|
2026
|
-
];
|
|
2027
|
-
var StartReadSetExportJobRequest$ = [3, n0, _SRSEJR,
|
|
2028
|
-
0,
|
|
2029
|
-
[_sSI, _de, _rA, _sourc, _cTl],
|
|
2030
|
-
[[0, 1], 0, 0, () => ExportReadSetList, 0], 4
|
|
2031
|
-
];
|
|
2032
|
-
var StartReadSetExportJobResponse$ = [3, n0, _SRSEJRt,
|
|
2033
|
-
0,
|
|
2034
|
-
[_i, _sSI, _de, _st, _cT],
|
|
2035
|
-
[0, 0, 0, 0, 5], 5
|
|
2036
|
-
];
|
|
2037
|
-
var StartReadSetImportJobRequest$ = [3, n0, _SRSIJR,
|
|
2038
|
-
0,
|
|
2039
|
-
[_sSI, _rA, _sourc, _cTl],
|
|
2040
|
-
[[0, 1], 0, () => StartReadSetImportJobSourceList, 0], 3
|
|
2041
|
-
];
|
|
2042
|
-
var StartReadSetImportJobResponse$ = [3, n0, _SRSIJRt,
|
|
2043
|
-
0,
|
|
2044
|
-
[_i, _sSI, _rA, _st, _cT],
|
|
2045
|
-
[0, 0, 0, 0, 5], 5
|
|
2046
|
-
];
|
|
2047
|
-
var StartReadSetImportJobSourceItem$ = [3, n0, _SRSIJSI,
|
|
2048
|
-
0,
|
|
2049
|
-
[_sFo, _sFT, _sIu, _sIa, _gF, _rAe, _n, _d, _ta],
|
|
2050
|
-
[() => SourceFiles$, 0, 0, 0, 0, 0, 0, 0, 128 | 0], 4
|
|
2051
|
-
];
|
|
2052
|
-
var StartReferenceImportJobRequest$ = [3, n0, _SRIJR,
|
|
2053
|
-
0,
|
|
2054
|
-
[_rSIe, _rA, _sourc, _cTl],
|
|
2055
|
-
[[0, 1], 0, () => StartReferenceImportJobSourceList, 0], 3
|
|
2056
|
-
];
|
|
2057
|
-
var StartReferenceImportJobResponse$ = [3, n0, _SRIJRt,
|
|
2058
|
-
0,
|
|
2059
|
-
[_i, _rSIe, _rA, _st, _cT],
|
|
2060
|
-
[0, 0, 0, 0, 5], 5
|
|
2061
|
-
];
|
|
2062
|
-
var StartReferenceImportJobSourceItem$ = [3, n0, _SRIJSI,
|
|
2063
|
-
0,
|
|
2064
|
-
[_sFou, _n, _d, _ta],
|
|
2065
|
-
[0, 0, 0, 128 | 0], 2
|
|
2066
|
-
];
|
|
2067
|
-
var StartRunRequest$ = [3, n0, _SRR,
|
|
2068
|
-
0,
|
|
2069
|
-
[_rA, _oU, _wI, _wT, _rIu, _n, _cI, _cBa, _rGI, _pr, _par, _sCt, _lL, _ta, _rI, _rMet, _sT, _wOI, _wVN],
|
|
2070
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 15, 1, 0, 128 | 0, [0, 4], 0, 0, 0, 0], 2
|
|
2071
|
-
];
|
|
2072
|
-
var StartRunResponse$ = [3, n0, _SRRt,
|
|
2073
|
-
0,
|
|
2074
|
-
[_ar, _i, _st, _ta, _u, _rOU],
|
|
2075
|
-
[0, 0, 0, 128 | 0, 0, 0]
|
|
2076
|
-
];
|
|
2077
|
-
var StartVariantImportRequest$ = [3, n0, _SVIR,
|
|
2078
|
-
0,
|
|
2079
|
-
[_dN, _rA, _it, _rLN, _aF],
|
|
2080
|
-
[0, 0, () => VariantImportItemSources, 2, 128 | 0], 3
|
|
2081
|
-
];
|
|
2082
|
-
var StartVariantImportResponse$ = [3, n0, _SVIRt,
|
|
2083
|
-
0,
|
|
2084
|
-
[_jI],
|
|
2085
|
-
[0], 1
|
|
2086
|
-
];
|
|
2087
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
2088
|
-
0,
|
|
2089
|
-
[_rAes, _ta],
|
|
2090
|
-
[[0, 1], 128 | 0], 2
|
|
2091
|
-
];
|
|
2092
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
2093
|
-
0,
|
|
2094
|
-
[],
|
|
2095
|
-
[]
|
|
2096
|
-
];
|
|
2097
|
-
var TaskListItem$ = [3, n0, _TLI,
|
|
2098
|
-
0,
|
|
2099
|
-
[_tI, _st, _n, _cp, _cH, _cSU, _me, _cT, _sTt, _sTto, _g, _iT],
|
|
2100
|
-
[0, 0, 0, 1, 2, 0, 1, 5, 5, 5, 1, 0]
|
|
2101
|
-
];
|
|
2102
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
2103
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
2104
|
-
[_m],
|
|
2105
|
-
[0], 1
|
|
2106
|
-
];
|
|
2107
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
2108
|
-
var TsvOptions$ = [3, n0, _TO,
|
|
2109
|
-
0,
|
|
2110
|
-
[_rOe],
|
|
2111
|
-
[() => ReadOptions$]
|
|
2112
|
-
];
|
|
2113
|
-
var TsvStoreOptions$ = [3, n0, _TSO,
|
|
2114
|
-
0,
|
|
2115
|
-
[_aT, _fTH, _sc],
|
|
2116
|
-
[0, 128 | 0, [1, n0, _S, 0, 128 | 0]]
|
|
2117
|
-
];
|
|
2118
|
-
var TsvVersionOptions$ = [3, n0, _TVO,
|
|
2119
|
-
0,
|
|
2120
|
-
[_aT, _fTH, _sc],
|
|
2121
|
-
[0, 128 | 0, [1, n0, _S, 0, 128 | 0]]
|
|
2122
|
-
];
|
|
2123
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
2124
|
-
0,
|
|
2125
|
-
[_rAes, _tK],
|
|
2126
|
-
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
2127
|
-
];
|
|
2128
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
2129
|
-
0,
|
|
2130
|
-
[],
|
|
2131
|
-
[]
|
|
2132
|
-
];
|
|
2133
|
-
var UpdateAnnotationStoreRequest$ = [3, n0, _UASR,
|
|
2134
|
-
0,
|
|
2135
|
-
[_n, _d],
|
|
2136
|
-
[[0, 1], 0], 1
|
|
2137
|
-
];
|
|
2138
|
-
var UpdateAnnotationStoreResponse$ = [3, n0, _UASRp,
|
|
2139
|
-
0,
|
|
2140
|
-
[_i, _r, _st, _n, _d, _cT, _uT, _sO, _sF],
|
|
2141
|
-
[0, () => ReferenceItem$, 0, 0, 0, 5, 5, () => StoreOptions$, 0], 7
|
|
2142
|
-
];
|
|
2143
|
-
var UpdateAnnotationStoreVersionRequest$ = [3, n0, _UASVR,
|
|
2144
|
-
0,
|
|
2145
|
-
[_n, _vN, _d],
|
|
2146
|
-
[[0, 1], [0, 1], 0], 2
|
|
2147
|
-
];
|
|
2148
|
-
var UpdateAnnotationStoreVersionResponse$ = [3, n0, _UASVRp,
|
|
2149
|
-
0,
|
|
2150
|
-
[_sIt, _i, _st, _n, _vN, _d, _cT, _uT],
|
|
2151
|
-
[0, 0, 0, 0, 0, 0, 5, 5], 8
|
|
2152
|
-
];
|
|
2153
|
-
var UpdateRunCacheRequest$ = [3, n0, _URCR,
|
|
2154
|
-
0,
|
|
2155
|
-
[_i, _cBa, _d, _n],
|
|
2156
|
-
[[0, 1], 0, 0, 0], 1
|
|
2157
|
-
];
|
|
2158
|
-
var UpdateRunGroupRequest$ = [3, n0, _URGR,
|
|
2159
|
-
0,
|
|
2160
|
-
[_i, _n, _mC, _mR, _mD, _mG],
|
|
2161
|
-
[[0, 1], 0, 1, 1, 1, 1], 1
|
|
2162
|
-
];
|
|
2163
|
-
var UpdateSequenceStoreRequest$ = [3, n0, _USSR,
|
|
2164
|
-
0,
|
|
2165
|
-
[_i, _n, _d, _cTl, _fL, _pSLT, _sAC],
|
|
2166
|
-
[[0, 1], 0, 0, [0, 4], 0, 64 | 0, () => S3AccessConfig$], 1
|
|
2167
|
-
];
|
|
2168
|
-
var UpdateSequenceStoreResponse$ = [3, n0, _USSRp,
|
|
2169
|
-
0,
|
|
2170
|
-
[_i, _ar, _cT, _n, _d, _sC, _uT, _pSLT, _st, _sM, _fL, _sAc, _eTAF],
|
|
2171
|
-
[0, 0, 5, 0, 0, () => SseConfig$, 5, 64 | 0, 0, 0, 0, () => SequenceStoreS3Access$, 0], 3
|
|
2172
|
-
];
|
|
2173
|
-
var UpdateVariantStoreRequest$ = [3, n0, _UVSR,
|
|
2174
|
-
0,
|
|
2175
|
-
[_n, _d],
|
|
2176
|
-
[[0, 1], 0], 1
|
|
2177
|
-
];
|
|
2178
|
-
var UpdateVariantStoreResponse$ = [3, n0, _UVSRp,
|
|
2179
|
-
0,
|
|
2180
|
-
[_i, _r, _st, _n, _d, _cT, _uT],
|
|
2181
|
-
[0, () => ReferenceItem$, 0, 0, 0, 5, 5], 7
|
|
2182
|
-
];
|
|
2183
|
-
var UpdateWorkflowRequest$ = [3, n0, _UWR,
|
|
2184
|
-
0,
|
|
2185
|
-
[_i, _n, _d, _sT, _sCt, _rMe],
|
|
2186
|
-
[[0, 1], 0, 0, 0, 1, [() => ReadmeMarkdown, 0]], 1
|
|
2187
|
-
];
|
|
2188
|
-
var UpdateWorkflowVersionRequest$ = [3, n0, _UWVR,
|
|
2189
|
-
0,
|
|
2190
|
-
[_wI, _vN, _d, _sT, _sCt, _rMe],
|
|
2191
|
-
[[0, 1], [0, 1], 0, 0, 1, [() => ReadmeMarkdown, 0]], 2
|
|
2192
|
-
];
|
|
2193
|
-
var UploadReadSetPartRequest$ = [3, n0, _URSPR,
|
|
2194
|
-
0,
|
|
2195
|
-
[_sSI, _uI, _pS, _pN, _pa],
|
|
2196
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _pS }], [1, { [_hQ]: _pN }], [() => ReadSetPartStreamingBlob, 16]], 5
|
|
2197
|
-
];
|
|
2198
|
-
var UploadReadSetPartResponse$ = [3, n0, _URSPRp,
|
|
2199
|
-
0,
|
|
2200
|
-
[_ch],
|
|
2201
|
-
[0], 1
|
|
2202
|
-
];
|
|
2203
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
2204
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
2205
|
-
[_m],
|
|
2206
|
-
[0], 1
|
|
2207
|
-
];
|
|
2208
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
2209
|
-
var VariantImportItemDetail$ = [3, n0, _VIID,
|
|
2210
|
-
0,
|
|
2211
|
-
[_so, _jS, _sM],
|
|
2212
|
-
[0, 0, 0], 2
|
|
2213
|
-
];
|
|
2214
|
-
var VariantImportItemSource$ = [3, n0, _VIIS,
|
|
2215
|
-
0,
|
|
2216
|
-
[_so],
|
|
2217
|
-
[0], 1
|
|
2218
|
-
];
|
|
2219
|
-
var VariantImportJobItem$ = [3, n0, _VIJI,
|
|
2220
|
-
0,
|
|
2221
|
-
[_i, _dN, _rA, _st, _cT, _uT, _cTo, _rLN, _aF],
|
|
2222
|
-
[0, 0, 0, 0, 5, 5, 5, 2, 128 | 0], 6
|
|
2223
|
-
];
|
|
2224
|
-
var VariantStoreItem$ = [3, n0, _VSI,
|
|
2225
|
-
0,
|
|
2226
|
-
[_i, _r, _st, _sA, _n, _d, _sC, _cT, _uT, _sM, _sSB],
|
|
2227
|
-
[0, () => ReferenceItem$, 0, 0, 0, 0, () => SseConfig$, 5, 5, 0, 1], 11
|
|
2228
|
-
];
|
|
2229
|
-
var VcfOptions$ = [3, n0, _VO,
|
|
2230
|
-
0,
|
|
2231
|
-
[_iQF, _iFF],
|
|
2232
|
-
[2, 2]
|
|
2233
|
-
];
|
|
2234
|
-
var VersionDeleteError$ = [3, n0, _VDE,
|
|
2235
|
-
0,
|
|
2236
|
-
[_vN, _m],
|
|
2237
|
-
[0, 0], 2
|
|
2238
|
-
];
|
|
2239
|
-
var WorkflowListItem$ = [3, n0, _WLI,
|
|
2240
|
-
0,
|
|
2241
|
-
[_ar, _i, _n, _st, _ty, _di, _cT, _met],
|
|
2242
|
-
[0, 0, 0, 0, 0, 0, 5, 128 | 0]
|
|
2243
|
-
];
|
|
2244
|
-
var WorkflowParameter$ = [3, n0, _WP,
|
|
2245
|
-
0,
|
|
2246
|
-
[_d, _o],
|
|
2247
|
-
[0, 2]
|
|
2248
|
-
];
|
|
2249
|
-
var WorkflowVersionListItem$ = [3, n0, _WVLI,
|
|
2250
|
-
0,
|
|
2251
|
-
[_ar, _wI, _vN, _d, _st, _ty, _di, _cT, _met],
|
|
2252
|
-
[0, 0, 0, 0, 0, 0, 0, 5, 128 | 0]
|
|
2253
|
-
];
|
|
2254
|
-
var __Unit = "unit";
|
|
2255
|
-
var OmicsServiceException$ = [-3, _sm, "OmicsServiceException", 0, [], []];
|
|
2256
|
-
schema.TypeRegistry.for(_sm).registerError(OmicsServiceException$, OmicsServiceException);
|
|
2257
|
-
var ActivateReadSetJobList = [1, n0, _ARSJL,
|
|
2258
|
-
0, () => ActivateReadSetJobItem$
|
|
2259
|
-
];
|
|
2260
|
-
var ActivateReadSetSourceList = [1, n0, _ARSSL,
|
|
2261
|
-
0, () => ActivateReadSetSourceItem$
|
|
2262
|
-
];
|
|
2263
|
-
var AnnotationImportItemDetails = [1, n0, _AIIDn,
|
|
2264
|
-
0, () => AnnotationImportItemDetail$
|
|
2265
|
-
];
|
|
2266
|
-
var AnnotationImportItemSources = [1, n0, _AIISn,
|
|
2267
|
-
0, () => AnnotationImportItemSource$
|
|
2268
|
-
];
|
|
2269
|
-
var AnnotationImportJobItems = [1, n0, _AIJIn,
|
|
2270
|
-
0, () => AnnotationImportJobItem$
|
|
2271
|
-
];
|
|
2272
|
-
var AnnotationStoreItems = [1, n0, _ASIn,
|
|
2273
|
-
0, () => AnnotationStoreItem$
|
|
2274
|
-
];
|
|
2275
|
-
var AnnotationStoreVersionItems = [1, n0, _ASVIn,
|
|
2276
|
-
0, () => AnnotationStoreVersionItem$
|
|
2277
|
-
];
|
|
2278
|
-
var CompleteReadSetUploadPartList = [1, n0, _CRSUPL,
|
|
2279
|
-
0, () => CompleteReadSetUploadPartListItem$
|
|
2280
|
-
];
|
|
2281
|
-
var ExportReadSetDetailList = [1, n0, _ERSDL,
|
|
2282
|
-
0, () => ExportReadSetDetail$
|
|
2283
|
-
];
|
|
2284
|
-
var ExportReadSetJobDetailList = [1, n0, _ERSJDL,
|
|
2285
|
-
0, () => ExportReadSetJobDetail$
|
|
2286
|
-
];
|
|
2287
|
-
var ExportReadSetList = [1, n0, _ERSL,
|
|
2288
|
-
0, () => ExportReadSet$
|
|
2289
|
-
];
|
|
2290
|
-
var ImageMappingsList = [1, n0, _IML,
|
|
2291
|
-
0, () => ImageMapping$
|
|
2292
|
-
];
|
|
2293
|
-
var ImportReadSetJobList = [1, n0, _IRSJL,
|
|
2294
|
-
0, () => ImportReadSetJobItem$
|
|
2295
|
-
];
|
|
2296
|
-
var ImportReadSetSourceList = [1, n0, _IRSSL,
|
|
2297
|
-
0, () => ImportReadSetSourceItem$
|
|
2298
|
-
];
|
|
2299
|
-
var ImportReferenceJobList = [1, n0, _IRJL,
|
|
2300
|
-
0, () => ImportReferenceJobItem$
|
|
2301
|
-
];
|
|
2302
|
-
var ImportReferenceSourceList = [1, n0, _IRSL,
|
|
2303
|
-
0, () => ImportReferenceSourceItem$
|
|
2304
|
-
];
|
|
2305
|
-
var MultipartReadSetUploadList = [1, n0, _MRSUL,
|
|
2306
|
-
0, () => MultipartReadSetUploadListItem$
|
|
2307
|
-
];
|
|
2308
|
-
var ReadSetBatchErrorList = [1, n0, _RSBEL,
|
|
2309
|
-
0, () => ReadSetBatchError$
|
|
2310
|
-
];
|
|
2311
|
-
var ReadSetList = [1, n0, _RSL,
|
|
2312
|
-
0, () => ReadSetListItem$
|
|
2313
|
-
];
|
|
2314
|
-
var ReadSetUploadPartList = [1, n0, _RSUPL,
|
|
2315
|
-
0, () => ReadSetUploadPartListItem$
|
|
2316
|
-
];
|
|
2317
|
-
var ReferenceList = [1, n0, _RL,
|
|
2318
|
-
0, () => ReferenceListItem$
|
|
2319
|
-
];
|
|
2320
|
-
var ReferenceStoreDetailList = [1, n0, _RSDL,
|
|
2321
|
-
0, () => ReferenceStoreDetail$
|
|
2322
|
-
];
|
|
2323
|
-
var RegistryMappingsList = [1, n0, _RML,
|
|
2324
|
-
0, () => RegistryMapping$
|
|
2325
|
-
];
|
|
2326
|
-
var RunCacheList = [1, n0, _RCL,
|
|
2327
|
-
0, () => RunCacheListItem$
|
|
2328
|
-
];
|
|
2329
|
-
var RunGroupList = [1, n0, _RGL,
|
|
2330
|
-
0, () => RunGroupListItem$
|
|
2331
|
-
];
|
|
2332
|
-
var RunList = [1, n0, _RLu,
|
|
2333
|
-
0, () => RunListItem$
|
|
2334
|
-
];
|
|
2335
|
-
var SequenceStoreDetailList = [1, n0, _SSDL,
|
|
2336
|
-
0, () => SequenceStoreDetail$
|
|
2337
|
-
];
|
|
2338
|
-
var ShareDetailsList = [1, n0, _SDL,
|
|
2339
|
-
0, () => ShareDetails$
|
|
2340
|
-
];
|
|
2341
|
-
var StartReadSetActivationJobSourceList = [1, n0, _SRSAJSL,
|
|
2342
|
-
0, () => StartReadSetActivationJobSourceItem$
|
|
2343
|
-
];
|
|
2344
|
-
var StartReadSetImportJobSourceList = [1, n0, _SRSIJSL,
|
|
2345
|
-
0, () => StartReadSetImportJobSourceItem$
|
|
2346
|
-
];
|
|
2347
|
-
var StartReferenceImportJobSourceList = [1, n0, _SRIJSL,
|
|
2348
|
-
0, () => StartReferenceImportJobSourceItem$
|
|
2349
|
-
];
|
|
2350
|
-
var TaskList = [1, n0, _TL,
|
|
2351
|
-
0, () => TaskListItem$
|
|
2352
|
-
];
|
|
2353
|
-
var VariantImportItemDetails = [1, n0, _VIIDa,
|
|
2354
|
-
0, () => VariantImportItemDetail$
|
|
2355
|
-
];
|
|
2356
|
-
var VariantImportItemSources = [1, n0, _VIISa,
|
|
2357
|
-
0, () => VariantImportItemSource$
|
|
2358
|
-
];
|
|
2359
|
-
var VariantImportJobItems = [1, n0, _VIJIa,
|
|
2360
|
-
0, () => VariantImportJobItem$
|
|
2361
|
-
];
|
|
2362
|
-
var VariantStoreItems = [1, n0, _VSIa,
|
|
2363
|
-
0, () => VariantStoreItem$
|
|
2364
|
-
];
|
|
2365
|
-
var VersionDeleteErrorList = [1, n0, _VDEL,
|
|
2366
|
-
0, () => VersionDeleteError$
|
|
2367
|
-
];
|
|
2368
|
-
var WorkflowList = [1, n0, _WL,
|
|
2369
|
-
0, () => WorkflowListItem$
|
|
2370
|
-
];
|
|
2371
|
-
var WorkflowVersionList = [1, n0, _WVL,
|
|
2372
|
-
0, () => WorkflowVersionListItem$
|
|
2373
|
-
];
|
|
2374
|
-
var WorkflowParameterTemplate = [2, n0, _WPT,
|
|
2375
|
-
0, 0, () => WorkflowParameter$
|
|
2376
|
-
];
|
|
2377
|
-
var FormatOptions$ = [4, n0, _FO,
|
|
2378
|
-
0,
|
|
2379
|
-
[_tO, _vOc],
|
|
2380
|
-
[() => TsvOptions$, () => VcfOptions$]
|
|
2381
|
-
];
|
|
2382
|
-
var ReferenceItem$ = [4, n0, _RI,
|
|
2383
|
-
0,
|
|
2384
|
-
[_rAe],
|
|
2385
|
-
[0]
|
|
2386
|
-
];
|
|
2387
|
-
var StoreOptions$ = [4, n0, _SO,
|
|
2388
|
-
0,
|
|
2389
|
-
[_tSO],
|
|
2390
|
-
[() => TsvStoreOptions$]
|
|
2391
|
-
];
|
|
2392
|
-
var VersionOptions$ = [4, n0, _VOe,
|
|
2393
|
-
0,
|
|
2394
|
-
[_tVO],
|
|
2395
|
-
[() => TsvVersionOptions$]
|
|
2396
|
-
];
|
|
2397
|
-
var AbortMultipartReadSetUpload$ = [9, n0, _AMRSU,
|
|
2398
|
-
{ [_end]: ["control-storage-"], [_ht]: ["DELETE", "/sequencestore/{sequenceStoreId}/upload/{uploadId}/abort", 200] }, () => AbortMultipartReadSetUploadRequest$, () => AbortMultipartReadSetUploadResponse$
|
|
2399
|
-
];
|
|
2400
|
-
var AcceptShare$ = [9, n0, _AS,
|
|
2401
|
-
{ [_end]: ["analytics-"], [_ht]: ["POST", "/share/{shareId}", 200] }, () => AcceptShareRequest$, () => AcceptShareResponse$
|
|
2402
|
-
];
|
|
2403
|
-
var BatchDeleteReadSet$ = [9, n0, _BDRS,
|
|
2404
|
-
{ [_end]: ["control-storage-"], [_ht]: ["POST", "/sequencestore/{sequenceStoreId}/readset/batch/delete", 200] }, () => BatchDeleteReadSetRequest$, () => BatchDeleteReadSetResponse$
|
|
2405
|
-
];
|
|
2406
|
-
var CancelAnnotationImportJob$ = [9, n0, _CAIJ,
|
|
2407
|
-
{ [_end]: ["analytics-"], [_ht]: ["DELETE", "/import/annotation/{jobId}", 200] }, () => CancelAnnotationImportRequest$, () => CancelAnnotationImportResponse$
|
|
2408
|
-
];
|
|
2409
|
-
var CancelRun$ = [9, n0, _CR,
|
|
2410
|
-
{ [_end]: ["workflows-"], [_ht]: ["POST", "/run/{id}/cancel", 202] }, () => CancelRunRequest$, () => __Unit
|
|
2411
|
-
];
|
|
2412
|
-
var CancelVariantImportJob$ = [9, n0, _CVIJ,
|
|
2413
|
-
{ [_end]: ["analytics-"], [_ht]: ["DELETE", "/import/variant/{jobId}", 200] }, () => CancelVariantImportRequest$, () => CancelVariantImportResponse$
|
|
2414
|
-
];
|
|
2415
|
-
var CompleteMultipartReadSetUpload$ = [9, n0, _CMRSU,
|
|
2416
|
-
{ [_end]: ["storage-"], [_ht]: ["POST", "/sequencestore/{sequenceStoreId}/upload/{uploadId}/complete", 200] }, () => CompleteMultipartReadSetUploadRequest$, () => CompleteMultipartReadSetUploadResponse$
|
|
2417
|
-
];
|
|
2418
|
-
var CreateAnnotationStore$ = [9, n0, _CAS,
|
|
2419
|
-
{ [_end]: ["analytics-"], [_ht]: ["POST", "/annotationStore", 200] }, () => CreateAnnotationStoreRequest$, () => CreateAnnotationStoreResponse$
|
|
2420
|
-
];
|
|
2421
|
-
var CreateAnnotationStoreVersion$ = [9, n0, _CASV,
|
|
2422
|
-
{ [_end]: ["analytics-"], [_ht]: ["POST", "/annotationStore/{name}/version", 200] }, () => CreateAnnotationStoreVersionRequest$, () => CreateAnnotationStoreVersionResponse$
|
|
2423
|
-
];
|
|
2424
|
-
var CreateMultipartReadSetUpload$ = [9, n0, _CMRSUr,
|
|
2425
|
-
{ [_end]: ["control-storage-"], [_ht]: ["POST", "/sequencestore/{sequenceStoreId}/upload", 200] }, () => CreateMultipartReadSetUploadRequest$, () => CreateMultipartReadSetUploadResponse$
|
|
2426
|
-
];
|
|
2427
|
-
var CreateReferenceStore$ = [9, n0, _CRS,
|
|
2428
|
-
{ [_end]: ["control-storage-"], [_ht]: ["POST", "/referencestore", 200] }, () => CreateReferenceStoreRequest$, () => CreateReferenceStoreResponse$
|
|
2429
|
-
];
|
|
2430
|
-
var CreateRunCache$ = [9, n0, _CRC,
|
|
2431
|
-
{ [_end]: ["workflows-"], [_ht]: ["POST", "/runCache", 201] }, () => CreateRunCacheRequest$, () => CreateRunCacheResponse$
|
|
2432
|
-
];
|
|
2433
|
-
var CreateRunGroup$ = [9, n0, _CRG,
|
|
2434
|
-
{ [_end]: ["workflows-"], [_ht]: ["POST", "/runGroup", 201] }, () => CreateRunGroupRequest$, () => CreateRunGroupResponse$
|
|
2435
|
-
];
|
|
2436
|
-
var CreateSequenceStore$ = [9, n0, _CSS,
|
|
2437
|
-
{ [_end]: ["control-storage-"], [_ht]: ["POST", "/sequencestore", 200] }, () => CreateSequenceStoreRequest$, () => CreateSequenceStoreResponse$
|
|
2438
|
-
];
|
|
2439
|
-
var CreateShare$ = [9, n0, _CS,
|
|
2440
|
-
{ [_end]: ["analytics-"], [_ht]: ["POST", "/share", 200] }, () => CreateShareRequest$, () => CreateShareResponse$
|
|
2441
|
-
];
|
|
2442
|
-
var CreateVariantStore$ = [9, n0, _CVS,
|
|
2443
|
-
{ [_end]: ["analytics-"], [_ht]: ["POST", "/variantStore", 200] }, () => CreateVariantStoreRequest$, () => CreateVariantStoreResponse$
|
|
2444
|
-
];
|
|
2445
|
-
var CreateWorkflow$ = [9, n0, _CW,
|
|
2446
|
-
{ [_end]: ["workflows-"], [_ht]: ["POST", "/workflow", 201] }, () => CreateWorkflowRequest$, () => CreateWorkflowResponse$
|
|
2447
|
-
];
|
|
2448
|
-
var CreateWorkflowVersion$ = [9, n0, _CWV,
|
|
2449
|
-
{ [_end]: ["workflows-"], [_ht]: ["POST", "/workflow/{workflowId}/version", 201] }, () => CreateWorkflowVersionRequest$, () => CreateWorkflowVersionResponse$
|
|
2450
|
-
];
|
|
2451
|
-
var DeleteAnnotationStore$ = [9, n0, _DAS,
|
|
2452
|
-
{ [_end]: ["analytics-"], [_ht]: ["DELETE", "/annotationStore/{name}", 200] }, () => DeleteAnnotationStoreRequest$, () => DeleteAnnotationStoreResponse$
|
|
2453
|
-
];
|
|
2454
|
-
var DeleteAnnotationStoreVersions$ = [9, n0, _DASV,
|
|
2455
|
-
{ [_end]: ["analytics-"], [_ht]: ["POST", "/annotationStore/{name}/versions/delete", 200] }, () => DeleteAnnotationStoreVersionsRequest$, () => DeleteAnnotationStoreVersionsResponse$
|
|
2456
|
-
];
|
|
2457
|
-
var DeleteReference$ = [9, n0, _DRe,
|
|
2458
|
-
{ [_end]: ["control-storage-"], [_ht]: ["DELETE", "/referencestore/{referenceStoreId}/reference/{id}", 200] }, () => DeleteReferenceRequest$, () => DeleteReferenceResponse$
|
|
2459
|
-
];
|
|
2460
|
-
var DeleteReferenceStore$ = [9, n0, _DRS,
|
|
2461
|
-
{ [_end]: ["control-storage-"], [_ht]: ["DELETE", "/referencestore/{id}", 200] }, () => DeleteReferenceStoreRequest$, () => DeleteReferenceStoreResponse$
|
|
2462
|
-
];
|
|
2463
|
-
var DeleteRun$ = [9, n0, _DRel,
|
|
2464
|
-
{ [_end]: ["workflows-"], [_ht]: ["DELETE", "/run/{id}", 202] }, () => DeleteRunRequest$, () => __Unit
|
|
2465
|
-
];
|
|
2466
|
-
var DeleteRunCache$ = [9, n0, _DRC,
|
|
2467
|
-
{ [_end]: ["workflows-"], [_ht]: ["DELETE", "/runCache/{id}", 202] }, () => DeleteRunCacheRequest$, () => __Unit
|
|
2468
|
-
];
|
|
2469
|
-
var DeleteRunGroup$ = [9, n0, _DRG,
|
|
2470
|
-
{ [_end]: ["workflows-"], [_ht]: ["DELETE", "/runGroup/{id}", 202] }, () => DeleteRunGroupRequest$, () => __Unit
|
|
2471
|
-
];
|
|
2472
|
-
var DeleteS3AccessPolicy$ = [9, n0, _DSAP,
|
|
2473
|
-
{ [_end]: ["control-storage-"], [_ht]: ["DELETE", "/s3accesspolicy/{s3AccessPointArn}", 200] }, () => DeleteS3AccessPolicyRequest$, () => DeleteS3AccessPolicyResponse$
|
|
2474
|
-
];
|
|
2475
|
-
var DeleteSequenceStore$ = [9, n0, _DSS,
|
|
2476
|
-
{ [_end]: ["control-storage-"], [_ht]: ["DELETE", "/sequencestore/{id}", 200] }, () => DeleteSequenceStoreRequest$, () => DeleteSequenceStoreResponse$
|
|
2477
|
-
];
|
|
2478
|
-
var DeleteShare$ = [9, n0, _DS,
|
|
2479
|
-
{ [_end]: ["analytics-"], [_ht]: ["DELETE", "/share/{shareId}", 200] }, () => DeleteShareRequest$, () => DeleteShareResponse$
|
|
2480
|
-
];
|
|
2481
|
-
var DeleteVariantStore$ = [9, n0, _DVS,
|
|
2482
|
-
{ [_end]: ["analytics-"], [_ht]: ["DELETE", "/variantStore/{name}", 200] }, () => DeleteVariantStoreRequest$, () => DeleteVariantStoreResponse$
|
|
2483
|
-
];
|
|
2484
|
-
var DeleteWorkflow$ = [9, n0, _DW,
|
|
2485
|
-
{ [_end]: ["workflows-"], [_ht]: ["DELETE", "/workflow/{id}", 202] }, () => DeleteWorkflowRequest$, () => __Unit
|
|
2486
|
-
];
|
|
2487
|
-
var DeleteWorkflowVersion$ = [9, n0, _DWV,
|
|
2488
|
-
{ [_end]: ["workflows-"], [_ht]: ["DELETE", "/workflow/{workflowId}/version/{versionName}", 202] }, () => DeleteWorkflowVersionRequest$, () => __Unit
|
|
2489
|
-
];
|
|
2490
|
-
var GetAnnotationImportJob$ = [9, n0, _GAIJ,
|
|
2491
|
-
{ [_end]: ["analytics-"], [_ht]: ["GET", "/import/annotation/{jobId}", 200] }, () => GetAnnotationImportRequest$, () => GetAnnotationImportResponse$
|
|
2492
|
-
];
|
|
2493
|
-
var GetAnnotationStore$ = [9, n0, _GAS,
|
|
2494
|
-
{ [_end]: ["analytics-"], [_ht]: ["GET", "/annotationStore/{name}", 200] }, () => GetAnnotationStoreRequest$, () => GetAnnotationStoreResponse$
|
|
2495
|
-
];
|
|
2496
|
-
var GetAnnotationStoreVersion$ = [9, n0, _GASV,
|
|
2497
|
-
{ [_end]: ["analytics-"], [_ht]: ["GET", "/annotationStore/{name}/version/{versionName}", 200] }, () => GetAnnotationStoreVersionRequest$, () => GetAnnotationStoreVersionResponse$
|
|
2498
|
-
];
|
|
2499
|
-
var GetReadSet$ = [9, n0, _GRS,
|
|
2500
|
-
{ [_end]: ["storage-"], [_ht]: ["GET", "/sequencestore/{sequenceStoreId}/readset/{id}", 200] }, () => GetReadSetRequest$, () => GetReadSetResponse$
|
|
2501
|
-
];
|
|
2502
|
-
var GetReadSetActivationJob$ = [9, n0, _GRSAJ,
|
|
2503
|
-
{ [_end]: ["control-storage-"], [_ht]: ["GET", "/sequencestore/{sequenceStoreId}/activationjob/{id}", 200] }, () => GetReadSetActivationJobRequest$, () => GetReadSetActivationJobResponse$
|
|
2504
|
-
];
|
|
2505
|
-
var GetReadSetExportJob$ = [9, n0, _GRSEJ,
|
|
2506
|
-
{ [_end]: ["control-storage-"], [_ht]: ["GET", "/sequencestore/{sequenceStoreId}/exportjob/{id}", 200] }, () => GetReadSetExportJobRequest$, () => GetReadSetExportJobResponse$
|
|
2507
|
-
];
|
|
2508
|
-
var GetReadSetImportJob$ = [9, n0, _GRSIJ,
|
|
2509
|
-
{ [_end]: ["control-storage-"], [_ht]: ["GET", "/sequencestore/{sequenceStoreId}/importjob/{id}", 200] }, () => GetReadSetImportJobRequest$, () => GetReadSetImportJobResponse$
|
|
2510
|
-
];
|
|
2511
|
-
var GetReadSetMetadata$ = [9, n0, _GRSM,
|
|
2512
|
-
{ [_end]: ["control-storage-"], [_ht]: ["GET", "/sequencestore/{sequenceStoreId}/readset/{id}/metadata", 200] }, () => GetReadSetMetadataRequest$, () => GetReadSetMetadataResponse$
|
|
2513
|
-
];
|
|
2514
|
-
var GetReference$ = [9, n0, _GR,
|
|
2515
|
-
{ [_end]: ["storage-"], [_ht]: ["GET", "/referencestore/{referenceStoreId}/reference/{id}", 200] }, () => GetReferenceRequest$, () => GetReferenceResponse$
|
|
2516
|
-
];
|
|
2517
|
-
var GetReferenceImportJob$ = [9, n0, _GRIJ,
|
|
2518
|
-
{ [_end]: ["control-storage-"], [_ht]: ["GET", "/referencestore/{referenceStoreId}/importjob/{id}", 200] }, () => GetReferenceImportJobRequest$, () => GetReferenceImportJobResponse$
|
|
2519
|
-
];
|
|
2520
|
-
var GetReferenceMetadata$ = [9, n0, _GRM,
|
|
2521
|
-
{ [_end]: ["control-storage-"], [_ht]: ["GET", "/referencestore/{referenceStoreId}/reference/{id}/metadata", 200] }, () => GetReferenceMetadataRequest$, () => GetReferenceMetadataResponse$
|
|
2522
|
-
];
|
|
2523
|
-
var GetReferenceStore$ = [9, n0, _GRSe,
|
|
2524
|
-
{ [_end]: ["control-storage-"], [_ht]: ["GET", "/referencestore/{id}", 200] }, () => GetReferenceStoreRequest$, () => GetReferenceStoreResponse$
|
|
2525
|
-
];
|
|
2526
|
-
var GetRun$ = [9, n0, _GRe,
|
|
2527
|
-
{ [_end]: ["workflows-"], [_ht]: ["GET", "/run/{id}", 200] }, () => GetRunRequest$, () => GetRunResponse$
|
|
2528
|
-
];
|
|
2529
|
-
var GetRunCache$ = [9, n0, _GRC,
|
|
2530
|
-
{ [_end]: ["workflows-"], [_ht]: ["GET", "/runCache/{id}", 200] }, () => GetRunCacheRequest$, () => GetRunCacheResponse$
|
|
2531
|
-
];
|
|
2532
|
-
var GetRunGroup$ = [9, n0, _GRG,
|
|
2533
|
-
{ [_end]: ["workflows-"], [_ht]: ["GET", "/runGroup/{id}", 200] }, () => GetRunGroupRequest$, () => GetRunGroupResponse$
|
|
2534
|
-
];
|
|
2535
|
-
var GetRunTask$ = [9, n0, _GRT,
|
|
2536
|
-
{ [_end]: ["workflows-"], [_ht]: ["GET", "/run/{id}/task/{taskId}", 200] }, () => GetRunTaskRequest$, () => GetRunTaskResponse$
|
|
2537
|
-
];
|
|
2538
|
-
var GetS3AccessPolicy$ = [9, n0, _GSAP,
|
|
2539
|
-
{ [_end]: ["control-storage-"], [_ht]: ["GET", "/s3accesspolicy/{s3AccessPointArn}", 200] }, () => GetS3AccessPolicyRequest$, () => GetS3AccessPolicyResponse$
|
|
2540
|
-
];
|
|
2541
|
-
var GetSequenceStore$ = [9, n0, _GSS,
|
|
2542
|
-
{ [_end]: ["control-storage-"], [_ht]: ["GET", "/sequencestore/{id}", 200] }, () => GetSequenceStoreRequest$, () => GetSequenceStoreResponse$
|
|
2543
|
-
];
|
|
2544
|
-
var GetShare$ = [9, n0, _GS,
|
|
2545
|
-
{ [_end]: ["analytics-"], [_ht]: ["GET", "/share/{shareId}", 200] }, () => GetShareRequest$, () => GetShareResponse$
|
|
2546
|
-
];
|
|
2547
|
-
var GetVariantImportJob$ = [9, n0, _GVIJ,
|
|
2548
|
-
{ [_end]: ["analytics-"], [_ht]: ["GET", "/import/variant/{jobId}", 200] }, () => GetVariantImportRequest$, () => GetVariantImportResponse$
|
|
2549
|
-
];
|
|
2550
|
-
var GetVariantStore$ = [9, n0, _GVS,
|
|
2551
|
-
{ [_end]: ["analytics-"], [_ht]: ["GET", "/variantStore/{name}", 200] }, () => GetVariantStoreRequest$, () => GetVariantStoreResponse$
|
|
2552
|
-
];
|
|
2553
|
-
var GetWorkflow$ = [9, n0, _GW,
|
|
2554
|
-
{ [_end]: ["workflows-"], [_ht]: ["GET", "/workflow/{id}", 200] }, () => GetWorkflowRequest$, () => GetWorkflowResponse$
|
|
2555
|
-
];
|
|
2556
|
-
var GetWorkflowVersion$ = [9, n0, _GWV,
|
|
2557
|
-
{ [_end]: ["workflows-"], [_ht]: ["GET", "/workflow/{workflowId}/version/{versionName}", 200] }, () => GetWorkflowVersionRequest$, () => GetWorkflowVersionResponse$
|
|
2558
|
-
];
|
|
2559
|
-
var ListAnnotationImportJobs$ = [9, n0, _LAIJ,
|
|
2560
|
-
{ [_end]: ["analytics-"], [_ht]: ["POST", "/import/annotations", 200] }, () => ListAnnotationImportJobsRequest$, () => ListAnnotationImportJobsResponse$
|
|
2561
|
-
];
|
|
2562
|
-
var ListAnnotationStores$ = [9, n0, _LAS,
|
|
2563
|
-
{ [_end]: ["analytics-"], [_ht]: ["POST", "/annotationStores", 200] }, () => ListAnnotationStoresRequest$, () => ListAnnotationStoresResponse$
|
|
2564
|
-
];
|
|
2565
|
-
var ListAnnotationStoreVersions$ = [9, n0, _LASV,
|
|
2566
|
-
{ [_end]: ["analytics-"], [_ht]: ["POST", "/annotationStore/{name}/versions", 200] }, () => ListAnnotationStoreVersionsRequest$, () => ListAnnotationStoreVersionsResponse$
|
|
2567
|
-
];
|
|
2568
|
-
var ListMultipartReadSetUploads$ = [9, n0, _LMRSU,
|
|
2569
|
-
{ [_end]: ["control-storage-"], [_ht]: ["POST", "/sequencestore/{sequenceStoreId}/uploads", 200] }, () => ListMultipartReadSetUploadsRequest$, () => ListMultipartReadSetUploadsResponse$
|
|
2570
|
-
];
|
|
2571
|
-
var ListReadSetActivationJobs$ = [9, n0, _LRSAJ,
|
|
2572
|
-
{ [_end]: ["control-storage-"], [_ht]: ["POST", "/sequencestore/{sequenceStoreId}/activationjobs", 200] }, () => ListReadSetActivationJobsRequest$, () => ListReadSetActivationJobsResponse$
|
|
2573
|
-
];
|
|
2574
|
-
var ListReadSetExportJobs$ = [9, n0, _LRSEJ,
|
|
2575
|
-
{ [_end]: ["control-storage-"], [_ht]: ["POST", "/sequencestore/{sequenceStoreId}/exportjobs", 200] }, () => ListReadSetExportJobsRequest$, () => ListReadSetExportJobsResponse$
|
|
2576
|
-
];
|
|
2577
|
-
var ListReadSetImportJobs$ = [9, n0, _LRSIJ,
|
|
2578
|
-
{ [_end]: ["control-storage-"], [_ht]: ["POST", "/sequencestore/{sequenceStoreId}/importjobs", 200] }, () => ListReadSetImportJobsRequest$, () => ListReadSetImportJobsResponse$
|
|
2579
|
-
];
|
|
2580
|
-
var ListReadSets$ = [9, n0, _LRS,
|
|
2581
|
-
{ [_end]: ["control-storage-"], [_ht]: ["POST", "/sequencestore/{sequenceStoreId}/readsets", 200] }, () => ListReadSetsRequest$, () => ListReadSetsResponse$
|
|
2582
|
-
];
|
|
2583
|
-
var ListReadSetUploadParts$ = [9, n0, _LRSUP,
|
|
2584
|
-
{ [_end]: ["control-storage-"], [_ht]: ["POST", "/sequencestore/{sequenceStoreId}/upload/{uploadId}/parts", 200] }, () => ListReadSetUploadPartsRequest$, () => ListReadSetUploadPartsResponse$
|
|
2585
|
-
];
|
|
2586
|
-
var ListReferenceImportJobs$ = [9, n0, _LRIJ,
|
|
2587
|
-
{ [_end]: ["control-storage-"], [_ht]: ["POST", "/referencestore/{referenceStoreId}/importjobs", 200] }, () => ListReferenceImportJobsRequest$, () => ListReferenceImportJobsResponse$
|
|
2588
|
-
];
|
|
2589
|
-
var ListReferences$ = [9, n0, _LR,
|
|
2590
|
-
{ [_end]: ["control-storage-"], [_ht]: ["POST", "/referencestore/{referenceStoreId}/references", 200] }, () => ListReferencesRequest$, () => ListReferencesResponse$
|
|
2591
|
-
];
|
|
2592
|
-
var ListReferenceStores$ = [9, n0, _LRSi,
|
|
2593
|
-
{ [_end]: ["control-storage-"], [_ht]: ["POST", "/referencestores", 200] }, () => ListReferenceStoresRequest$, () => ListReferenceStoresResponse$
|
|
2594
|
-
];
|
|
2595
|
-
var ListRunCaches$ = [9, n0, _LRC,
|
|
2596
|
-
{ [_end]: ["workflows-"], [_ht]: ["GET", "/runCache", 200] }, () => ListRunCachesRequest$, () => ListRunCachesResponse$
|
|
2597
|
-
];
|
|
2598
|
-
var ListRunGroups$ = [9, n0, _LRG,
|
|
2599
|
-
{ [_end]: ["workflows-"], [_ht]: ["GET", "/runGroup", 200] }, () => ListRunGroupsRequest$, () => ListRunGroupsResponse$
|
|
2600
|
-
];
|
|
2601
|
-
var ListRuns$ = [9, n0, _LRi,
|
|
2602
|
-
{ [_end]: ["workflows-"], [_ht]: ["GET", "/run", 200] }, () => ListRunsRequest$, () => ListRunsResponse$
|
|
2603
|
-
];
|
|
2604
|
-
var ListRunTasks$ = [9, n0, _LRT,
|
|
2605
|
-
{ [_end]: ["workflows-"], [_ht]: ["GET", "/run/{id}/task", 200] }, () => ListRunTasksRequest$, () => ListRunTasksResponse$
|
|
2606
|
-
];
|
|
2607
|
-
var ListSequenceStores$ = [9, n0, _LSS,
|
|
2608
|
-
{ [_end]: ["control-storage-"], [_ht]: ["POST", "/sequencestores", 200] }, () => ListSequenceStoresRequest$, () => ListSequenceStoresResponse$
|
|
2609
|
-
];
|
|
2610
|
-
var ListShares$ = [9, n0, _LS,
|
|
2611
|
-
{ [_end]: ["analytics-"], [_ht]: ["POST", "/shares", 200] }, () => ListSharesRequest$, () => ListSharesResponse$
|
|
2612
|
-
];
|
|
2613
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
2614
|
-
{ [_end]: ["tags-"], [_ht]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
2615
|
-
];
|
|
2616
|
-
var ListVariantImportJobs$ = [9, n0, _LVIJ,
|
|
2617
|
-
{ [_end]: ["analytics-"], [_ht]: ["POST", "/import/variants", 200] }, () => ListVariantImportJobsRequest$, () => ListVariantImportJobsResponse$
|
|
2618
|
-
];
|
|
2619
|
-
var ListVariantStores$ = [9, n0, _LVS,
|
|
2620
|
-
{ [_end]: ["analytics-"], [_ht]: ["POST", "/variantStores", 200] }, () => ListVariantStoresRequest$, () => ListVariantStoresResponse$
|
|
2621
|
-
];
|
|
2622
|
-
var ListWorkflows$ = [9, n0, _LW,
|
|
2623
|
-
{ [_end]: ["workflows-"], [_ht]: ["GET", "/workflow", 200] }, () => ListWorkflowsRequest$, () => ListWorkflowsResponse$
|
|
2624
|
-
];
|
|
2625
|
-
var ListWorkflowVersions$ = [9, n0, _LWV,
|
|
2626
|
-
{ [_end]: ["workflows-"], [_ht]: ["GET", "/workflow/{workflowId}/version", 200] }, () => ListWorkflowVersionsRequest$, () => ListWorkflowVersionsResponse$
|
|
2627
|
-
];
|
|
2628
|
-
var PutS3AccessPolicy$ = [9, n0, _PSAP,
|
|
2629
|
-
{ [_end]: ["control-storage-"], [_ht]: ["PUT", "/s3accesspolicy/{s3AccessPointArn}", 200] }, () => PutS3AccessPolicyRequest$, () => PutS3AccessPolicyResponse$
|
|
2630
|
-
];
|
|
2631
|
-
var StartAnnotationImportJob$ = [9, n0, _SAIJ,
|
|
2632
|
-
{ [_end]: ["analytics-"], [_ht]: ["POST", "/import/annotation", 200] }, () => StartAnnotationImportRequest$, () => StartAnnotationImportResponse$
|
|
2633
|
-
];
|
|
2634
|
-
var StartReadSetActivationJob$ = [9, n0, _SRSAJ,
|
|
2635
|
-
{ [_end]: ["control-storage-"], [_ht]: ["POST", "/sequencestore/{sequenceStoreId}/activationjob", 200] }, () => StartReadSetActivationJobRequest$, () => StartReadSetActivationJobResponse$
|
|
2636
|
-
];
|
|
2637
|
-
var StartReadSetExportJob$ = [9, n0, _SRSEJ,
|
|
2638
|
-
{ [_end]: ["control-storage-"], [_ht]: ["POST", "/sequencestore/{sequenceStoreId}/exportjob", 200] }, () => StartReadSetExportJobRequest$, () => StartReadSetExportJobResponse$
|
|
2639
|
-
];
|
|
2640
|
-
var StartReadSetImportJob$ = [9, n0, _SRSIJ,
|
|
2641
|
-
{ [_end]: ["control-storage-"], [_ht]: ["POST", "/sequencestore/{sequenceStoreId}/importjob", 200] }, () => StartReadSetImportJobRequest$, () => StartReadSetImportJobResponse$
|
|
2642
|
-
];
|
|
2643
|
-
var StartReferenceImportJob$ = [9, n0, _SRIJ,
|
|
2644
|
-
{ [_end]: ["control-storage-"], [_ht]: ["POST", "/referencestore/{referenceStoreId}/importjob", 200] }, () => StartReferenceImportJobRequest$, () => StartReferenceImportJobResponse$
|
|
2645
|
-
];
|
|
2646
|
-
var StartRun$ = [9, n0, _SRt,
|
|
2647
|
-
{ [_end]: ["workflows-"], [_ht]: ["POST", "/run", 201] }, () => StartRunRequest$, () => StartRunResponse$
|
|
2648
|
-
];
|
|
2649
|
-
var StartVariantImportJob$ = [9, n0, _SVIJ,
|
|
2650
|
-
{ [_end]: ["analytics-"], [_ht]: ["POST", "/import/variant", 200] }, () => StartVariantImportRequest$, () => StartVariantImportResponse$
|
|
2651
|
-
];
|
|
2652
|
-
var TagResource$ = [9, n0, _TR,
|
|
2653
|
-
{ [_end]: ["tags-"], [_ht]: ["POST", "/tags/{resourceArn}", 204] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
2654
|
-
];
|
|
2655
|
-
var UntagResource$ = [9, n0, _UR,
|
|
2656
|
-
{ [_end]: ["tags-"], [_ht]: ["DELETE", "/tags/{resourceArn}", 204] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
2657
|
-
];
|
|
2658
|
-
var UpdateAnnotationStore$ = [9, n0, _UAS,
|
|
2659
|
-
{ [_end]: ["analytics-"], [_ht]: ["POST", "/annotationStore/{name}", 200] }, () => UpdateAnnotationStoreRequest$, () => UpdateAnnotationStoreResponse$
|
|
2660
|
-
];
|
|
2661
|
-
var UpdateAnnotationStoreVersion$ = [9, n0, _UASV,
|
|
2662
|
-
{ [_end]: ["analytics-"], [_ht]: ["POST", "/annotationStore/{name}/version/{versionName}", 200] }, () => UpdateAnnotationStoreVersionRequest$, () => UpdateAnnotationStoreVersionResponse$
|
|
2663
|
-
];
|
|
2664
|
-
var UpdateRunCache$ = [9, n0, _URC,
|
|
2665
|
-
{ [_end]: ["workflows-"], [_ht]: ["POST", "/runCache/{id}", 202] }, () => UpdateRunCacheRequest$, () => __Unit
|
|
2666
|
-
];
|
|
2667
|
-
var UpdateRunGroup$ = [9, n0, _URG,
|
|
2668
|
-
{ [_end]: ["workflows-"], [_ht]: ["POST", "/runGroup/{id}", 202] }, () => UpdateRunGroupRequest$, () => __Unit
|
|
2669
|
-
];
|
|
2670
|
-
var UpdateSequenceStore$ = [9, n0, _USS,
|
|
2671
|
-
{ [_end]: ["control-storage-"], [_ht]: ["PATCH", "/sequencestore/{id}", 200] }, () => UpdateSequenceStoreRequest$, () => UpdateSequenceStoreResponse$
|
|
2672
|
-
];
|
|
2673
|
-
var UpdateVariantStore$ = [9, n0, _UVS,
|
|
2674
|
-
{ [_end]: ["analytics-"], [_ht]: ["POST", "/variantStore/{name}", 200] }, () => UpdateVariantStoreRequest$, () => UpdateVariantStoreResponse$
|
|
2675
|
-
];
|
|
2676
|
-
var UpdateWorkflow$ = [9, n0, _UW,
|
|
2677
|
-
{ [_end]: ["workflows-"], [_ht]: ["POST", "/workflow/{id}", 202] }, () => UpdateWorkflowRequest$, () => __Unit
|
|
2678
|
-
];
|
|
2679
|
-
var UpdateWorkflowVersion$ = [9, n0, _UWV,
|
|
2680
|
-
{ [_end]: ["workflows-"], [_ht]: ["POST", "/workflow/{workflowId}/version/{versionName}", 202] }, () => UpdateWorkflowVersionRequest$, () => __Unit
|
|
2681
|
-
];
|
|
2682
|
-
var UploadReadSetPart$ = [9, n0, _URSP,
|
|
2683
|
-
{ [_end]: ["storage-"], [_ht]: ["PUT", "/sequencestore/{sequenceStoreId}/upload/{uploadId}/part", 200] }, () => UploadReadSetPartRequest$, () => UploadReadSetPartResponse$
|
|
2684
|
-
];
|
|
2685
|
-
|
|
2686
117
|
class AbortMultipartReadSetUploadCommand extends smithyClient.Command
|
|
2687
118
|
.classBuilder()
|
|
2688
119
|
.ep(commonParams)
|
|
@@ -2691,7 +122,7 @@ class AbortMultipartReadSetUploadCommand extends smithyClient.Command
|
|
|
2691
122
|
})
|
|
2692
123
|
.s("Omics", "AbortMultipartReadSetUpload", {})
|
|
2693
124
|
.n("OmicsClient", "AbortMultipartReadSetUploadCommand")
|
|
2694
|
-
.sc(AbortMultipartReadSetUpload$)
|
|
125
|
+
.sc(schemas_0.AbortMultipartReadSetUpload$)
|
|
2695
126
|
.build() {
|
|
2696
127
|
}
|
|
2697
128
|
|
|
@@ -2703,7 +134,7 @@ class AcceptShareCommand extends smithyClient.Command
|
|
|
2703
134
|
})
|
|
2704
135
|
.s("Omics", "AcceptShare", {})
|
|
2705
136
|
.n("OmicsClient", "AcceptShareCommand")
|
|
2706
|
-
.sc(AcceptShare$)
|
|
137
|
+
.sc(schemas_0.AcceptShare$)
|
|
2707
138
|
.build() {
|
|
2708
139
|
}
|
|
2709
140
|
|
|
@@ -2715,7 +146,7 @@ class BatchDeleteReadSetCommand extends smithyClient.Command
|
|
|
2715
146
|
})
|
|
2716
147
|
.s("Omics", "BatchDeleteReadSet", {})
|
|
2717
148
|
.n("OmicsClient", "BatchDeleteReadSetCommand")
|
|
2718
|
-
.sc(BatchDeleteReadSet$)
|
|
149
|
+
.sc(schemas_0.BatchDeleteReadSet$)
|
|
2719
150
|
.build() {
|
|
2720
151
|
}
|
|
2721
152
|
|
|
@@ -2727,7 +158,7 @@ class CancelAnnotationImportJobCommand extends smithyClient.Command
|
|
|
2727
158
|
})
|
|
2728
159
|
.s("Omics", "CancelAnnotationImportJob", {})
|
|
2729
160
|
.n("OmicsClient", "CancelAnnotationImportJobCommand")
|
|
2730
|
-
.sc(CancelAnnotationImportJob$)
|
|
161
|
+
.sc(schemas_0.CancelAnnotationImportJob$)
|
|
2731
162
|
.build() {
|
|
2732
163
|
}
|
|
2733
164
|
|
|
@@ -2739,7 +170,7 @@ class CancelRunCommand extends smithyClient.Command
|
|
|
2739
170
|
})
|
|
2740
171
|
.s("Omics", "CancelRun", {})
|
|
2741
172
|
.n("OmicsClient", "CancelRunCommand")
|
|
2742
|
-
.sc(CancelRun$)
|
|
173
|
+
.sc(schemas_0.CancelRun$)
|
|
2743
174
|
.build() {
|
|
2744
175
|
}
|
|
2745
176
|
|
|
@@ -2751,7 +182,7 @@ class CancelVariantImportJobCommand extends smithyClient.Command
|
|
|
2751
182
|
})
|
|
2752
183
|
.s("Omics", "CancelVariantImportJob", {})
|
|
2753
184
|
.n("OmicsClient", "CancelVariantImportJobCommand")
|
|
2754
|
-
.sc(CancelVariantImportJob$)
|
|
185
|
+
.sc(schemas_0.CancelVariantImportJob$)
|
|
2755
186
|
.build() {
|
|
2756
187
|
}
|
|
2757
188
|
|
|
@@ -2763,7 +194,7 @@ class CompleteMultipartReadSetUploadCommand extends smithyClient.Command
|
|
|
2763
194
|
})
|
|
2764
195
|
.s("Omics", "CompleteMultipartReadSetUpload", {})
|
|
2765
196
|
.n("OmicsClient", "CompleteMultipartReadSetUploadCommand")
|
|
2766
|
-
.sc(CompleteMultipartReadSetUpload$)
|
|
197
|
+
.sc(schemas_0.CompleteMultipartReadSetUpload$)
|
|
2767
198
|
.build() {
|
|
2768
199
|
}
|
|
2769
200
|
|
|
@@ -2775,7 +206,7 @@ class CreateAnnotationStoreCommand extends smithyClient.Command
|
|
|
2775
206
|
})
|
|
2776
207
|
.s("Omics", "CreateAnnotationStore", {})
|
|
2777
208
|
.n("OmicsClient", "CreateAnnotationStoreCommand")
|
|
2778
|
-
.sc(CreateAnnotationStore$)
|
|
209
|
+
.sc(schemas_0.CreateAnnotationStore$)
|
|
2779
210
|
.build() {
|
|
2780
211
|
}
|
|
2781
212
|
|
|
@@ -2787,7 +218,7 @@ class CreateAnnotationStoreVersionCommand extends smithyClient.Command
|
|
|
2787
218
|
})
|
|
2788
219
|
.s("Omics", "CreateAnnotationStoreVersion", {})
|
|
2789
220
|
.n("OmicsClient", "CreateAnnotationStoreVersionCommand")
|
|
2790
|
-
.sc(CreateAnnotationStoreVersion$)
|
|
221
|
+
.sc(schemas_0.CreateAnnotationStoreVersion$)
|
|
2791
222
|
.build() {
|
|
2792
223
|
}
|
|
2793
224
|
|
|
@@ -2799,7 +230,7 @@ class CreateMultipartReadSetUploadCommand extends smithyClient.Command
|
|
|
2799
230
|
})
|
|
2800
231
|
.s("Omics", "CreateMultipartReadSetUpload", {})
|
|
2801
232
|
.n("OmicsClient", "CreateMultipartReadSetUploadCommand")
|
|
2802
|
-
.sc(CreateMultipartReadSetUpload$)
|
|
233
|
+
.sc(schemas_0.CreateMultipartReadSetUpload$)
|
|
2803
234
|
.build() {
|
|
2804
235
|
}
|
|
2805
236
|
|
|
@@ -2811,7 +242,7 @@ class CreateReferenceStoreCommand extends smithyClient.Command
|
|
|
2811
242
|
})
|
|
2812
243
|
.s("Omics", "CreateReferenceStore", {})
|
|
2813
244
|
.n("OmicsClient", "CreateReferenceStoreCommand")
|
|
2814
|
-
.sc(CreateReferenceStore$)
|
|
245
|
+
.sc(schemas_0.CreateReferenceStore$)
|
|
2815
246
|
.build() {
|
|
2816
247
|
}
|
|
2817
248
|
|
|
@@ -2823,7 +254,7 @@ class CreateRunCacheCommand extends smithyClient.Command
|
|
|
2823
254
|
})
|
|
2824
255
|
.s("Omics", "CreateRunCache", {})
|
|
2825
256
|
.n("OmicsClient", "CreateRunCacheCommand")
|
|
2826
|
-
.sc(CreateRunCache$)
|
|
257
|
+
.sc(schemas_0.CreateRunCache$)
|
|
2827
258
|
.build() {
|
|
2828
259
|
}
|
|
2829
260
|
|
|
@@ -2835,7 +266,7 @@ class CreateRunGroupCommand extends smithyClient.Command
|
|
|
2835
266
|
})
|
|
2836
267
|
.s("Omics", "CreateRunGroup", {})
|
|
2837
268
|
.n("OmicsClient", "CreateRunGroupCommand")
|
|
2838
|
-
.sc(CreateRunGroup$)
|
|
269
|
+
.sc(schemas_0.CreateRunGroup$)
|
|
2839
270
|
.build() {
|
|
2840
271
|
}
|
|
2841
272
|
|
|
@@ -2847,7 +278,7 @@ class CreateSequenceStoreCommand extends smithyClient.Command
|
|
|
2847
278
|
})
|
|
2848
279
|
.s("Omics", "CreateSequenceStore", {})
|
|
2849
280
|
.n("OmicsClient", "CreateSequenceStoreCommand")
|
|
2850
|
-
.sc(CreateSequenceStore$)
|
|
281
|
+
.sc(schemas_0.CreateSequenceStore$)
|
|
2851
282
|
.build() {
|
|
2852
283
|
}
|
|
2853
284
|
|
|
@@ -2859,7 +290,7 @@ class CreateShareCommand extends smithyClient.Command
|
|
|
2859
290
|
})
|
|
2860
291
|
.s("Omics", "CreateShare", {})
|
|
2861
292
|
.n("OmicsClient", "CreateShareCommand")
|
|
2862
|
-
.sc(CreateShare$)
|
|
293
|
+
.sc(schemas_0.CreateShare$)
|
|
2863
294
|
.build() {
|
|
2864
295
|
}
|
|
2865
296
|
|
|
@@ -2871,7 +302,7 @@ class CreateVariantStoreCommand extends smithyClient.Command
|
|
|
2871
302
|
})
|
|
2872
303
|
.s("Omics", "CreateVariantStore", {})
|
|
2873
304
|
.n("OmicsClient", "CreateVariantStoreCommand")
|
|
2874
|
-
.sc(CreateVariantStore$)
|
|
305
|
+
.sc(schemas_0.CreateVariantStore$)
|
|
2875
306
|
.build() {
|
|
2876
307
|
}
|
|
2877
308
|
|
|
@@ -2883,7 +314,7 @@ class CreateWorkflowCommand extends smithyClient.Command
|
|
|
2883
314
|
})
|
|
2884
315
|
.s("Omics", "CreateWorkflow", {})
|
|
2885
316
|
.n("OmicsClient", "CreateWorkflowCommand")
|
|
2886
|
-
.sc(CreateWorkflow$)
|
|
317
|
+
.sc(schemas_0.CreateWorkflow$)
|
|
2887
318
|
.build() {
|
|
2888
319
|
}
|
|
2889
320
|
|
|
@@ -2895,7 +326,7 @@ class CreateWorkflowVersionCommand extends smithyClient.Command
|
|
|
2895
326
|
})
|
|
2896
327
|
.s("Omics", "CreateWorkflowVersion", {})
|
|
2897
328
|
.n("OmicsClient", "CreateWorkflowVersionCommand")
|
|
2898
|
-
.sc(CreateWorkflowVersion$)
|
|
329
|
+
.sc(schemas_0.CreateWorkflowVersion$)
|
|
2899
330
|
.build() {
|
|
2900
331
|
}
|
|
2901
332
|
|
|
@@ -2907,7 +338,7 @@ class DeleteAnnotationStoreCommand extends smithyClient.Command
|
|
|
2907
338
|
})
|
|
2908
339
|
.s("Omics", "DeleteAnnotationStore", {})
|
|
2909
340
|
.n("OmicsClient", "DeleteAnnotationStoreCommand")
|
|
2910
|
-
.sc(DeleteAnnotationStore$)
|
|
341
|
+
.sc(schemas_0.DeleteAnnotationStore$)
|
|
2911
342
|
.build() {
|
|
2912
343
|
}
|
|
2913
344
|
|
|
@@ -2919,7 +350,7 @@ class DeleteAnnotationStoreVersionsCommand extends smithyClient.Command
|
|
|
2919
350
|
})
|
|
2920
351
|
.s("Omics", "DeleteAnnotationStoreVersions", {})
|
|
2921
352
|
.n("OmicsClient", "DeleteAnnotationStoreVersionsCommand")
|
|
2922
|
-
.sc(DeleteAnnotationStoreVersions$)
|
|
353
|
+
.sc(schemas_0.DeleteAnnotationStoreVersions$)
|
|
2923
354
|
.build() {
|
|
2924
355
|
}
|
|
2925
356
|
|
|
@@ -2931,7 +362,7 @@ class DeleteReferenceCommand extends smithyClient.Command
|
|
|
2931
362
|
})
|
|
2932
363
|
.s("Omics", "DeleteReference", {})
|
|
2933
364
|
.n("OmicsClient", "DeleteReferenceCommand")
|
|
2934
|
-
.sc(DeleteReference$)
|
|
365
|
+
.sc(schemas_0.DeleteReference$)
|
|
2935
366
|
.build() {
|
|
2936
367
|
}
|
|
2937
368
|
|
|
@@ -2943,7 +374,7 @@ class DeleteReferenceStoreCommand extends smithyClient.Command
|
|
|
2943
374
|
})
|
|
2944
375
|
.s("Omics", "DeleteReferenceStore", {})
|
|
2945
376
|
.n("OmicsClient", "DeleteReferenceStoreCommand")
|
|
2946
|
-
.sc(DeleteReferenceStore$)
|
|
377
|
+
.sc(schemas_0.DeleteReferenceStore$)
|
|
2947
378
|
.build() {
|
|
2948
379
|
}
|
|
2949
380
|
|
|
@@ -2955,7 +386,7 @@ class DeleteRunCacheCommand extends smithyClient.Command
|
|
|
2955
386
|
})
|
|
2956
387
|
.s("Omics", "DeleteRunCache", {})
|
|
2957
388
|
.n("OmicsClient", "DeleteRunCacheCommand")
|
|
2958
|
-
.sc(DeleteRunCache$)
|
|
389
|
+
.sc(schemas_0.DeleteRunCache$)
|
|
2959
390
|
.build() {
|
|
2960
391
|
}
|
|
2961
392
|
|
|
@@ -2967,7 +398,7 @@ class DeleteRunCommand extends smithyClient.Command
|
|
|
2967
398
|
})
|
|
2968
399
|
.s("Omics", "DeleteRun", {})
|
|
2969
400
|
.n("OmicsClient", "DeleteRunCommand")
|
|
2970
|
-
.sc(DeleteRun$)
|
|
401
|
+
.sc(schemas_0.DeleteRun$)
|
|
2971
402
|
.build() {
|
|
2972
403
|
}
|
|
2973
404
|
|
|
@@ -2979,7 +410,7 @@ class DeleteRunGroupCommand extends smithyClient.Command
|
|
|
2979
410
|
})
|
|
2980
411
|
.s("Omics", "DeleteRunGroup", {})
|
|
2981
412
|
.n("OmicsClient", "DeleteRunGroupCommand")
|
|
2982
|
-
.sc(DeleteRunGroup$)
|
|
413
|
+
.sc(schemas_0.DeleteRunGroup$)
|
|
2983
414
|
.build() {
|
|
2984
415
|
}
|
|
2985
416
|
|
|
@@ -2991,7 +422,7 @@ class DeleteS3AccessPolicyCommand extends smithyClient.Command
|
|
|
2991
422
|
})
|
|
2992
423
|
.s("Omics", "DeleteS3AccessPolicy", {})
|
|
2993
424
|
.n("OmicsClient", "DeleteS3AccessPolicyCommand")
|
|
2994
|
-
.sc(DeleteS3AccessPolicy$)
|
|
425
|
+
.sc(schemas_0.DeleteS3AccessPolicy$)
|
|
2995
426
|
.build() {
|
|
2996
427
|
}
|
|
2997
428
|
|
|
@@ -3003,7 +434,7 @@ class DeleteSequenceStoreCommand extends smithyClient.Command
|
|
|
3003
434
|
})
|
|
3004
435
|
.s("Omics", "DeleteSequenceStore", {})
|
|
3005
436
|
.n("OmicsClient", "DeleteSequenceStoreCommand")
|
|
3006
|
-
.sc(DeleteSequenceStore$)
|
|
437
|
+
.sc(schemas_0.DeleteSequenceStore$)
|
|
3007
438
|
.build() {
|
|
3008
439
|
}
|
|
3009
440
|
|
|
@@ -3015,7 +446,7 @@ class DeleteShareCommand extends smithyClient.Command
|
|
|
3015
446
|
})
|
|
3016
447
|
.s("Omics", "DeleteShare", {})
|
|
3017
448
|
.n("OmicsClient", "DeleteShareCommand")
|
|
3018
|
-
.sc(DeleteShare$)
|
|
449
|
+
.sc(schemas_0.DeleteShare$)
|
|
3019
450
|
.build() {
|
|
3020
451
|
}
|
|
3021
452
|
|
|
@@ -3027,7 +458,7 @@ class DeleteVariantStoreCommand extends smithyClient.Command
|
|
|
3027
458
|
})
|
|
3028
459
|
.s("Omics", "DeleteVariantStore", {})
|
|
3029
460
|
.n("OmicsClient", "DeleteVariantStoreCommand")
|
|
3030
|
-
.sc(DeleteVariantStore$)
|
|
461
|
+
.sc(schemas_0.DeleteVariantStore$)
|
|
3031
462
|
.build() {
|
|
3032
463
|
}
|
|
3033
464
|
|
|
@@ -3039,7 +470,7 @@ class DeleteWorkflowCommand extends smithyClient.Command
|
|
|
3039
470
|
})
|
|
3040
471
|
.s("Omics", "DeleteWorkflow", {})
|
|
3041
472
|
.n("OmicsClient", "DeleteWorkflowCommand")
|
|
3042
|
-
.sc(DeleteWorkflow$)
|
|
473
|
+
.sc(schemas_0.DeleteWorkflow$)
|
|
3043
474
|
.build() {
|
|
3044
475
|
}
|
|
3045
476
|
|
|
@@ -3051,7 +482,7 @@ class DeleteWorkflowVersionCommand extends smithyClient.Command
|
|
|
3051
482
|
})
|
|
3052
483
|
.s("Omics", "DeleteWorkflowVersion", {})
|
|
3053
484
|
.n("OmicsClient", "DeleteWorkflowVersionCommand")
|
|
3054
|
-
.sc(DeleteWorkflowVersion$)
|
|
485
|
+
.sc(schemas_0.DeleteWorkflowVersion$)
|
|
3055
486
|
.build() {
|
|
3056
487
|
}
|
|
3057
488
|
|
|
@@ -3063,7 +494,7 @@ class GetAnnotationImportJobCommand extends smithyClient.Command
|
|
|
3063
494
|
})
|
|
3064
495
|
.s("Omics", "GetAnnotationImportJob", {})
|
|
3065
496
|
.n("OmicsClient", "GetAnnotationImportJobCommand")
|
|
3066
|
-
.sc(GetAnnotationImportJob$)
|
|
497
|
+
.sc(schemas_0.GetAnnotationImportJob$)
|
|
3067
498
|
.build() {
|
|
3068
499
|
}
|
|
3069
500
|
|
|
@@ -3075,7 +506,7 @@ class GetAnnotationStoreCommand extends smithyClient.Command
|
|
|
3075
506
|
})
|
|
3076
507
|
.s("Omics", "GetAnnotationStore", {})
|
|
3077
508
|
.n("OmicsClient", "GetAnnotationStoreCommand")
|
|
3078
|
-
.sc(GetAnnotationStore$)
|
|
509
|
+
.sc(schemas_0.GetAnnotationStore$)
|
|
3079
510
|
.build() {
|
|
3080
511
|
}
|
|
3081
512
|
|
|
@@ -3087,7 +518,7 @@ class GetAnnotationStoreVersionCommand extends smithyClient.Command
|
|
|
3087
518
|
})
|
|
3088
519
|
.s("Omics", "GetAnnotationStoreVersion", {})
|
|
3089
520
|
.n("OmicsClient", "GetAnnotationStoreVersionCommand")
|
|
3090
|
-
.sc(GetAnnotationStoreVersion$)
|
|
521
|
+
.sc(schemas_0.GetAnnotationStoreVersion$)
|
|
3091
522
|
.build() {
|
|
3092
523
|
}
|
|
3093
524
|
|
|
@@ -3099,7 +530,7 @@ class GetReadSetActivationJobCommand extends smithyClient.Command
|
|
|
3099
530
|
})
|
|
3100
531
|
.s("Omics", "GetReadSetActivationJob", {})
|
|
3101
532
|
.n("OmicsClient", "GetReadSetActivationJobCommand")
|
|
3102
|
-
.sc(GetReadSetActivationJob$)
|
|
533
|
+
.sc(schemas_0.GetReadSetActivationJob$)
|
|
3103
534
|
.build() {
|
|
3104
535
|
}
|
|
3105
536
|
|
|
@@ -3111,7 +542,7 @@ class GetReadSetCommand extends smithyClient.Command
|
|
|
3111
542
|
})
|
|
3112
543
|
.s("Omics", "GetReadSet", {})
|
|
3113
544
|
.n("OmicsClient", "GetReadSetCommand")
|
|
3114
|
-
.sc(GetReadSet$)
|
|
545
|
+
.sc(schemas_0.GetReadSet$)
|
|
3115
546
|
.build() {
|
|
3116
547
|
}
|
|
3117
548
|
|
|
@@ -3123,7 +554,7 @@ class GetReadSetExportJobCommand extends smithyClient.Command
|
|
|
3123
554
|
})
|
|
3124
555
|
.s("Omics", "GetReadSetExportJob", {})
|
|
3125
556
|
.n("OmicsClient", "GetReadSetExportJobCommand")
|
|
3126
|
-
.sc(GetReadSetExportJob$)
|
|
557
|
+
.sc(schemas_0.GetReadSetExportJob$)
|
|
3127
558
|
.build() {
|
|
3128
559
|
}
|
|
3129
560
|
|
|
@@ -3135,7 +566,7 @@ class GetReadSetImportJobCommand extends smithyClient.Command
|
|
|
3135
566
|
})
|
|
3136
567
|
.s("Omics", "GetReadSetImportJob", {})
|
|
3137
568
|
.n("OmicsClient", "GetReadSetImportJobCommand")
|
|
3138
|
-
.sc(GetReadSetImportJob$)
|
|
569
|
+
.sc(schemas_0.GetReadSetImportJob$)
|
|
3139
570
|
.build() {
|
|
3140
571
|
}
|
|
3141
572
|
|
|
@@ -3147,7 +578,7 @@ class GetReadSetMetadataCommand extends smithyClient.Command
|
|
|
3147
578
|
})
|
|
3148
579
|
.s("Omics", "GetReadSetMetadata", {})
|
|
3149
580
|
.n("OmicsClient", "GetReadSetMetadataCommand")
|
|
3150
|
-
.sc(GetReadSetMetadata$)
|
|
581
|
+
.sc(schemas_0.GetReadSetMetadata$)
|
|
3151
582
|
.build() {
|
|
3152
583
|
}
|
|
3153
584
|
|
|
@@ -3159,7 +590,7 @@ class GetReferenceCommand extends smithyClient.Command
|
|
|
3159
590
|
})
|
|
3160
591
|
.s("Omics", "GetReference", {})
|
|
3161
592
|
.n("OmicsClient", "GetReferenceCommand")
|
|
3162
|
-
.sc(GetReference$)
|
|
593
|
+
.sc(schemas_0.GetReference$)
|
|
3163
594
|
.build() {
|
|
3164
595
|
}
|
|
3165
596
|
|
|
@@ -3171,7 +602,7 @@ class GetReferenceImportJobCommand extends smithyClient.Command
|
|
|
3171
602
|
})
|
|
3172
603
|
.s("Omics", "GetReferenceImportJob", {})
|
|
3173
604
|
.n("OmicsClient", "GetReferenceImportJobCommand")
|
|
3174
|
-
.sc(GetReferenceImportJob$)
|
|
605
|
+
.sc(schemas_0.GetReferenceImportJob$)
|
|
3175
606
|
.build() {
|
|
3176
607
|
}
|
|
3177
608
|
|
|
@@ -3183,7 +614,7 @@ class GetReferenceMetadataCommand extends smithyClient.Command
|
|
|
3183
614
|
})
|
|
3184
615
|
.s("Omics", "GetReferenceMetadata", {})
|
|
3185
616
|
.n("OmicsClient", "GetReferenceMetadataCommand")
|
|
3186
|
-
.sc(GetReferenceMetadata$)
|
|
617
|
+
.sc(schemas_0.GetReferenceMetadata$)
|
|
3187
618
|
.build() {
|
|
3188
619
|
}
|
|
3189
620
|
|
|
@@ -3195,7 +626,7 @@ class GetReferenceStoreCommand extends smithyClient.Command
|
|
|
3195
626
|
})
|
|
3196
627
|
.s("Omics", "GetReferenceStore", {})
|
|
3197
628
|
.n("OmicsClient", "GetReferenceStoreCommand")
|
|
3198
|
-
.sc(GetReferenceStore$)
|
|
629
|
+
.sc(schemas_0.GetReferenceStore$)
|
|
3199
630
|
.build() {
|
|
3200
631
|
}
|
|
3201
632
|
|
|
@@ -3207,7 +638,7 @@ class GetRunCacheCommand extends smithyClient.Command
|
|
|
3207
638
|
})
|
|
3208
639
|
.s("Omics", "GetRunCache", {})
|
|
3209
640
|
.n("OmicsClient", "GetRunCacheCommand")
|
|
3210
|
-
.sc(GetRunCache$)
|
|
641
|
+
.sc(schemas_0.GetRunCache$)
|
|
3211
642
|
.build() {
|
|
3212
643
|
}
|
|
3213
644
|
|
|
@@ -3219,7 +650,7 @@ class GetRunCommand extends smithyClient.Command
|
|
|
3219
650
|
})
|
|
3220
651
|
.s("Omics", "GetRun", {})
|
|
3221
652
|
.n("OmicsClient", "GetRunCommand")
|
|
3222
|
-
.sc(GetRun$)
|
|
653
|
+
.sc(schemas_0.GetRun$)
|
|
3223
654
|
.build() {
|
|
3224
655
|
}
|
|
3225
656
|
|
|
@@ -3231,7 +662,7 @@ class GetRunGroupCommand extends smithyClient.Command
|
|
|
3231
662
|
})
|
|
3232
663
|
.s("Omics", "GetRunGroup", {})
|
|
3233
664
|
.n("OmicsClient", "GetRunGroupCommand")
|
|
3234
|
-
.sc(GetRunGroup$)
|
|
665
|
+
.sc(schemas_0.GetRunGroup$)
|
|
3235
666
|
.build() {
|
|
3236
667
|
}
|
|
3237
668
|
|
|
@@ -3243,7 +674,7 @@ class GetRunTaskCommand extends smithyClient.Command
|
|
|
3243
674
|
})
|
|
3244
675
|
.s("Omics", "GetRunTask", {})
|
|
3245
676
|
.n("OmicsClient", "GetRunTaskCommand")
|
|
3246
|
-
.sc(GetRunTask$)
|
|
677
|
+
.sc(schemas_0.GetRunTask$)
|
|
3247
678
|
.build() {
|
|
3248
679
|
}
|
|
3249
680
|
|
|
@@ -3255,7 +686,7 @@ class GetS3AccessPolicyCommand extends smithyClient.Command
|
|
|
3255
686
|
})
|
|
3256
687
|
.s("Omics", "GetS3AccessPolicy", {})
|
|
3257
688
|
.n("OmicsClient", "GetS3AccessPolicyCommand")
|
|
3258
|
-
.sc(GetS3AccessPolicy$)
|
|
689
|
+
.sc(schemas_0.GetS3AccessPolicy$)
|
|
3259
690
|
.build() {
|
|
3260
691
|
}
|
|
3261
692
|
|
|
@@ -3267,7 +698,7 @@ class GetSequenceStoreCommand extends smithyClient.Command
|
|
|
3267
698
|
})
|
|
3268
699
|
.s("Omics", "GetSequenceStore", {})
|
|
3269
700
|
.n("OmicsClient", "GetSequenceStoreCommand")
|
|
3270
|
-
.sc(GetSequenceStore$)
|
|
701
|
+
.sc(schemas_0.GetSequenceStore$)
|
|
3271
702
|
.build() {
|
|
3272
703
|
}
|
|
3273
704
|
|
|
@@ -3279,7 +710,7 @@ class GetShareCommand extends smithyClient.Command
|
|
|
3279
710
|
})
|
|
3280
711
|
.s("Omics", "GetShare", {})
|
|
3281
712
|
.n("OmicsClient", "GetShareCommand")
|
|
3282
|
-
.sc(GetShare$)
|
|
713
|
+
.sc(schemas_0.GetShare$)
|
|
3283
714
|
.build() {
|
|
3284
715
|
}
|
|
3285
716
|
|
|
@@ -3291,7 +722,7 @@ class GetVariantImportJobCommand extends smithyClient.Command
|
|
|
3291
722
|
})
|
|
3292
723
|
.s("Omics", "GetVariantImportJob", {})
|
|
3293
724
|
.n("OmicsClient", "GetVariantImportJobCommand")
|
|
3294
|
-
.sc(GetVariantImportJob$)
|
|
725
|
+
.sc(schemas_0.GetVariantImportJob$)
|
|
3295
726
|
.build() {
|
|
3296
727
|
}
|
|
3297
728
|
|
|
@@ -3303,7 +734,7 @@ class GetVariantStoreCommand extends smithyClient.Command
|
|
|
3303
734
|
})
|
|
3304
735
|
.s("Omics", "GetVariantStore", {})
|
|
3305
736
|
.n("OmicsClient", "GetVariantStoreCommand")
|
|
3306
|
-
.sc(GetVariantStore$)
|
|
737
|
+
.sc(schemas_0.GetVariantStore$)
|
|
3307
738
|
.build() {
|
|
3308
739
|
}
|
|
3309
740
|
|
|
@@ -3315,7 +746,7 @@ class GetWorkflowCommand extends smithyClient.Command
|
|
|
3315
746
|
})
|
|
3316
747
|
.s("Omics", "GetWorkflow", {})
|
|
3317
748
|
.n("OmicsClient", "GetWorkflowCommand")
|
|
3318
|
-
.sc(GetWorkflow$)
|
|
749
|
+
.sc(schemas_0.GetWorkflow$)
|
|
3319
750
|
.build() {
|
|
3320
751
|
}
|
|
3321
752
|
|
|
@@ -3327,7 +758,7 @@ class GetWorkflowVersionCommand extends smithyClient.Command
|
|
|
3327
758
|
})
|
|
3328
759
|
.s("Omics", "GetWorkflowVersion", {})
|
|
3329
760
|
.n("OmicsClient", "GetWorkflowVersionCommand")
|
|
3330
|
-
.sc(GetWorkflowVersion$)
|
|
761
|
+
.sc(schemas_0.GetWorkflowVersion$)
|
|
3331
762
|
.build() {
|
|
3332
763
|
}
|
|
3333
764
|
|
|
@@ -3339,7 +770,7 @@ class ListAnnotationImportJobsCommand extends smithyClient.Command
|
|
|
3339
770
|
})
|
|
3340
771
|
.s("Omics", "ListAnnotationImportJobs", {})
|
|
3341
772
|
.n("OmicsClient", "ListAnnotationImportJobsCommand")
|
|
3342
|
-
.sc(ListAnnotationImportJobs$)
|
|
773
|
+
.sc(schemas_0.ListAnnotationImportJobs$)
|
|
3343
774
|
.build() {
|
|
3344
775
|
}
|
|
3345
776
|
|
|
@@ -3351,7 +782,7 @@ class ListAnnotationStoresCommand extends smithyClient.Command
|
|
|
3351
782
|
})
|
|
3352
783
|
.s("Omics", "ListAnnotationStores", {})
|
|
3353
784
|
.n("OmicsClient", "ListAnnotationStoresCommand")
|
|
3354
|
-
.sc(ListAnnotationStores$)
|
|
785
|
+
.sc(schemas_0.ListAnnotationStores$)
|
|
3355
786
|
.build() {
|
|
3356
787
|
}
|
|
3357
788
|
|
|
@@ -3363,7 +794,7 @@ class ListAnnotationStoreVersionsCommand extends smithyClient.Command
|
|
|
3363
794
|
})
|
|
3364
795
|
.s("Omics", "ListAnnotationStoreVersions", {})
|
|
3365
796
|
.n("OmicsClient", "ListAnnotationStoreVersionsCommand")
|
|
3366
|
-
.sc(ListAnnotationStoreVersions$)
|
|
797
|
+
.sc(schemas_0.ListAnnotationStoreVersions$)
|
|
3367
798
|
.build() {
|
|
3368
799
|
}
|
|
3369
800
|
|
|
@@ -3375,7 +806,7 @@ class ListMultipartReadSetUploadsCommand extends smithyClient.Command
|
|
|
3375
806
|
})
|
|
3376
807
|
.s("Omics", "ListMultipartReadSetUploads", {})
|
|
3377
808
|
.n("OmicsClient", "ListMultipartReadSetUploadsCommand")
|
|
3378
|
-
.sc(ListMultipartReadSetUploads$)
|
|
809
|
+
.sc(schemas_0.ListMultipartReadSetUploads$)
|
|
3379
810
|
.build() {
|
|
3380
811
|
}
|
|
3381
812
|
|
|
@@ -3387,7 +818,7 @@ class ListReadSetActivationJobsCommand extends smithyClient.Command
|
|
|
3387
818
|
})
|
|
3388
819
|
.s("Omics", "ListReadSetActivationJobs", {})
|
|
3389
820
|
.n("OmicsClient", "ListReadSetActivationJobsCommand")
|
|
3390
|
-
.sc(ListReadSetActivationJobs$)
|
|
821
|
+
.sc(schemas_0.ListReadSetActivationJobs$)
|
|
3391
822
|
.build() {
|
|
3392
823
|
}
|
|
3393
824
|
|
|
@@ -3399,7 +830,7 @@ class ListReadSetExportJobsCommand extends smithyClient.Command
|
|
|
3399
830
|
})
|
|
3400
831
|
.s("Omics", "ListReadSetExportJobs", {})
|
|
3401
832
|
.n("OmicsClient", "ListReadSetExportJobsCommand")
|
|
3402
|
-
.sc(ListReadSetExportJobs$)
|
|
833
|
+
.sc(schemas_0.ListReadSetExportJobs$)
|
|
3403
834
|
.build() {
|
|
3404
835
|
}
|
|
3405
836
|
|
|
@@ -3411,7 +842,7 @@ class ListReadSetImportJobsCommand extends smithyClient.Command
|
|
|
3411
842
|
})
|
|
3412
843
|
.s("Omics", "ListReadSetImportJobs", {})
|
|
3413
844
|
.n("OmicsClient", "ListReadSetImportJobsCommand")
|
|
3414
|
-
.sc(ListReadSetImportJobs$)
|
|
845
|
+
.sc(schemas_0.ListReadSetImportJobs$)
|
|
3415
846
|
.build() {
|
|
3416
847
|
}
|
|
3417
848
|
|
|
@@ -3423,7 +854,7 @@ class ListReadSetsCommand extends smithyClient.Command
|
|
|
3423
854
|
})
|
|
3424
855
|
.s("Omics", "ListReadSets", {})
|
|
3425
856
|
.n("OmicsClient", "ListReadSetsCommand")
|
|
3426
|
-
.sc(ListReadSets$)
|
|
857
|
+
.sc(schemas_0.ListReadSets$)
|
|
3427
858
|
.build() {
|
|
3428
859
|
}
|
|
3429
860
|
|
|
@@ -3435,7 +866,7 @@ class ListReadSetUploadPartsCommand extends smithyClient.Command
|
|
|
3435
866
|
})
|
|
3436
867
|
.s("Omics", "ListReadSetUploadParts", {})
|
|
3437
868
|
.n("OmicsClient", "ListReadSetUploadPartsCommand")
|
|
3438
|
-
.sc(ListReadSetUploadParts$)
|
|
869
|
+
.sc(schemas_0.ListReadSetUploadParts$)
|
|
3439
870
|
.build() {
|
|
3440
871
|
}
|
|
3441
872
|
|
|
@@ -3447,7 +878,7 @@ class ListReferenceImportJobsCommand extends smithyClient.Command
|
|
|
3447
878
|
})
|
|
3448
879
|
.s("Omics", "ListReferenceImportJobs", {})
|
|
3449
880
|
.n("OmicsClient", "ListReferenceImportJobsCommand")
|
|
3450
|
-
.sc(ListReferenceImportJobs$)
|
|
881
|
+
.sc(schemas_0.ListReferenceImportJobs$)
|
|
3451
882
|
.build() {
|
|
3452
883
|
}
|
|
3453
884
|
|
|
@@ -3459,7 +890,7 @@ class ListReferencesCommand extends smithyClient.Command
|
|
|
3459
890
|
})
|
|
3460
891
|
.s("Omics", "ListReferences", {})
|
|
3461
892
|
.n("OmicsClient", "ListReferencesCommand")
|
|
3462
|
-
.sc(ListReferences$)
|
|
893
|
+
.sc(schemas_0.ListReferences$)
|
|
3463
894
|
.build() {
|
|
3464
895
|
}
|
|
3465
896
|
|
|
@@ -3471,7 +902,7 @@ class ListReferenceStoresCommand extends smithyClient.Command
|
|
|
3471
902
|
})
|
|
3472
903
|
.s("Omics", "ListReferenceStores", {})
|
|
3473
904
|
.n("OmicsClient", "ListReferenceStoresCommand")
|
|
3474
|
-
.sc(ListReferenceStores$)
|
|
905
|
+
.sc(schemas_0.ListReferenceStores$)
|
|
3475
906
|
.build() {
|
|
3476
907
|
}
|
|
3477
908
|
|
|
@@ -3483,7 +914,7 @@ class ListRunCachesCommand extends smithyClient.Command
|
|
|
3483
914
|
})
|
|
3484
915
|
.s("Omics", "ListRunCaches", {})
|
|
3485
916
|
.n("OmicsClient", "ListRunCachesCommand")
|
|
3486
|
-
.sc(ListRunCaches$)
|
|
917
|
+
.sc(schemas_0.ListRunCaches$)
|
|
3487
918
|
.build() {
|
|
3488
919
|
}
|
|
3489
920
|
|
|
@@ -3495,7 +926,7 @@ class ListRunGroupsCommand extends smithyClient.Command
|
|
|
3495
926
|
})
|
|
3496
927
|
.s("Omics", "ListRunGroups", {})
|
|
3497
928
|
.n("OmicsClient", "ListRunGroupsCommand")
|
|
3498
|
-
.sc(ListRunGroups$)
|
|
929
|
+
.sc(schemas_0.ListRunGroups$)
|
|
3499
930
|
.build() {
|
|
3500
931
|
}
|
|
3501
932
|
|
|
@@ -3507,7 +938,7 @@ class ListRunsCommand extends smithyClient.Command
|
|
|
3507
938
|
})
|
|
3508
939
|
.s("Omics", "ListRuns", {})
|
|
3509
940
|
.n("OmicsClient", "ListRunsCommand")
|
|
3510
|
-
.sc(ListRuns$)
|
|
941
|
+
.sc(schemas_0.ListRuns$)
|
|
3511
942
|
.build() {
|
|
3512
943
|
}
|
|
3513
944
|
|
|
@@ -3519,7 +950,7 @@ class ListRunTasksCommand extends smithyClient.Command
|
|
|
3519
950
|
})
|
|
3520
951
|
.s("Omics", "ListRunTasks", {})
|
|
3521
952
|
.n("OmicsClient", "ListRunTasksCommand")
|
|
3522
|
-
.sc(ListRunTasks$)
|
|
953
|
+
.sc(schemas_0.ListRunTasks$)
|
|
3523
954
|
.build() {
|
|
3524
955
|
}
|
|
3525
956
|
|
|
@@ -3531,7 +962,7 @@ class ListSequenceStoresCommand extends smithyClient.Command
|
|
|
3531
962
|
})
|
|
3532
963
|
.s("Omics", "ListSequenceStores", {})
|
|
3533
964
|
.n("OmicsClient", "ListSequenceStoresCommand")
|
|
3534
|
-
.sc(ListSequenceStores$)
|
|
965
|
+
.sc(schemas_0.ListSequenceStores$)
|
|
3535
966
|
.build() {
|
|
3536
967
|
}
|
|
3537
968
|
|
|
@@ -3543,7 +974,7 @@ class ListSharesCommand extends smithyClient.Command
|
|
|
3543
974
|
})
|
|
3544
975
|
.s("Omics", "ListShares", {})
|
|
3545
976
|
.n("OmicsClient", "ListSharesCommand")
|
|
3546
|
-
.sc(ListShares$)
|
|
977
|
+
.sc(schemas_0.ListShares$)
|
|
3547
978
|
.build() {
|
|
3548
979
|
}
|
|
3549
980
|
|
|
@@ -3555,7 +986,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
3555
986
|
})
|
|
3556
987
|
.s("Omics", "ListTagsForResource", {})
|
|
3557
988
|
.n("OmicsClient", "ListTagsForResourceCommand")
|
|
3558
|
-
.sc(ListTagsForResource$)
|
|
989
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
3559
990
|
.build() {
|
|
3560
991
|
}
|
|
3561
992
|
|
|
@@ -3567,7 +998,7 @@ class ListVariantImportJobsCommand extends smithyClient.Command
|
|
|
3567
998
|
})
|
|
3568
999
|
.s("Omics", "ListVariantImportJobs", {})
|
|
3569
1000
|
.n("OmicsClient", "ListVariantImportJobsCommand")
|
|
3570
|
-
.sc(ListVariantImportJobs$)
|
|
1001
|
+
.sc(schemas_0.ListVariantImportJobs$)
|
|
3571
1002
|
.build() {
|
|
3572
1003
|
}
|
|
3573
1004
|
|
|
@@ -3579,7 +1010,7 @@ class ListVariantStoresCommand extends smithyClient.Command
|
|
|
3579
1010
|
})
|
|
3580
1011
|
.s("Omics", "ListVariantStores", {})
|
|
3581
1012
|
.n("OmicsClient", "ListVariantStoresCommand")
|
|
3582
|
-
.sc(ListVariantStores$)
|
|
1013
|
+
.sc(schemas_0.ListVariantStores$)
|
|
3583
1014
|
.build() {
|
|
3584
1015
|
}
|
|
3585
1016
|
|
|
@@ -3591,7 +1022,7 @@ class ListWorkflowsCommand extends smithyClient.Command
|
|
|
3591
1022
|
})
|
|
3592
1023
|
.s("Omics", "ListWorkflows", {})
|
|
3593
1024
|
.n("OmicsClient", "ListWorkflowsCommand")
|
|
3594
|
-
.sc(ListWorkflows$)
|
|
1025
|
+
.sc(schemas_0.ListWorkflows$)
|
|
3595
1026
|
.build() {
|
|
3596
1027
|
}
|
|
3597
1028
|
|
|
@@ -3603,7 +1034,7 @@ class ListWorkflowVersionsCommand extends smithyClient.Command
|
|
|
3603
1034
|
})
|
|
3604
1035
|
.s("Omics", "ListWorkflowVersions", {})
|
|
3605
1036
|
.n("OmicsClient", "ListWorkflowVersionsCommand")
|
|
3606
|
-
.sc(ListWorkflowVersions$)
|
|
1037
|
+
.sc(schemas_0.ListWorkflowVersions$)
|
|
3607
1038
|
.build() {
|
|
3608
1039
|
}
|
|
3609
1040
|
|
|
@@ -3615,7 +1046,7 @@ class PutS3AccessPolicyCommand extends smithyClient.Command
|
|
|
3615
1046
|
})
|
|
3616
1047
|
.s("Omics", "PutS3AccessPolicy", {})
|
|
3617
1048
|
.n("OmicsClient", "PutS3AccessPolicyCommand")
|
|
3618
|
-
.sc(PutS3AccessPolicy$)
|
|
1049
|
+
.sc(schemas_0.PutS3AccessPolicy$)
|
|
3619
1050
|
.build() {
|
|
3620
1051
|
}
|
|
3621
1052
|
|
|
@@ -3627,7 +1058,7 @@ class StartAnnotationImportJobCommand extends smithyClient.Command
|
|
|
3627
1058
|
})
|
|
3628
1059
|
.s("Omics", "StartAnnotationImportJob", {})
|
|
3629
1060
|
.n("OmicsClient", "StartAnnotationImportJobCommand")
|
|
3630
|
-
.sc(StartAnnotationImportJob$)
|
|
1061
|
+
.sc(schemas_0.StartAnnotationImportJob$)
|
|
3631
1062
|
.build() {
|
|
3632
1063
|
}
|
|
3633
1064
|
|
|
@@ -3639,7 +1070,7 @@ class StartReadSetActivationJobCommand extends smithyClient.Command
|
|
|
3639
1070
|
})
|
|
3640
1071
|
.s("Omics", "StartReadSetActivationJob", {})
|
|
3641
1072
|
.n("OmicsClient", "StartReadSetActivationJobCommand")
|
|
3642
|
-
.sc(StartReadSetActivationJob$)
|
|
1073
|
+
.sc(schemas_0.StartReadSetActivationJob$)
|
|
3643
1074
|
.build() {
|
|
3644
1075
|
}
|
|
3645
1076
|
|
|
@@ -3651,7 +1082,7 @@ class StartReadSetExportJobCommand extends smithyClient.Command
|
|
|
3651
1082
|
})
|
|
3652
1083
|
.s("Omics", "StartReadSetExportJob", {})
|
|
3653
1084
|
.n("OmicsClient", "StartReadSetExportJobCommand")
|
|
3654
|
-
.sc(StartReadSetExportJob$)
|
|
1085
|
+
.sc(schemas_0.StartReadSetExportJob$)
|
|
3655
1086
|
.build() {
|
|
3656
1087
|
}
|
|
3657
1088
|
|
|
@@ -3663,7 +1094,7 @@ class StartReadSetImportJobCommand extends smithyClient.Command
|
|
|
3663
1094
|
})
|
|
3664
1095
|
.s("Omics", "StartReadSetImportJob", {})
|
|
3665
1096
|
.n("OmicsClient", "StartReadSetImportJobCommand")
|
|
3666
|
-
.sc(StartReadSetImportJob$)
|
|
1097
|
+
.sc(schemas_0.StartReadSetImportJob$)
|
|
3667
1098
|
.build() {
|
|
3668
1099
|
}
|
|
3669
1100
|
|
|
@@ -3675,7 +1106,7 @@ class StartReferenceImportJobCommand extends smithyClient.Command
|
|
|
3675
1106
|
})
|
|
3676
1107
|
.s("Omics", "StartReferenceImportJob", {})
|
|
3677
1108
|
.n("OmicsClient", "StartReferenceImportJobCommand")
|
|
3678
|
-
.sc(StartReferenceImportJob$)
|
|
1109
|
+
.sc(schemas_0.StartReferenceImportJob$)
|
|
3679
1110
|
.build() {
|
|
3680
1111
|
}
|
|
3681
1112
|
|
|
@@ -3687,7 +1118,7 @@ class StartRunCommand extends smithyClient.Command
|
|
|
3687
1118
|
})
|
|
3688
1119
|
.s("Omics", "StartRun", {})
|
|
3689
1120
|
.n("OmicsClient", "StartRunCommand")
|
|
3690
|
-
.sc(StartRun$)
|
|
1121
|
+
.sc(schemas_0.StartRun$)
|
|
3691
1122
|
.build() {
|
|
3692
1123
|
}
|
|
3693
1124
|
|
|
@@ -3699,7 +1130,7 @@ class StartVariantImportJobCommand extends smithyClient.Command
|
|
|
3699
1130
|
})
|
|
3700
1131
|
.s("Omics", "StartVariantImportJob", {})
|
|
3701
1132
|
.n("OmicsClient", "StartVariantImportJobCommand")
|
|
3702
|
-
.sc(StartVariantImportJob$)
|
|
1133
|
+
.sc(schemas_0.StartVariantImportJob$)
|
|
3703
1134
|
.build() {
|
|
3704
1135
|
}
|
|
3705
1136
|
|
|
@@ -3711,7 +1142,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
3711
1142
|
})
|
|
3712
1143
|
.s("Omics", "TagResource", {})
|
|
3713
1144
|
.n("OmicsClient", "TagResourceCommand")
|
|
3714
|
-
.sc(TagResource$)
|
|
1145
|
+
.sc(schemas_0.TagResource$)
|
|
3715
1146
|
.build() {
|
|
3716
1147
|
}
|
|
3717
1148
|
|
|
@@ -3723,7 +1154,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
3723
1154
|
})
|
|
3724
1155
|
.s("Omics", "UntagResource", {})
|
|
3725
1156
|
.n("OmicsClient", "UntagResourceCommand")
|
|
3726
|
-
.sc(UntagResource$)
|
|
1157
|
+
.sc(schemas_0.UntagResource$)
|
|
3727
1158
|
.build() {
|
|
3728
1159
|
}
|
|
3729
1160
|
|
|
@@ -3735,7 +1166,7 @@ class UpdateAnnotationStoreCommand extends smithyClient.Command
|
|
|
3735
1166
|
})
|
|
3736
1167
|
.s("Omics", "UpdateAnnotationStore", {})
|
|
3737
1168
|
.n("OmicsClient", "UpdateAnnotationStoreCommand")
|
|
3738
|
-
.sc(UpdateAnnotationStore$)
|
|
1169
|
+
.sc(schemas_0.UpdateAnnotationStore$)
|
|
3739
1170
|
.build() {
|
|
3740
1171
|
}
|
|
3741
1172
|
|
|
@@ -3747,7 +1178,7 @@ class UpdateAnnotationStoreVersionCommand extends smithyClient.Command
|
|
|
3747
1178
|
})
|
|
3748
1179
|
.s("Omics", "UpdateAnnotationStoreVersion", {})
|
|
3749
1180
|
.n("OmicsClient", "UpdateAnnotationStoreVersionCommand")
|
|
3750
|
-
.sc(UpdateAnnotationStoreVersion$)
|
|
1181
|
+
.sc(schemas_0.UpdateAnnotationStoreVersion$)
|
|
3751
1182
|
.build() {
|
|
3752
1183
|
}
|
|
3753
1184
|
|
|
@@ -3759,7 +1190,7 @@ class UpdateRunCacheCommand extends smithyClient.Command
|
|
|
3759
1190
|
})
|
|
3760
1191
|
.s("Omics", "UpdateRunCache", {})
|
|
3761
1192
|
.n("OmicsClient", "UpdateRunCacheCommand")
|
|
3762
|
-
.sc(UpdateRunCache$)
|
|
1193
|
+
.sc(schemas_0.UpdateRunCache$)
|
|
3763
1194
|
.build() {
|
|
3764
1195
|
}
|
|
3765
1196
|
|
|
@@ -3771,7 +1202,7 @@ class UpdateRunGroupCommand extends smithyClient.Command
|
|
|
3771
1202
|
})
|
|
3772
1203
|
.s("Omics", "UpdateRunGroup", {})
|
|
3773
1204
|
.n("OmicsClient", "UpdateRunGroupCommand")
|
|
3774
|
-
.sc(UpdateRunGroup$)
|
|
1205
|
+
.sc(schemas_0.UpdateRunGroup$)
|
|
3775
1206
|
.build() {
|
|
3776
1207
|
}
|
|
3777
1208
|
|
|
@@ -3783,7 +1214,7 @@ class UpdateSequenceStoreCommand extends smithyClient.Command
|
|
|
3783
1214
|
})
|
|
3784
1215
|
.s("Omics", "UpdateSequenceStore", {})
|
|
3785
1216
|
.n("OmicsClient", "UpdateSequenceStoreCommand")
|
|
3786
|
-
.sc(UpdateSequenceStore$)
|
|
1217
|
+
.sc(schemas_0.UpdateSequenceStore$)
|
|
3787
1218
|
.build() {
|
|
3788
1219
|
}
|
|
3789
1220
|
|
|
@@ -3795,7 +1226,7 @@ class UpdateVariantStoreCommand extends smithyClient.Command
|
|
|
3795
1226
|
})
|
|
3796
1227
|
.s("Omics", "UpdateVariantStore", {})
|
|
3797
1228
|
.n("OmicsClient", "UpdateVariantStoreCommand")
|
|
3798
|
-
.sc(UpdateVariantStore$)
|
|
1229
|
+
.sc(schemas_0.UpdateVariantStore$)
|
|
3799
1230
|
.build() {
|
|
3800
1231
|
}
|
|
3801
1232
|
|
|
@@ -3807,7 +1238,7 @@ class UpdateWorkflowCommand extends smithyClient.Command
|
|
|
3807
1238
|
})
|
|
3808
1239
|
.s("Omics", "UpdateWorkflow", {})
|
|
3809
1240
|
.n("OmicsClient", "UpdateWorkflowCommand")
|
|
3810
|
-
.sc(UpdateWorkflow$)
|
|
1241
|
+
.sc(schemas_0.UpdateWorkflow$)
|
|
3811
1242
|
.build() {
|
|
3812
1243
|
}
|
|
3813
1244
|
|
|
@@ -3819,7 +1250,7 @@ class UpdateWorkflowVersionCommand extends smithyClient.Command
|
|
|
3819
1250
|
})
|
|
3820
1251
|
.s("Omics", "UpdateWorkflowVersion", {})
|
|
3821
1252
|
.n("OmicsClient", "UpdateWorkflowVersionCommand")
|
|
3822
|
-
.sc(UpdateWorkflowVersion$)
|
|
1253
|
+
.sc(schemas_0.UpdateWorkflowVersion$)
|
|
3823
1254
|
.build() {
|
|
3824
1255
|
}
|
|
3825
1256
|
|
|
@@ -3831,7 +1262,7 @@ class UploadReadSetPartCommand extends smithyClient.Command
|
|
|
3831
1262
|
})
|
|
3832
1263
|
.s("Omics", "UploadReadSetPart", {})
|
|
3833
1264
|
.n("OmicsClient", "UploadReadSetPartCommand")
|
|
3834
|
-
.sc(UploadReadSetPart$)
|
|
1265
|
+
.sc(schemas_0.UploadReadSetPart$)
|
|
3835
1266
|
.build() {
|
|
3836
1267
|
}
|
|
3837
1268
|
|
|
@@ -5469,529 +2900,153 @@ Object.defineProperty(exports, "__Client", {
|
|
|
5469
2900
|
enumerable: true,
|
|
5470
2901
|
get: function () { return smithyClient.Client; }
|
|
5471
2902
|
});
|
|
5472
|
-
exports
|
|
2903
|
+
Object.defineProperty(exports, "OmicsServiceException", {
|
|
2904
|
+
enumerable: true,
|
|
2905
|
+
get: function () { return OmicsServiceException.OmicsServiceException; }
|
|
2906
|
+
});
|
|
5473
2907
|
exports.AbortMultipartReadSetUploadCommand = AbortMultipartReadSetUploadCommand;
|
|
5474
|
-
exports.AbortMultipartReadSetUploadRequest$ = AbortMultipartReadSetUploadRequest$;
|
|
5475
|
-
exports.AbortMultipartReadSetUploadResponse$ = AbortMultipartReadSetUploadResponse$;
|
|
5476
2908
|
exports.Accelerators = Accelerators;
|
|
5477
|
-
exports.AcceptShare$ = AcceptShare$;
|
|
5478
2909
|
exports.AcceptShareCommand = AcceptShareCommand;
|
|
5479
|
-
exports.AcceptShareRequest$ = AcceptShareRequest$;
|
|
5480
|
-
exports.AcceptShareResponse$ = AcceptShareResponse$;
|
|
5481
|
-
exports.AccessDeniedException = AccessDeniedException;
|
|
5482
|
-
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
5483
|
-
exports.ActivateReadSetFilter$ = ActivateReadSetFilter$;
|
|
5484
|
-
exports.ActivateReadSetJobItem$ = ActivateReadSetJobItem$;
|
|
5485
|
-
exports.ActivateReadSetSourceItem$ = ActivateReadSetSourceItem$;
|
|
5486
|
-
exports.AnnotationImportItemDetail$ = AnnotationImportItemDetail$;
|
|
5487
|
-
exports.AnnotationImportItemSource$ = AnnotationImportItemSource$;
|
|
5488
|
-
exports.AnnotationImportJobItem$ = AnnotationImportJobItem$;
|
|
5489
|
-
exports.AnnotationStoreItem$ = AnnotationStoreItem$;
|
|
5490
|
-
exports.AnnotationStoreVersionItem$ = AnnotationStoreVersionItem$;
|
|
5491
2910
|
exports.AnnotationType = AnnotationType;
|
|
5492
|
-
exports.BatchDeleteReadSet$ = BatchDeleteReadSet$;
|
|
5493
2911
|
exports.BatchDeleteReadSetCommand = BatchDeleteReadSetCommand;
|
|
5494
|
-
exports.BatchDeleteReadSetRequest$ = BatchDeleteReadSetRequest$;
|
|
5495
|
-
exports.BatchDeleteReadSetResponse$ = BatchDeleteReadSetResponse$;
|
|
5496
2912
|
exports.CacheBehavior = CacheBehavior;
|
|
5497
|
-
exports.CancelAnnotationImportJob$ = CancelAnnotationImportJob$;
|
|
5498
2913
|
exports.CancelAnnotationImportJobCommand = CancelAnnotationImportJobCommand;
|
|
5499
|
-
exports.CancelAnnotationImportRequest$ = CancelAnnotationImportRequest$;
|
|
5500
|
-
exports.CancelAnnotationImportResponse$ = CancelAnnotationImportResponse$;
|
|
5501
|
-
exports.CancelRun$ = CancelRun$;
|
|
5502
2914
|
exports.CancelRunCommand = CancelRunCommand;
|
|
5503
|
-
exports.CancelRunRequest$ = CancelRunRequest$;
|
|
5504
|
-
exports.CancelVariantImportJob$ = CancelVariantImportJob$;
|
|
5505
2915
|
exports.CancelVariantImportJobCommand = CancelVariantImportJobCommand;
|
|
5506
|
-
exports.CancelVariantImportRequest$ = CancelVariantImportRequest$;
|
|
5507
|
-
exports.CancelVariantImportResponse$ = CancelVariantImportResponse$;
|
|
5508
|
-
exports.CompleteMultipartReadSetUpload$ = CompleteMultipartReadSetUpload$;
|
|
5509
2916
|
exports.CompleteMultipartReadSetUploadCommand = CompleteMultipartReadSetUploadCommand;
|
|
5510
|
-
exports.CompleteMultipartReadSetUploadRequest$ = CompleteMultipartReadSetUploadRequest$;
|
|
5511
|
-
exports.CompleteMultipartReadSetUploadResponse$ = CompleteMultipartReadSetUploadResponse$;
|
|
5512
|
-
exports.CompleteReadSetUploadPartListItem$ = CompleteReadSetUploadPartListItem$;
|
|
5513
|
-
exports.ConflictException = ConflictException;
|
|
5514
|
-
exports.ConflictException$ = ConflictException$;
|
|
5515
|
-
exports.ContainerRegistryMap$ = ContainerRegistryMap$;
|
|
5516
|
-
exports.CreateAnnotationStore$ = CreateAnnotationStore$;
|
|
5517
2917
|
exports.CreateAnnotationStoreCommand = CreateAnnotationStoreCommand;
|
|
5518
|
-
exports.CreateAnnotationStoreRequest$ = CreateAnnotationStoreRequest$;
|
|
5519
|
-
exports.CreateAnnotationStoreResponse$ = CreateAnnotationStoreResponse$;
|
|
5520
|
-
exports.CreateAnnotationStoreVersion$ = CreateAnnotationStoreVersion$;
|
|
5521
2918
|
exports.CreateAnnotationStoreVersionCommand = CreateAnnotationStoreVersionCommand;
|
|
5522
|
-
exports.CreateAnnotationStoreVersionRequest$ = CreateAnnotationStoreVersionRequest$;
|
|
5523
|
-
exports.CreateAnnotationStoreVersionResponse$ = CreateAnnotationStoreVersionResponse$;
|
|
5524
|
-
exports.CreateMultipartReadSetUpload$ = CreateMultipartReadSetUpload$;
|
|
5525
2919
|
exports.CreateMultipartReadSetUploadCommand = CreateMultipartReadSetUploadCommand;
|
|
5526
|
-
exports.CreateMultipartReadSetUploadRequest$ = CreateMultipartReadSetUploadRequest$;
|
|
5527
|
-
exports.CreateMultipartReadSetUploadResponse$ = CreateMultipartReadSetUploadResponse$;
|
|
5528
|
-
exports.CreateReferenceStore$ = CreateReferenceStore$;
|
|
5529
2920
|
exports.CreateReferenceStoreCommand = CreateReferenceStoreCommand;
|
|
5530
|
-
exports.CreateReferenceStoreRequest$ = CreateReferenceStoreRequest$;
|
|
5531
|
-
exports.CreateReferenceStoreResponse$ = CreateReferenceStoreResponse$;
|
|
5532
|
-
exports.CreateRunCache$ = CreateRunCache$;
|
|
5533
2921
|
exports.CreateRunCacheCommand = CreateRunCacheCommand;
|
|
5534
|
-
exports.CreateRunCacheRequest$ = CreateRunCacheRequest$;
|
|
5535
|
-
exports.CreateRunCacheResponse$ = CreateRunCacheResponse$;
|
|
5536
|
-
exports.CreateRunGroup$ = CreateRunGroup$;
|
|
5537
2922
|
exports.CreateRunGroupCommand = CreateRunGroupCommand;
|
|
5538
|
-
exports.CreateRunGroupRequest$ = CreateRunGroupRequest$;
|
|
5539
|
-
exports.CreateRunGroupResponse$ = CreateRunGroupResponse$;
|
|
5540
|
-
exports.CreateSequenceStore$ = CreateSequenceStore$;
|
|
5541
2923
|
exports.CreateSequenceStoreCommand = CreateSequenceStoreCommand;
|
|
5542
|
-
exports.CreateSequenceStoreRequest$ = CreateSequenceStoreRequest$;
|
|
5543
|
-
exports.CreateSequenceStoreResponse$ = CreateSequenceStoreResponse$;
|
|
5544
|
-
exports.CreateShare$ = CreateShare$;
|
|
5545
2924
|
exports.CreateShareCommand = CreateShareCommand;
|
|
5546
|
-
exports.CreateShareRequest$ = CreateShareRequest$;
|
|
5547
|
-
exports.CreateShareResponse$ = CreateShareResponse$;
|
|
5548
|
-
exports.CreateVariantStore$ = CreateVariantStore$;
|
|
5549
2925
|
exports.CreateVariantStoreCommand = CreateVariantStoreCommand;
|
|
5550
|
-
exports.CreateVariantStoreRequest$ = CreateVariantStoreRequest$;
|
|
5551
|
-
exports.CreateVariantStoreResponse$ = CreateVariantStoreResponse$;
|
|
5552
|
-
exports.CreateWorkflow$ = CreateWorkflow$;
|
|
5553
2926
|
exports.CreateWorkflowCommand = CreateWorkflowCommand;
|
|
5554
|
-
exports.CreateWorkflowRequest$ = CreateWorkflowRequest$;
|
|
5555
|
-
exports.CreateWorkflowResponse$ = CreateWorkflowResponse$;
|
|
5556
|
-
exports.CreateWorkflowVersion$ = CreateWorkflowVersion$;
|
|
5557
2927
|
exports.CreateWorkflowVersionCommand = CreateWorkflowVersionCommand;
|
|
5558
|
-
exports.CreateWorkflowVersionRequest$ = CreateWorkflowVersionRequest$;
|
|
5559
|
-
exports.CreateWorkflowVersionResponse$ = CreateWorkflowVersionResponse$;
|
|
5560
2928
|
exports.CreationType = CreationType;
|
|
5561
|
-
exports.DefinitionRepository$ = DefinitionRepository$;
|
|
5562
|
-
exports.DefinitionRepositoryDetails$ = DefinitionRepositoryDetails$;
|
|
5563
|
-
exports.DeleteAnnotationStore$ = DeleteAnnotationStore$;
|
|
5564
2929
|
exports.DeleteAnnotationStoreCommand = DeleteAnnotationStoreCommand;
|
|
5565
|
-
exports.DeleteAnnotationStoreRequest$ = DeleteAnnotationStoreRequest$;
|
|
5566
|
-
exports.DeleteAnnotationStoreResponse$ = DeleteAnnotationStoreResponse$;
|
|
5567
|
-
exports.DeleteAnnotationStoreVersions$ = DeleteAnnotationStoreVersions$;
|
|
5568
2930
|
exports.DeleteAnnotationStoreVersionsCommand = DeleteAnnotationStoreVersionsCommand;
|
|
5569
|
-
exports.DeleteAnnotationStoreVersionsRequest$ = DeleteAnnotationStoreVersionsRequest$;
|
|
5570
|
-
exports.DeleteAnnotationStoreVersionsResponse$ = DeleteAnnotationStoreVersionsResponse$;
|
|
5571
|
-
exports.DeleteReference$ = DeleteReference$;
|
|
5572
2931
|
exports.DeleteReferenceCommand = DeleteReferenceCommand;
|
|
5573
|
-
exports.DeleteReferenceRequest$ = DeleteReferenceRequest$;
|
|
5574
|
-
exports.DeleteReferenceResponse$ = DeleteReferenceResponse$;
|
|
5575
|
-
exports.DeleteReferenceStore$ = DeleteReferenceStore$;
|
|
5576
2932
|
exports.DeleteReferenceStoreCommand = DeleteReferenceStoreCommand;
|
|
5577
|
-
exports.DeleteReferenceStoreRequest$ = DeleteReferenceStoreRequest$;
|
|
5578
|
-
exports.DeleteReferenceStoreResponse$ = DeleteReferenceStoreResponse$;
|
|
5579
|
-
exports.DeleteRun$ = DeleteRun$;
|
|
5580
|
-
exports.DeleteRunCache$ = DeleteRunCache$;
|
|
5581
2933
|
exports.DeleteRunCacheCommand = DeleteRunCacheCommand;
|
|
5582
|
-
exports.DeleteRunCacheRequest$ = DeleteRunCacheRequest$;
|
|
5583
2934
|
exports.DeleteRunCommand = DeleteRunCommand;
|
|
5584
|
-
exports.DeleteRunGroup$ = DeleteRunGroup$;
|
|
5585
2935
|
exports.DeleteRunGroupCommand = DeleteRunGroupCommand;
|
|
5586
|
-
exports.DeleteRunGroupRequest$ = DeleteRunGroupRequest$;
|
|
5587
|
-
exports.DeleteRunRequest$ = DeleteRunRequest$;
|
|
5588
|
-
exports.DeleteS3AccessPolicy$ = DeleteS3AccessPolicy$;
|
|
5589
2936
|
exports.DeleteS3AccessPolicyCommand = DeleteS3AccessPolicyCommand;
|
|
5590
|
-
exports.DeleteS3AccessPolicyRequest$ = DeleteS3AccessPolicyRequest$;
|
|
5591
|
-
exports.DeleteS3AccessPolicyResponse$ = DeleteS3AccessPolicyResponse$;
|
|
5592
|
-
exports.DeleteSequenceStore$ = DeleteSequenceStore$;
|
|
5593
2937
|
exports.DeleteSequenceStoreCommand = DeleteSequenceStoreCommand;
|
|
5594
|
-
exports.DeleteSequenceStoreRequest$ = DeleteSequenceStoreRequest$;
|
|
5595
|
-
exports.DeleteSequenceStoreResponse$ = DeleteSequenceStoreResponse$;
|
|
5596
|
-
exports.DeleteShare$ = DeleteShare$;
|
|
5597
2938
|
exports.DeleteShareCommand = DeleteShareCommand;
|
|
5598
|
-
exports.DeleteShareRequest$ = DeleteShareRequest$;
|
|
5599
|
-
exports.DeleteShareResponse$ = DeleteShareResponse$;
|
|
5600
|
-
exports.DeleteVariantStore$ = DeleteVariantStore$;
|
|
5601
2939
|
exports.DeleteVariantStoreCommand = DeleteVariantStoreCommand;
|
|
5602
|
-
exports.DeleteVariantStoreRequest$ = DeleteVariantStoreRequest$;
|
|
5603
|
-
exports.DeleteVariantStoreResponse$ = DeleteVariantStoreResponse$;
|
|
5604
|
-
exports.DeleteWorkflow$ = DeleteWorkflow$;
|
|
5605
2940
|
exports.DeleteWorkflowCommand = DeleteWorkflowCommand;
|
|
5606
|
-
exports.DeleteWorkflowRequest$ = DeleteWorkflowRequest$;
|
|
5607
|
-
exports.DeleteWorkflowVersion$ = DeleteWorkflowVersion$;
|
|
5608
2941
|
exports.DeleteWorkflowVersionCommand = DeleteWorkflowVersionCommand;
|
|
5609
|
-
exports.DeleteWorkflowVersionRequest$ = DeleteWorkflowVersionRequest$;
|
|
5610
|
-
exports.ETag$ = ETag$;
|
|
5611
2942
|
exports.ETagAlgorithm = ETagAlgorithm;
|
|
5612
2943
|
exports.ETagAlgorithmFamily = ETagAlgorithmFamily;
|
|
5613
2944
|
exports.EncryptionType = EncryptionType;
|
|
5614
|
-
exports.ExportReadSet$ = ExportReadSet$;
|
|
5615
|
-
exports.ExportReadSetDetail$ = ExportReadSetDetail$;
|
|
5616
|
-
exports.ExportReadSetFilter$ = ExportReadSetFilter$;
|
|
5617
|
-
exports.ExportReadSetJobDetail$ = ExportReadSetJobDetail$;
|
|
5618
|
-
exports.FileInformation$ = FileInformation$;
|
|
5619
2945
|
exports.FileType = FileType;
|
|
5620
|
-
exports.Filter$ = Filter$;
|
|
5621
|
-
exports.FormatOptions$ = FormatOptions$;
|
|
5622
2946
|
exports.FormatToHeaderKey = FormatToHeaderKey;
|
|
5623
|
-
exports.GetAnnotationImportJob$ = GetAnnotationImportJob$;
|
|
5624
2947
|
exports.GetAnnotationImportJobCommand = GetAnnotationImportJobCommand;
|
|
5625
|
-
exports.GetAnnotationImportRequest$ = GetAnnotationImportRequest$;
|
|
5626
|
-
exports.GetAnnotationImportResponse$ = GetAnnotationImportResponse$;
|
|
5627
|
-
exports.GetAnnotationStore$ = GetAnnotationStore$;
|
|
5628
2948
|
exports.GetAnnotationStoreCommand = GetAnnotationStoreCommand;
|
|
5629
|
-
exports.GetAnnotationStoreRequest$ = GetAnnotationStoreRequest$;
|
|
5630
|
-
exports.GetAnnotationStoreResponse$ = GetAnnotationStoreResponse$;
|
|
5631
|
-
exports.GetAnnotationStoreVersion$ = GetAnnotationStoreVersion$;
|
|
5632
2949
|
exports.GetAnnotationStoreVersionCommand = GetAnnotationStoreVersionCommand;
|
|
5633
|
-
exports.GetAnnotationStoreVersionRequest$ = GetAnnotationStoreVersionRequest$;
|
|
5634
|
-
exports.GetAnnotationStoreVersionResponse$ = GetAnnotationStoreVersionResponse$;
|
|
5635
|
-
exports.GetReadSet$ = GetReadSet$;
|
|
5636
|
-
exports.GetReadSetActivationJob$ = GetReadSetActivationJob$;
|
|
5637
2950
|
exports.GetReadSetActivationJobCommand = GetReadSetActivationJobCommand;
|
|
5638
|
-
exports.GetReadSetActivationJobRequest$ = GetReadSetActivationJobRequest$;
|
|
5639
|
-
exports.GetReadSetActivationJobResponse$ = GetReadSetActivationJobResponse$;
|
|
5640
2951
|
exports.GetReadSetCommand = GetReadSetCommand;
|
|
5641
|
-
exports.GetReadSetExportJob$ = GetReadSetExportJob$;
|
|
5642
2952
|
exports.GetReadSetExportJobCommand = GetReadSetExportJobCommand;
|
|
5643
|
-
exports.GetReadSetExportJobRequest$ = GetReadSetExportJobRequest$;
|
|
5644
|
-
exports.GetReadSetExportJobResponse$ = GetReadSetExportJobResponse$;
|
|
5645
|
-
exports.GetReadSetImportJob$ = GetReadSetImportJob$;
|
|
5646
2953
|
exports.GetReadSetImportJobCommand = GetReadSetImportJobCommand;
|
|
5647
|
-
exports.GetReadSetImportJobRequest$ = GetReadSetImportJobRequest$;
|
|
5648
|
-
exports.GetReadSetImportJobResponse$ = GetReadSetImportJobResponse$;
|
|
5649
|
-
exports.GetReadSetMetadata$ = GetReadSetMetadata$;
|
|
5650
2954
|
exports.GetReadSetMetadataCommand = GetReadSetMetadataCommand;
|
|
5651
|
-
exports.GetReadSetMetadataRequest$ = GetReadSetMetadataRequest$;
|
|
5652
|
-
exports.GetReadSetMetadataResponse$ = GetReadSetMetadataResponse$;
|
|
5653
|
-
exports.GetReadSetRequest$ = GetReadSetRequest$;
|
|
5654
|
-
exports.GetReadSetResponse$ = GetReadSetResponse$;
|
|
5655
|
-
exports.GetReference$ = GetReference$;
|
|
5656
2955
|
exports.GetReferenceCommand = GetReferenceCommand;
|
|
5657
|
-
exports.GetReferenceImportJob$ = GetReferenceImportJob$;
|
|
5658
2956
|
exports.GetReferenceImportJobCommand = GetReferenceImportJobCommand;
|
|
5659
|
-
exports.GetReferenceImportJobRequest$ = GetReferenceImportJobRequest$;
|
|
5660
|
-
exports.GetReferenceImportJobResponse$ = GetReferenceImportJobResponse$;
|
|
5661
|
-
exports.GetReferenceMetadata$ = GetReferenceMetadata$;
|
|
5662
2957
|
exports.GetReferenceMetadataCommand = GetReferenceMetadataCommand;
|
|
5663
|
-
exports.GetReferenceMetadataRequest$ = GetReferenceMetadataRequest$;
|
|
5664
|
-
exports.GetReferenceMetadataResponse$ = GetReferenceMetadataResponse$;
|
|
5665
|
-
exports.GetReferenceRequest$ = GetReferenceRequest$;
|
|
5666
|
-
exports.GetReferenceResponse$ = GetReferenceResponse$;
|
|
5667
|
-
exports.GetReferenceStore$ = GetReferenceStore$;
|
|
5668
2958
|
exports.GetReferenceStoreCommand = GetReferenceStoreCommand;
|
|
5669
|
-
exports.GetReferenceStoreRequest$ = GetReferenceStoreRequest$;
|
|
5670
|
-
exports.GetReferenceStoreResponse$ = GetReferenceStoreResponse$;
|
|
5671
|
-
exports.GetRun$ = GetRun$;
|
|
5672
|
-
exports.GetRunCache$ = GetRunCache$;
|
|
5673
2959
|
exports.GetRunCacheCommand = GetRunCacheCommand;
|
|
5674
|
-
exports.GetRunCacheRequest$ = GetRunCacheRequest$;
|
|
5675
|
-
exports.GetRunCacheResponse$ = GetRunCacheResponse$;
|
|
5676
2960
|
exports.GetRunCommand = GetRunCommand;
|
|
5677
|
-
exports.GetRunGroup$ = GetRunGroup$;
|
|
5678
2961
|
exports.GetRunGroupCommand = GetRunGroupCommand;
|
|
5679
|
-
exports.GetRunGroupRequest$ = GetRunGroupRequest$;
|
|
5680
|
-
exports.GetRunGroupResponse$ = GetRunGroupResponse$;
|
|
5681
|
-
exports.GetRunRequest$ = GetRunRequest$;
|
|
5682
|
-
exports.GetRunResponse$ = GetRunResponse$;
|
|
5683
|
-
exports.GetRunTask$ = GetRunTask$;
|
|
5684
2962
|
exports.GetRunTaskCommand = GetRunTaskCommand;
|
|
5685
|
-
exports.GetRunTaskRequest$ = GetRunTaskRequest$;
|
|
5686
|
-
exports.GetRunTaskResponse$ = GetRunTaskResponse$;
|
|
5687
|
-
exports.GetS3AccessPolicy$ = GetS3AccessPolicy$;
|
|
5688
2963
|
exports.GetS3AccessPolicyCommand = GetS3AccessPolicyCommand;
|
|
5689
|
-
exports.GetS3AccessPolicyRequest$ = GetS3AccessPolicyRequest$;
|
|
5690
|
-
exports.GetS3AccessPolicyResponse$ = GetS3AccessPolicyResponse$;
|
|
5691
|
-
exports.GetSequenceStore$ = GetSequenceStore$;
|
|
5692
2964
|
exports.GetSequenceStoreCommand = GetSequenceStoreCommand;
|
|
5693
|
-
exports.GetSequenceStoreRequest$ = GetSequenceStoreRequest$;
|
|
5694
|
-
exports.GetSequenceStoreResponse$ = GetSequenceStoreResponse$;
|
|
5695
|
-
exports.GetShare$ = GetShare$;
|
|
5696
2965
|
exports.GetShareCommand = GetShareCommand;
|
|
5697
|
-
exports.GetShareRequest$ = GetShareRequest$;
|
|
5698
|
-
exports.GetShareResponse$ = GetShareResponse$;
|
|
5699
|
-
exports.GetVariantImportJob$ = GetVariantImportJob$;
|
|
5700
2966
|
exports.GetVariantImportJobCommand = GetVariantImportJobCommand;
|
|
5701
|
-
exports.GetVariantImportRequest$ = GetVariantImportRequest$;
|
|
5702
|
-
exports.GetVariantImportResponse$ = GetVariantImportResponse$;
|
|
5703
|
-
exports.GetVariantStore$ = GetVariantStore$;
|
|
5704
2967
|
exports.GetVariantStoreCommand = GetVariantStoreCommand;
|
|
5705
|
-
exports.GetVariantStoreRequest$ = GetVariantStoreRequest$;
|
|
5706
|
-
exports.GetVariantStoreResponse$ = GetVariantStoreResponse$;
|
|
5707
|
-
exports.GetWorkflow$ = GetWorkflow$;
|
|
5708
2968
|
exports.GetWorkflowCommand = GetWorkflowCommand;
|
|
5709
|
-
exports.GetWorkflowRequest$ = GetWorkflowRequest$;
|
|
5710
|
-
exports.GetWorkflowResponse$ = GetWorkflowResponse$;
|
|
5711
|
-
exports.GetWorkflowVersion$ = GetWorkflowVersion$;
|
|
5712
2969
|
exports.GetWorkflowVersionCommand = GetWorkflowVersionCommand;
|
|
5713
|
-
exports.GetWorkflowVersionRequest$ = GetWorkflowVersionRequest$;
|
|
5714
|
-
exports.GetWorkflowVersionResponse$ = GetWorkflowVersionResponse$;
|
|
5715
|
-
exports.ImageDetails$ = ImageDetails$;
|
|
5716
|
-
exports.ImageMapping$ = ImageMapping$;
|
|
5717
|
-
exports.ImportReadSetFilter$ = ImportReadSetFilter$;
|
|
5718
|
-
exports.ImportReadSetJobItem$ = ImportReadSetJobItem$;
|
|
5719
|
-
exports.ImportReadSetSourceItem$ = ImportReadSetSourceItem$;
|
|
5720
|
-
exports.ImportReferenceFilter$ = ImportReferenceFilter$;
|
|
5721
|
-
exports.ImportReferenceJobItem$ = ImportReferenceJobItem$;
|
|
5722
|
-
exports.ImportReferenceSourceItem$ = ImportReferenceSourceItem$;
|
|
5723
|
-
exports.InternalServerException = InternalServerException;
|
|
5724
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
5725
2970
|
exports.JobStatus = JobStatus;
|
|
5726
|
-
exports.ListAnnotationImportJobs$ = ListAnnotationImportJobs$;
|
|
5727
2971
|
exports.ListAnnotationImportJobsCommand = ListAnnotationImportJobsCommand;
|
|
5728
|
-
exports.ListAnnotationImportJobsFilter$ = ListAnnotationImportJobsFilter$;
|
|
5729
|
-
exports.ListAnnotationImportJobsRequest$ = ListAnnotationImportJobsRequest$;
|
|
5730
|
-
exports.ListAnnotationImportJobsResponse$ = ListAnnotationImportJobsResponse$;
|
|
5731
|
-
exports.ListAnnotationStoreVersions$ = ListAnnotationStoreVersions$;
|
|
5732
2972
|
exports.ListAnnotationStoreVersionsCommand = ListAnnotationStoreVersionsCommand;
|
|
5733
|
-
exports.ListAnnotationStoreVersionsFilter$ = ListAnnotationStoreVersionsFilter$;
|
|
5734
|
-
exports.ListAnnotationStoreVersionsRequest$ = ListAnnotationStoreVersionsRequest$;
|
|
5735
|
-
exports.ListAnnotationStoreVersionsResponse$ = ListAnnotationStoreVersionsResponse$;
|
|
5736
|
-
exports.ListAnnotationStores$ = ListAnnotationStores$;
|
|
5737
2973
|
exports.ListAnnotationStoresCommand = ListAnnotationStoresCommand;
|
|
5738
|
-
exports.ListAnnotationStoresFilter$ = ListAnnotationStoresFilter$;
|
|
5739
|
-
exports.ListAnnotationStoresRequest$ = ListAnnotationStoresRequest$;
|
|
5740
|
-
exports.ListAnnotationStoresResponse$ = ListAnnotationStoresResponse$;
|
|
5741
|
-
exports.ListMultipartReadSetUploads$ = ListMultipartReadSetUploads$;
|
|
5742
2974
|
exports.ListMultipartReadSetUploadsCommand = ListMultipartReadSetUploadsCommand;
|
|
5743
|
-
exports.ListMultipartReadSetUploadsRequest$ = ListMultipartReadSetUploadsRequest$;
|
|
5744
|
-
exports.ListMultipartReadSetUploadsResponse$ = ListMultipartReadSetUploadsResponse$;
|
|
5745
|
-
exports.ListReadSetActivationJobs$ = ListReadSetActivationJobs$;
|
|
5746
2975
|
exports.ListReadSetActivationJobsCommand = ListReadSetActivationJobsCommand;
|
|
5747
|
-
exports.ListReadSetActivationJobsRequest$ = ListReadSetActivationJobsRequest$;
|
|
5748
|
-
exports.ListReadSetActivationJobsResponse$ = ListReadSetActivationJobsResponse$;
|
|
5749
|
-
exports.ListReadSetExportJobs$ = ListReadSetExportJobs$;
|
|
5750
2976
|
exports.ListReadSetExportJobsCommand = ListReadSetExportJobsCommand;
|
|
5751
|
-
exports.ListReadSetExportJobsRequest$ = ListReadSetExportJobsRequest$;
|
|
5752
|
-
exports.ListReadSetExportJobsResponse$ = ListReadSetExportJobsResponse$;
|
|
5753
|
-
exports.ListReadSetImportJobs$ = ListReadSetImportJobs$;
|
|
5754
2977
|
exports.ListReadSetImportJobsCommand = ListReadSetImportJobsCommand;
|
|
5755
|
-
exports.ListReadSetImportJobsRequest$ = ListReadSetImportJobsRequest$;
|
|
5756
|
-
exports.ListReadSetImportJobsResponse$ = ListReadSetImportJobsResponse$;
|
|
5757
|
-
exports.ListReadSetUploadParts$ = ListReadSetUploadParts$;
|
|
5758
2978
|
exports.ListReadSetUploadPartsCommand = ListReadSetUploadPartsCommand;
|
|
5759
|
-
exports.ListReadSetUploadPartsRequest$ = ListReadSetUploadPartsRequest$;
|
|
5760
|
-
exports.ListReadSetUploadPartsResponse$ = ListReadSetUploadPartsResponse$;
|
|
5761
|
-
exports.ListReadSets$ = ListReadSets$;
|
|
5762
2979
|
exports.ListReadSetsCommand = ListReadSetsCommand;
|
|
5763
|
-
exports.ListReadSetsRequest$ = ListReadSetsRequest$;
|
|
5764
|
-
exports.ListReadSetsResponse$ = ListReadSetsResponse$;
|
|
5765
|
-
exports.ListReferenceImportJobs$ = ListReferenceImportJobs$;
|
|
5766
2980
|
exports.ListReferenceImportJobsCommand = ListReferenceImportJobsCommand;
|
|
5767
|
-
exports.ListReferenceImportJobsRequest$ = ListReferenceImportJobsRequest$;
|
|
5768
|
-
exports.ListReferenceImportJobsResponse$ = ListReferenceImportJobsResponse$;
|
|
5769
|
-
exports.ListReferenceStores$ = ListReferenceStores$;
|
|
5770
2981
|
exports.ListReferenceStoresCommand = ListReferenceStoresCommand;
|
|
5771
|
-
exports.ListReferenceStoresRequest$ = ListReferenceStoresRequest$;
|
|
5772
|
-
exports.ListReferenceStoresResponse$ = ListReferenceStoresResponse$;
|
|
5773
|
-
exports.ListReferences$ = ListReferences$;
|
|
5774
2982
|
exports.ListReferencesCommand = ListReferencesCommand;
|
|
5775
|
-
exports.ListReferencesRequest$ = ListReferencesRequest$;
|
|
5776
|
-
exports.ListReferencesResponse$ = ListReferencesResponse$;
|
|
5777
|
-
exports.ListRunCaches$ = ListRunCaches$;
|
|
5778
2983
|
exports.ListRunCachesCommand = ListRunCachesCommand;
|
|
5779
|
-
exports.ListRunCachesRequest$ = ListRunCachesRequest$;
|
|
5780
|
-
exports.ListRunCachesResponse$ = ListRunCachesResponse$;
|
|
5781
|
-
exports.ListRunGroups$ = ListRunGroups$;
|
|
5782
2984
|
exports.ListRunGroupsCommand = ListRunGroupsCommand;
|
|
5783
|
-
exports.ListRunGroupsRequest$ = ListRunGroupsRequest$;
|
|
5784
|
-
exports.ListRunGroupsResponse$ = ListRunGroupsResponse$;
|
|
5785
|
-
exports.ListRunTasks$ = ListRunTasks$;
|
|
5786
2985
|
exports.ListRunTasksCommand = ListRunTasksCommand;
|
|
5787
|
-
exports.ListRunTasksRequest$ = ListRunTasksRequest$;
|
|
5788
|
-
exports.ListRunTasksResponse$ = ListRunTasksResponse$;
|
|
5789
|
-
exports.ListRuns$ = ListRuns$;
|
|
5790
2986
|
exports.ListRunsCommand = ListRunsCommand;
|
|
5791
|
-
exports.ListRunsRequest$ = ListRunsRequest$;
|
|
5792
|
-
exports.ListRunsResponse$ = ListRunsResponse$;
|
|
5793
|
-
exports.ListSequenceStores$ = ListSequenceStores$;
|
|
5794
2987
|
exports.ListSequenceStoresCommand = ListSequenceStoresCommand;
|
|
5795
|
-
exports.ListSequenceStoresRequest$ = ListSequenceStoresRequest$;
|
|
5796
|
-
exports.ListSequenceStoresResponse$ = ListSequenceStoresResponse$;
|
|
5797
|
-
exports.ListShares$ = ListShares$;
|
|
5798
2988
|
exports.ListSharesCommand = ListSharesCommand;
|
|
5799
|
-
exports.ListSharesRequest$ = ListSharesRequest$;
|
|
5800
|
-
exports.ListSharesResponse$ = ListSharesResponse$;
|
|
5801
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
5802
2989
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
5803
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
5804
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
5805
|
-
exports.ListVariantImportJobs$ = ListVariantImportJobs$;
|
|
5806
2990
|
exports.ListVariantImportJobsCommand = ListVariantImportJobsCommand;
|
|
5807
|
-
exports.ListVariantImportJobsFilter$ = ListVariantImportJobsFilter$;
|
|
5808
|
-
exports.ListVariantImportJobsRequest$ = ListVariantImportJobsRequest$;
|
|
5809
|
-
exports.ListVariantImportJobsResponse$ = ListVariantImportJobsResponse$;
|
|
5810
|
-
exports.ListVariantStores$ = ListVariantStores$;
|
|
5811
2991
|
exports.ListVariantStoresCommand = ListVariantStoresCommand;
|
|
5812
|
-
exports.ListVariantStoresFilter$ = ListVariantStoresFilter$;
|
|
5813
|
-
exports.ListVariantStoresRequest$ = ListVariantStoresRequest$;
|
|
5814
|
-
exports.ListVariantStoresResponse$ = ListVariantStoresResponse$;
|
|
5815
|
-
exports.ListWorkflowVersions$ = ListWorkflowVersions$;
|
|
5816
2992
|
exports.ListWorkflowVersionsCommand = ListWorkflowVersionsCommand;
|
|
5817
|
-
exports.ListWorkflowVersionsRequest$ = ListWorkflowVersionsRequest$;
|
|
5818
|
-
exports.ListWorkflowVersionsResponse$ = ListWorkflowVersionsResponse$;
|
|
5819
|
-
exports.ListWorkflows$ = ListWorkflows$;
|
|
5820
2993
|
exports.ListWorkflowsCommand = ListWorkflowsCommand;
|
|
5821
|
-
exports.ListWorkflowsRequest$ = ListWorkflowsRequest$;
|
|
5822
|
-
exports.ListWorkflowsResponse$ = ListWorkflowsResponse$;
|
|
5823
|
-
exports.MultipartReadSetUploadListItem$ = MultipartReadSetUploadListItem$;
|
|
5824
|
-
exports.NotSupportedOperationException = NotSupportedOperationException;
|
|
5825
|
-
exports.NotSupportedOperationException$ = NotSupportedOperationException$;
|
|
5826
2994
|
exports.Omics = Omics;
|
|
5827
2995
|
exports.OmicsClient = OmicsClient;
|
|
5828
|
-
exports.OmicsServiceException = OmicsServiceException;
|
|
5829
|
-
exports.OmicsServiceException$ = OmicsServiceException$;
|
|
5830
|
-
exports.PutS3AccessPolicy$ = PutS3AccessPolicy$;
|
|
5831
2996
|
exports.PutS3AccessPolicyCommand = PutS3AccessPolicyCommand;
|
|
5832
|
-
exports.PutS3AccessPolicyRequest$ = PutS3AccessPolicyRequest$;
|
|
5833
|
-
exports.PutS3AccessPolicyResponse$ = PutS3AccessPolicyResponse$;
|
|
5834
|
-
exports.RangeNotSatisfiableException = RangeNotSatisfiableException;
|
|
5835
|
-
exports.RangeNotSatisfiableException$ = RangeNotSatisfiableException$;
|
|
5836
|
-
exports.ReadOptions$ = ReadOptions$;
|
|
5837
2997
|
exports.ReadSetActivationJobItemStatus = ReadSetActivationJobItemStatus;
|
|
5838
2998
|
exports.ReadSetActivationJobStatus = ReadSetActivationJobStatus;
|
|
5839
|
-
exports.ReadSetBatchError$ = ReadSetBatchError$;
|
|
5840
2999
|
exports.ReadSetExportJobItemStatus = ReadSetExportJobItemStatus;
|
|
5841
3000
|
exports.ReadSetExportJobStatus = ReadSetExportJobStatus;
|
|
5842
3001
|
exports.ReadSetFile = ReadSetFile;
|
|
5843
|
-
exports.ReadSetFiles$ = ReadSetFiles$;
|
|
5844
|
-
exports.ReadSetFilter$ = ReadSetFilter$;
|
|
5845
3002
|
exports.ReadSetImportJobItemStatus = ReadSetImportJobItemStatus;
|
|
5846
3003
|
exports.ReadSetImportJobStatus = ReadSetImportJobStatus;
|
|
5847
|
-
exports.ReadSetListItem$ = ReadSetListItem$;
|
|
5848
3004
|
exports.ReadSetPartSource = ReadSetPartSource;
|
|
5849
|
-
exports.ReadSetS3Access$ = ReadSetS3Access$;
|
|
5850
3005
|
exports.ReadSetStatus = ReadSetStatus;
|
|
5851
|
-
exports.ReadSetUploadPartListFilter$ = ReadSetUploadPartListFilter$;
|
|
5852
|
-
exports.ReadSetUploadPartListItem$ = ReadSetUploadPartListItem$;
|
|
5853
3006
|
exports.ReferenceCreationType = ReferenceCreationType;
|
|
5854
3007
|
exports.ReferenceFile = ReferenceFile;
|
|
5855
|
-
exports.ReferenceFiles$ = ReferenceFiles$;
|
|
5856
|
-
exports.ReferenceFilter$ = ReferenceFilter$;
|
|
5857
3008
|
exports.ReferenceImportJobItemStatus = ReferenceImportJobItemStatus;
|
|
5858
3009
|
exports.ReferenceImportJobStatus = ReferenceImportJobStatus;
|
|
5859
|
-
exports.ReferenceItem$ = ReferenceItem$;
|
|
5860
|
-
exports.ReferenceListItem$ = ReferenceListItem$;
|
|
5861
3010
|
exports.ReferenceStatus = ReferenceStatus;
|
|
5862
|
-
exports.ReferenceStoreDetail$ = ReferenceStoreDetail$;
|
|
5863
|
-
exports.ReferenceStoreFilter$ = ReferenceStoreFilter$;
|
|
5864
|
-
exports.RegistryMapping$ = RegistryMapping$;
|
|
5865
|
-
exports.RequestTimeoutException = RequestTimeoutException;
|
|
5866
|
-
exports.RequestTimeoutException$ = RequestTimeoutException$;
|
|
5867
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
5868
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
5869
3011
|
exports.ResourceOwner = ResourceOwner;
|
|
5870
|
-
exports.RunCacheListItem$ = RunCacheListItem$;
|
|
5871
3012
|
exports.RunCacheStatus = RunCacheStatus;
|
|
5872
3013
|
exports.RunExport = RunExport;
|
|
5873
|
-
exports.RunGroupListItem$ = RunGroupListItem$;
|
|
5874
|
-
exports.RunListItem$ = RunListItem$;
|
|
5875
3014
|
exports.RunLogLevel = RunLogLevel;
|
|
5876
|
-
exports.RunLogLocation$ = RunLogLocation$;
|
|
5877
3015
|
exports.RunRetentionMode = RunRetentionMode;
|
|
5878
3016
|
exports.RunStatus = RunStatus;
|
|
5879
|
-
exports.S3AccessConfig$ = S3AccessConfig$;
|
|
5880
3017
|
exports.SchemaValueType = SchemaValueType;
|
|
5881
|
-
exports.SequenceInformation$ = SequenceInformation$;
|
|
5882
|
-
exports.SequenceStoreDetail$ = SequenceStoreDetail$;
|
|
5883
|
-
exports.SequenceStoreFilter$ = SequenceStoreFilter$;
|
|
5884
|
-
exports.SequenceStoreS3Access$ = SequenceStoreS3Access$;
|
|
5885
3018
|
exports.SequenceStoreStatus = SequenceStoreStatus;
|
|
5886
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
5887
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
5888
|
-
exports.ShareDetails$ = ShareDetails$;
|
|
5889
3019
|
exports.ShareResourceType = ShareResourceType;
|
|
5890
3020
|
exports.ShareStatus = ShareStatus;
|
|
5891
|
-
exports.SourceFiles$ = SourceFiles$;
|
|
5892
|
-
exports.SourceReference$ = SourceReference$;
|
|
5893
3021
|
exports.SourceReferenceType = SourceReferenceType;
|
|
5894
|
-
exports.SseConfig$ = SseConfig$;
|
|
5895
|
-
exports.StartAnnotationImportJob$ = StartAnnotationImportJob$;
|
|
5896
3022
|
exports.StartAnnotationImportJobCommand = StartAnnotationImportJobCommand;
|
|
5897
|
-
exports.StartAnnotationImportRequest$ = StartAnnotationImportRequest$;
|
|
5898
|
-
exports.StartAnnotationImportResponse$ = StartAnnotationImportResponse$;
|
|
5899
|
-
exports.StartReadSetActivationJob$ = StartReadSetActivationJob$;
|
|
5900
3023
|
exports.StartReadSetActivationJobCommand = StartReadSetActivationJobCommand;
|
|
5901
|
-
exports.StartReadSetActivationJobRequest$ = StartReadSetActivationJobRequest$;
|
|
5902
|
-
exports.StartReadSetActivationJobResponse$ = StartReadSetActivationJobResponse$;
|
|
5903
|
-
exports.StartReadSetActivationJobSourceItem$ = StartReadSetActivationJobSourceItem$;
|
|
5904
|
-
exports.StartReadSetExportJob$ = StartReadSetExportJob$;
|
|
5905
3024
|
exports.StartReadSetExportJobCommand = StartReadSetExportJobCommand;
|
|
5906
|
-
exports.StartReadSetExportJobRequest$ = StartReadSetExportJobRequest$;
|
|
5907
|
-
exports.StartReadSetExportJobResponse$ = StartReadSetExportJobResponse$;
|
|
5908
|
-
exports.StartReadSetImportJob$ = StartReadSetImportJob$;
|
|
5909
3025
|
exports.StartReadSetImportJobCommand = StartReadSetImportJobCommand;
|
|
5910
|
-
exports.StartReadSetImportJobRequest$ = StartReadSetImportJobRequest$;
|
|
5911
|
-
exports.StartReadSetImportJobResponse$ = StartReadSetImportJobResponse$;
|
|
5912
|
-
exports.StartReadSetImportJobSourceItem$ = StartReadSetImportJobSourceItem$;
|
|
5913
|
-
exports.StartReferenceImportJob$ = StartReferenceImportJob$;
|
|
5914
3026
|
exports.StartReferenceImportJobCommand = StartReferenceImportJobCommand;
|
|
5915
|
-
exports.StartReferenceImportJobRequest$ = StartReferenceImportJobRequest$;
|
|
5916
|
-
exports.StartReferenceImportJobResponse$ = StartReferenceImportJobResponse$;
|
|
5917
|
-
exports.StartReferenceImportJobSourceItem$ = StartReferenceImportJobSourceItem$;
|
|
5918
|
-
exports.StartRun$ = StartRun$;
|
|
5919
3027
|
exports.StartRunCommand = StartRunCommand;
|
|
5920
|
-
exports.StartRunRequest$ = StartRunRequest$;
|
|
5921
|
-
exports.StartRunResponse$ = StartRunResponse$;
|
|
5922
|
-
exports.StartVariantImportJob$ = StartVariantImportJob$;
|
|
5923
3028
|
exports.StartVariantImportJobCommand = StartVariantImportJobCommand;
|
|
5924
|
-
exports.StartVariantImportRequest$ = StartVariantImportRequest$;
|
|
5925
|
-
exports.StartVariantImportResponse$ = StartVariantImportResponse$;
|
|
5926
3029
|
exports.StorageType = StorageType;
|
|
5927
3030
|
exports.StoreFormat = StoreFormat;
|
|
5928
|
-
exports.StoreOptions$ = StoreOptions$;
|
|
5929
3031
|
exports.StoreStatus = StoreStatus;
|
|
5930
3032
|
exports.StoreType = StoreType;
|
|
5931
|
-
exports.TagResource$ = TagResource$;
|
|
5932
3033
|
exports.TagResourceCommand = TagResourceCommand;
|
|
5933
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
5934
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
5935
|
-
exports.TaskListItem$ = TaskListItem$;
|
|
5936
3034
|
exports.TaskStatus = TaskStatus;
|
|
5937
|
-
exports.ThrottlingException = ThrottlingException;
|
|
5938
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
5939
|
-
exports.TsvOptions$ = TsvOptions$;
|
|
5940
|
-
exports.TsvStoreOptions$ = TsvStoreOptions$;
|
|
5941
|
-
exports.TsvVersionOptions$ = TsvVersionOptions$;
|
|
5942
|
-
exports.UntagResource$ = UntagResource$;
|
|
5943
3035
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
5944
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
5945
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
5946
|
-
exports.UpdateAnnotationStore$ = UpdateAnnotationStore$;
|
|
5947
3036
|
exports.UpdateAnnotationStoreCommand = UpdateAnnotationStoreCommand;
|
|
5948
|
-
exports.UpdateAnnotationStoreRequest$ = UpdateAnnotationStoreRequest$;
|
|
5949
|
-
exports.UpdateAnnotationStoreResponse$ = UpdateAnnotationStoreResponse$;
|
|
5950
|
-
exports.UpdateAnnotationStoreVersion$ = UpdateAnnotationStoreVersion$;
|
|
5951
3037
|
exports.UpdateAnnotationStoreVersionCommand = UpdateAnnotationStoreVersionCommand;
|
|
5952
|
-
exports.UpdateAnnotationStoreVersionRequest$ = UpdateAnnotationStoreVersionRequest$;
|
|
5953
|
-
exports.UpdateAnnotationStoreVersionResponse$ = UpdateAnnotationStoreVersionResponse$;
|
|
5954
|
-
exports.UpdateRunCache$ = UpdateRunCache$;
|
|
5955
3038
|
exports.UpdateRunCacheCommand = UpdateRunCacheCommand;
|
|
5956
|
-
exports.UpdateRunCacheRequest$ = UpdateRunCacheRequest$;
|
|
5957
|
-
exports.UpdateRunGroup$ = UpdateRunGroup$;
|
|
5958
3039
|
exports.UpdateRunGroupCommand = UpdateRunGroupCommand;
|
|
5959
|
-
exports.UpdateRunGroupRequest$ = UpdateRunGroupRequest$;
|
|
5960
|
-
exports.UpdateSequenceStore$ = UpdateSequenceStore$;
|
|
5961
3040
|
exports.UpdateSequenceStoreCommand = UpdateSequenceStoreCommand;
|
|
5962
|
-
exports.UpdateSequenceStoreRequest$ = UpdateSequenceStoreRequest$;
|
|
5963
|
-
exports.UpdateSequenceStoreResponse$ = UpdateSequenceStoreResponse$;
|
|
5964
|
-
exports.UpdateVariantStore$ = UpdateVariantStore$;
|
|
5965
3041
|
exports.UpdateVariantStoreCommand = UpdateVariantStoreCommand;
|
|
5966
|
-
exports.UpdateVariantStoreRequest$ = UpdateVariantStoreRequest$;
|
|
5967
|
-
exports.UpdateVariantStoreResponse$ = UpdateVariantStoreResponse$;
|
|
5968
|
-
exports.UpdateWorkflow$ = UpdateWorkflow$;
|
|
5969
3042
|
exports.UpdateWorkflowCommand = UpdateWorkflowCommand;
|
|
5970
|
-
exports.UpdateWorkflowRequest$ = UpdateWorkflowRequest$;
|
|
5971
|
-
exports.UpdateWorkflowVersion$ = UpdateWorkflowVersion$;
|
|
5972
3043
|
exports.UpdateWorkflowVersionCommand = UpdateWorkflowVersionCommand;
|
|
5973
|
-
exports.UpdateWorkflowVersionRequest$ = UpdateWorkflowVersionRequest$;
|
|
5974
|
-
exports.UploadReadSetPart$ = UploadReadSetPart$;
|
|
5975
3044
|
exports.UploadReadSetPartCommand = UploadReadSetPartCommand;
|
|
5976
|
-
exports.UploadReadSetPartRequest$ = UploadReadSetPartRequest$;
|
|
5977
|
-
exports.UploadReadSetPartResponse$ = UploadReadSetPartResponse$;
|
|
5978
|
-
exports.ValidationException = ValidationException;
|
|
5979
|
-
exports.ValidationException$ = ValidationException$;
|
|
5980
|
-
exports.VariantImportItemDetail$ = VariantImportItemDetail$;
|
|
5981
|
-
exports.VariantImportItemSource$ = VariantImportItemSource$;
|
|
5982
|
-
exports.VariantImportJobItem$ = VariantImportJobItem$;
|
|
5983
|
-
exports.VariantStoreItem$ = VariantStoreItem$;
|
|
5984
|
-
exports.VcfOptions$ = VcfOptions$;
|
|
5985
|
-
exports.VersionDeleteError$ = VersionDeleteError$;
|
|
5986
|
-
exports.VersionOptions$ = VersionOptions$;
|
|
5987
3045
|
exports.VersionStatus = VersionStatus;
|
|
5988
3046
|
exports.WorkflowEngine = WorkflowEngine;
|
|
5989
3047
|
exports.WorkflowExport = WorkflowExport;
|
|
5990
|
-
exports.WorkflowListItem$ = WorkflowListItem$;
|
|
5991
|
-
exports.WorkflowParameter$ = WorkflowParameter$;
|
|
5992
3048
|
exports.WorkflowStatus = WorkflowStatus;
|
|
5993
3049
|
exports.WorkflowType = WorkflowType;
|
|
5994
|
-
exports.WorkflowVersionListItem$ = WorkflowVersionListItem$;
|
|
5995
3050
|
exports.paginateListAnnotationImportJobs = paginateListAnnotationImportJobs;
|
|
5996
3051
|
exports.paginateListAnnotationStoreVersions = paginateListAnnotationStoreVersions;
|
|
5997
3052
|
exports.paginateListAnnotationStores = paginateListAnnotationStores;
|
|
@@ -6050,3 +3105,15 @@ exports.waitUntilVariantStoreCreated = waitUntilVariantStoreCreated;
|
|
|
6050
3105
|
exports.waitUntilVariantStoreDeleted = waitUntilVariantStoreDeleted;
|
|
6051
3106
|
exports.waitUntilWorkflowActive = waitUntilWorkflowActive;
|
|
6052
3107
|
exports.waitUntilWorkflowVersionActive = waitUntilWorkflowVersionActive;
|
|
3108
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
3109
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
3110
|
+
enumerable: true,
|
|
3111
|
+
get: function () { return schemas_0[k]; }
|
|
3112
|
+
});
|
|
3113
|
+
});
|
|
3114
|
+
Object.keys(errors).forEach(function (k) {
|
|
3115
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
3116
|
+
enumerable: true,
|
|
3117
|
+
get: function () { return errors[k]; }
|
|
3118
|
+
});
|
|
3119
|
+
});
|