/** * @public * @enum */ export declare const Accelerators: { readonly GPU: "GPU"; }; /** * @public */ export type Accelerators = (typeof Accelerators)[keyof typeof Accelerators]; /** * @public * @enum */ export declare const ShareStatus: { /** * The share is activated */ readonly ACTIVATING: "ACTIVATING"; /** * The share is active and can be used */ readonly ACTIVE: "ACTIVE"; /** * The share has been deleted */ readonly DELETED: "DELETED"; /** * The share is being deleted */ readonly DELETING: "DELETING"; /** * The share has failed to activate or delete */ readonly FAILED: "FAILED"; /** * The share has been created but is not yet active */ readonly PENDING: "PENDING"; }; /** * @public */ export type ShareStatus = (typeof ShareStatus)[keyof typeof ShareStatus]; /** * @public * @enum */ export declare const ReadSetActivationJobStatus: { readonly CANCELLED: "CANCELLED"; readonly CANCELLING: "CANCELLING"; readonly COMPLETED: "COMPLETED"; readonly COMPLETED_WITH_FAILURES: "COMPLETED_WITH_FAILURES"; readonly FAILED: "FAILED"; readonly IN_PROGRESS: "IN_PROGRESS"; readonly SUBMITTED: "SUBMITTED"; }; /** * @public */ export type ReadSetActivationJobStatus = (typeof ReadSetActivationJobStatus)[keyof typeof ReadSetActivationJobStatus]; /** * @public * @enum */ export declare const ReadSetActivationJobItemStatus: { readonly FAILED: "FAILED"; readonly FINISHED: "FINISHED"; readonly IN_PROGRESS: "IN_PROGRESS"; readonly NOT_STARTED: "NOT_STARTED"; }; /** * @public */ export type ReadSetActivationJobItemStatus = (typeof ReadSetActivationJobItemStatus)[keyof typeof ReadSetActivationJobItemStatus]; /** * @public * @enum */ export declare const JobStatus: { /** * The Job was cancelled */ readonly CANCELLED: "CANCELLED"; /** * The Job has completed */ readonly COMPLETED: "COMPLETED"; /** * The Job completed with failed runs */ readonly COMPLETED_WITH_FAILURES: "COMPLETED_WITH_FAILURES"; /** * The Job failed */ readonly FAILED: "FAILED"; /** * The Job is executing */ readonly IN_PROGRESS: "IN_PROGRESS"; /** * The Job has been submitted to run */ readonly SUBMITTED: "SUBMITTED"; }; /** * @public */ export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus]; /** * @public * @enum */ export declare const EncryptionType: { /** * KMS */ readonly KMS: "KMS"; }; /** * @public */ export type EncryptionType = (typeof EncryptionType)[keyof typeof EncryptionType]; /** * @public * @enum */ export declare const StoreFormat: { /** * GFF3 Format */ readonly GFF: "GFF"; /** * TSV Format */ readonly TSV: "TSV"; /** * VCF Format */ readonly VCF: "VCF"; }; /** * @public */ export type StoreFormat = (typeof StoreFormat)[keyof typeof StoreFormat]; /** * @public * @enum */ export declare const AnnotationType: { /** * Contains contig and 1-base position */ readonly CHR_POS: "CHR_POS"; /** * Contains contig, 1-base position, ref and alt allele information */ readonly CHR_POS_REF_ALT: "CHR_POS_REF_ALT"; /** * Contains contig, start, and end positions. Coordinates are 1-based */ readonly CHR_START_END_ONE_BASE: "CHR_START_END_ONE_BASE"; /** * Contains contig, start, end, ref and alt allele information. Coordinates are 1-based */ readonly CHR_START_END_REF_ALT_ONE_BASE: "CHR_START_END_REF_ALT_ONE_BASE"; /** * Contains contig, start, end, ref and alt allele information. Coordinates are 0-based */ readonly CHR_START_END_REF_ALT_ZERO_BASE: "CHR_START_END_REF_ALT_ZERO_BASE"; /** * Contains contig, start, and end positions. Coordinates are 0-based */ readonly CHR_START_END_ZERO_BASE: "CHR_START_END_ZERO_BASE"; /** * Generic text file. No genomic information */ readonly GENERIC: "GENERIC"; }; /** * @public */ export type AnnotationType = (typeof AnnotationType)[keyof typeof AnnotationType]; /** * @public * @enum */ export declare const FormatToHeaderKey: { readonly ALT: "ALT"; readonly CHR: "CHR"; readonly END: "END"; readonly POS: "POS"; readonly REF: "REF"; readonly START: "START"; }; /** * @public */ export type FormatToHeaderKey = (typeof FormatToHeaderKey)[keyof typeof FormatToHeaderKey]; /** * @public * @enum */ export declare const SchemaValueType: { /** * BOOLEAN type */ readonly BOOLEAN: "BOOLEAN"; /** * DOUBLE type */ readonly DOUBLE: "DOUBLE"; /** * FLOAT type */ readonly FLOAT: "FLOAT"; /** * INT type */ readonly INT: "INT"; /** * LONG type */ readonly LONG: "LONG"; /** * STRING type */ readonly STRING: "STRING"; }; /** * @public */ export type SchemaValueType = (typeof SchemaValueType)[keyof typeof SchemaValueType]; /** * @public * @enum */ export declare const StoreStatus: { /** * The Store is active */ readonly ACTIVE: "ACTIVE"; /** * The Store is being created */ readonly CREATING: "CREATING"; /** * The Store is deleting */ readonly DELETING: "DELETING"; /** * The Store creation failed */ readonly FAILED: "FAILED"; /** * The Store is updating */ readonly UPDATING: "UPDATING"; }; /** * @public */ export type StoreStatus = (typeof StoreStatus)[keyof typeof StoreStatus]; /** * @public * @enum */ export declare const VersionStatus: { /** * The Version is active */ readonly ACTIVE: "ACTIVE"; /** * The Version is being created */ readonly CREATING: "CREATING"; /** * The Version is deleting */ readonly DELETING: "DELETING"; /** * The Version creation failed */ readonly FAILED: "FAILED"; /** * The Version is updating */ readonly UPDATING: "UPDATING"; }; /** * @public */ export type VersionStatus = (typeof VersionStatus)[keyof typeof VersionStatus]; /** * @public * @enum */ export declare const BatchStatus: { readonly CANCELLED: "CANCELLED"; readonly CREATING: "CREATING"; readonly FAILED: "FAILED"; readonly INPROGRESS: "INPROGRESS"; readonly PENDING: "PENDING"; readonly PROCESSED: "PROCESSED"; readonly RUNS_DELETED: "RUNS_DELETED"; readonly RUNS_DELETING: "RUNS_DELETING"; readonly STOPPING: "STOPPING"; readonly SUBMITTING: "SUBMITTING"; }; /** * @public */ export type BatchStatus = (typeof BatchStatus)[keyof typeof BatchStatus]; /** * @public * @enum */ export declare const CacheBehavior: { readonly CACHE_ALWAYS: "CACHE_ALWAYS"; readonly CACHE_ON_FAILURE: "CACHE_ON_FAILURE"; }; /** * @public */ export type CacheBehavior = (typeof CacheBehavior)[keyof typeof CacheBehavior]; /** * @public * @enum */ export declare const ReadSetPartSource: { readonly SOURCE1: "SOURCE1"; readonly SOURCE2: "SOURCE2"; }; /** * @public */ export type ReadSetPartSource = (typeof ReadSetPartSource)[keyof typeof ReadSetPartSource]; /** * @public * @enum */ export declare const ConfigurationStatus: { readonly ACTIVE: "ACTIVE"; readonly CREATING: "CREATING"; readonly DELETED: "DELETED"; readonly DELETING: "DELETING"; readonly FAILED: "FAILED"; readonly UPDATING: "UPDATING"; }; /** * @public */ export type ConfigurationStatus = (typeof ConfigurationStatus)[keyof typeof ConfigurationStatus]; /** * @public * @enum */ export declare const FileType: { readonly BAM: "BAM"; readonly CRAM: "CRAM"; readonly FASTQ: "FASTQ"; readonly UBAM: "UBAM"; }; /** * @public */ export type FileType = (typeof FileType)[keyof typeof FileType]; /** * @public * @enum */ export declare const RunCacheStatus: { readonly ACTIVE: "ACTIVE"; readonly DELETED: "DELETED"; readonly FAILED: "FAILED"; }; /** * @public */ export type RunCacheStatus = (typeof RunCacheStatus)[keyof typeof RunCacheStatus]; /** * @public * @enum */ export declare const ETagAlgorithmFamily: { readonly MD5UP: "MD5up"; readonly SHA256UP: "SHA256up"; readonly SHA512UP: "SHA512up"; }; /** * @public */ export type ETagAlgorithmFamily = (typeof ETagAlgorithmFamily)[keyof typeof ETagAlgorithmFamily]; /** * @public * @enum */ export declare const SequenceStoreStatus: { readonly ACTIVE: "ACTIVE"; readonly CREATING: "CREATING"; readonly DELETING: "DELETING"; readonly FAILED: "FAILED"; readonly UPDATING: "UPDATING"; }; /** * @public */ export type SequenceStoreStatus = (typeof SequenceStoreStatus)[keyof typeof SequenceStoreStatus]; /** * @public * @enum */ export declare const SourceReferenceType: { readonly BRANCH: "BRANCH"; readonly COMMIT: "COMMIT"; readonly TAG: "TAG"; }; /** * @public */ export type SourceReferenceType = (typeof SourceReferenceType)[keyof typeof SourceReferenceType]; /** * @public * @enum */ export declare const WorkflowEngine: { readonly CWL: "CWL"; readonly NEXTFLOW: "NEXTFLOW"; readonly WDL: "WDL"; readonly WDL_LENIENT: "WDL_LENIENT"; }; /** * @public */ export type WorkflowEngine = (typeof WorkflowEngine)[keyof typeof WorkflowEngine]; /** * @public * @enum */ export declare const StorageType: { readonly DYNAMIC: "DYNAMIC"; readonly STATIC: "STATIC"; }; /** * @public */ export type StorageType = (typeof StorageType)[keyof typeof StorageType]; /** * @public * @enum */ export declare const WorkflowStatus: { readonly ACTIVE: "ACTIVE"; readonly CREATING: "CREATING"; readonly DELETED: "DELETED"; readonly FAILED: "FAILED"; readonly INACTIVE: "INACTIVE"; readonly UPDATING: "UPDATING"; }; /** * @public */ export type WorkflowStatus = (typeof WorkflowStatus)[keyof typeof WorkflowStatus]; /** * @public * @enum */ export declare const CreationType: { readonly IMPORT: "IMPORT"; readonly UPLOAD: "UPLOAD"; }; /** * @public */ export type CreationType = (typeof CreationType)[keyof typeof CreationType]; /** * @public * @enum */ export declare const RunLogLevel: { readonly ALL: "ALL"; readonly ERROR: "ERROR"; readonly FATAL: "FATAL"; readonly OFF: "OFF"; }; /** * @public */ export type RunLogLevel = (typeof RunLogLevel)[keyof typeof RunLogLevel]; /** * @public * @enum */ export declare const NetworkingMode: { readonly RESTRICTED: "RESTRICTED"; readonly VPC: "VPC"; }; /** * @public */ export type NetworkingMode = (typeof NetworkingMode)[keyof typeof NetworkingMode]; /** * @public * @enum */ export declare const RunRetentionMode: { readonly REMOVE: "REMOVE"; readonly RETAIN: "RETAIN"; }; /** * @public */ export type RunRetentionMode = (typeof RunRetentionMode)[keyof typeof RunRetentionMode]; /** * @public * @enum */ export declare const ScratchStorageMode: { readonly LOCAL: "LOCAL"; readonly SHARED: "SHARED"; }; /** * @public */ export type ScratchStorageMode = (typeof ScratchStorageMode)[keyof typeof ScratchStorageMode]; /** * @public * @enum */ export declare const WorkflowType: { readonly PRIVATE: "PRIVATE"; readonly READY2RUN: "READY2RUN"; }; /** * @public */ export type WorkflowType = (typeof WorkflowType)[keyof typeof WorkflowType]; /** * @public * @enum */ export declare const ETagAlgorithm: { readonly BAM_MD5UP: "BAM_MD5up"; readonly BAM_SHA256UP: "BAM_SHA256up"; readonly BAM_SHA512UP: "BAM_SHA512up"; readonly CRAM_MD5UP: "CRAM_MD5up"; readonly CRAM_SHA256UP: "CRAM_SHA256up"; readonly CRAM_SHA512UP: "CRAM_SHA512up"; readonly FASTQ_MD5UP: "FASTQ_MD5up"; readonly FASTQ_SHA256UP: "FASTQ_SHA256up"; readonly FASTQ_SHA512UP: "FASTQ_SHA512up"; }; /** * @public */ export type ETagAlgorithm = (typeof ETagAlgorithm)[keyof typeof ETagAlgorithm]; /** * @public * @enum */ export declare const ReadSetExportJobItemStatus: { readonly FAILED: "FAILED"; readonly FINISHED: "FINISHED"; readonly IN_PROGRESS: "IN_PROGRESS"; readonly NOT_STARTED: "NOT_STARTED"; }; /** * @public */ export type ReadSetExportJobItemStatus = (typeof ReadSetExportJobItemStatus)[keyof typeof ReadSetExportJobItemStatus]; /** * @public * @enum */ export declare const ReadSetExportJobStatus: { readonly CANCELLED: "CANCELLED"; readonly CANCELLING: "CANCELLING"; readonly COMPLETED: "COMPLETED"; readonly COMPLETED_WITH_FAILURES: "COMPLETED_WITH_FAILURES"; readonly FAILED: "FAILED"; readonly IN_PROGRESS: "IN_PROGRESS"; readonly SUBMITTED: "SUBMITTED"; }; /** * @public */ export type ReadSetExportJobStatus = (typeof ReadSetExportJobStatus)[keyof typeof ReadSetExportJobStatus]; /** * @public * @enum */ export declare const ShareResourceType: { /** * The share is on an annotation store */ readonly ANNOTATION_STORE: "ANNOTATION_STORE"; /** * The share is on a variant store */ readonly VARIANT_STORE: "VARIANT_STORE"; /** * The share is on a workflow */ readonly WORKFLOW: "WORKFLOW"; }; /** * @public */ export type ShareResourceType = (typeof ShareResourceType)[keyof typeof ShareResourceType]; /** * @public * @enum */ export declare const ReadSetFile: { readonly INDEX: "INDEX"; readonly SOURCE1: "SOURCE1"; readonly SOURCE2: "SOURCE2"; }; /** * @public */ export type ReadSetFile = (typeof ReadSetFile)[keyof typeof ReadSetFile]; /** * @public * @enum */ export declare const ReadSetImportJobItemStatus: { readonly FAILED: "FAILED"; readonly FINISHED: "FINISHED"; readonly IN_PROGRESS: "IN_PROGRESS"; readonly NOT_STARTED: "NOT_STARTED"; }; /** * @public */ export type ReadSetImportJobItemStatus = (typeof ReadSetImportJobItemStatus)[keyof typeof ReadSetImportJobItemStatus]; /** * @public * @enum */ export declare const ReadSetImportJobStatus: { readonly CANCELLED: "CANCELLED"; readonly CANCELLING: "CANCELLING"; readonly COMPLETED: "COMPLETED"; readonly COMPLETED_WITH_FAILURES: "COMPLETED_WITH_FAILURES"; readonly FAILED: "FAILED"; readonly IN_PROGRESS: "IN_PROGRESS"; readonly SUBMITTED: "SUBMITTED"; }; /** * @public */ export type ReadSetImportJobStatus = (typeof ReadSetImportJobStatus)[keyof typeof ReadSetImportJobStatus]; /** * @public * @enum */ export declare const ReadSetStatus: { readonly ACTIVATING: "ACTIVATING"; readonly ACTIVE: "ACTIVE"; readonly ARCHIVED: "ARCHIVED"; readonly DELETED: "DELETED"; readonly DELETING: "DELETING"; readonly PROCESSING_UPLOAD: "PROCESSING_UPLOAD"; readonly UPLOAD_FAILED: "UPLOAD_FAILED"; }; /** * @public */ export type ReadSetStatus = (typeof ReadSetStatus)[keyof typeof ReadSetStatus]; /** * @public * @enum */ export declare const ReferenceFile: { readonly INDEX: "INDEX"; readonly SOURCE: "SOURCE"; }; /** * @public */ export type ReferenceFile = (typeof ReferenceFile)[keyof typeof ReferenceFile]; /** * @public * @enum */ export declare const ReferenceImportJobItemStatus: { readonly FAILED: "FAILED"; readonly FINISHED: "FINISHED"; readonly IN_PROGRESS: "IN_PROGRESS"; readonly NOT_STARTED: "NOT_STARTED"; }; /** * @public */ export type ReferenceImportJobItemStatus = (typeof ReferenceImportJobItemStatus)[keyof typeof ReferenceImportJobItemStatus]; /** * @public * @enum */ export declare const ReferenceImportJobStatus: { readonly CANCELLED: "CANCELLED"; readonly CANCELLING: "CANCELLING"; readonly COMPLETED: "COMPLETED"; readonly COMPLETED_WITH_FAILURES: "COMPLETED_WITH_FAILURES"; readonly FAILED: "FAILED"; readonly IN_PROGRESS: "IN_PROGRESS"; readonly SUBMITTED: "SUBMITTED"; }; /** * @public */ export type ReferenceImportJobStatus = (typeof ReferenceImportJobStatus)[keyof typeof ReferenceImportJobStatus]; /** * @public * @enum */ export declare const ReferenceCreationType: { readonly IMPORT: "IMPORT"; }; /** * @public */ export type ReferenceCreationType = (typeof ReferenceCreationType)[keyof typeof ReferenceCreationType]; /** * @public * @enum */ export declare const ReferenceStatus: { readonly ACTIVE: "ACTIVE"; readonly DELETED: "DELETED"; readonly DELETING: "DELETING"; }; /** * @public */ export type ReferenceStatus = (typeof ReferenceStatus)[keyof typeof ReferenceStatus]; /** * @public * @enum */ export declare const RunExport: { readonly DEFINITION: "DEFINITION"; }; /** * @public */ export type RunExport = (typeof RunExport)[keyof typeof RunExport]; /** * @public * @enum */ export declare const RunStatus: { readonly CANCELLED: "CANCELLED"; readonly COMPLETED: "COMPLETED"; readonly DELETED: "DELETED"; readonly FAILED: "FAILED"; readonly PENDING: "PENDING"; readonly RUNNING: "RUNNING"; readonly STARTING: "STARTING"; readonly STOPPING: "STOPPING"; }; /** * @public */ export type RunStatus = (typeof RunStatus)[keyof typeof RunStatus]; /** * @public * @enum */ export declare const TaskStatus: { readonly CANCELLED: "CANCELLED"; readonly COMPLETED: "COMPLETED"; readonly FAILED: "FAILED"; readonly PENDING: "PENDING"; readonly RUNNING: "RUNNING"; readonly STARTING: "STARTING"; readonly STOPPING: "STOPPING"; }; /** * @public */ export type TaskStatus = (typeof TaskStatus)[keyof typeof TaskStatus]; /** * @public * @enum */ export declare const StoreType: { readonly REFERENCE_STORE: "REFERENCE_STORE"; readonly SEQUENCE_STORE: "SEQUENCE_STORE"; }; /** * @public */ export type StoreType = (typeof StoreType)[keyof typeof StoreType]; /** * @public * @enum */ export declare const WorkflowExport: { readonly DEFINITION: "DEFINITION"; readonly README: "README"; }; /** * @public */ export type WorkflowExport = (typeof WorkflowExport)[keyof typeof WorkflowExport]; /** * @public * @enum */ export declare const SubmissionStatus: { readonly CANCEL_FAILED: "CANCEL_FAILED"; readonly CANCEL_SUCCESS: "CANCEL_SUCCESS"; readonly DELETE_FAILED: "DELETE_FAILED"; readonly DELETE_SUCCESS: "DELETE_SUCCESS"; readonly FAILED: "FAILED"; readonly SUCCESS: "SUCCESS"; }; /** * @public */ export type SubmissionStatus = (typeof SubmissionStatus)[keyof typeof SubmissionStatus]; /** * @public * @enum */ export declare const ResourceOwner: { /** * The resource owner is an account other than the caller */ readonly OTHER: "OTHER"; /** * The resource owner is the calling account */ readonly SELF: "SELF"; }; /** * @public */ export type ResourceOwner = (typeof ResourceOwner)[keyof typeof ResourceOwner];