Package | Description |
---|---|
com.dnanexus |
Provides low- and high-level bindings to the DNAnexus Platform.
|
Modifier and Type | Method and Description |
---|---|
DXSearch.FindExecutionsRequestBuilder<T> |
DXSearch.FindExecutionsRequestBuilder.createdAfter(Date date)
Only return executions created after the specified date.
|
DXSearch.FindExecutionsRequestBuilder<T> |
DXSearch.FindExecutionsRequestBuilder.createdBefore(Date date)
Only return executions created before the specified date.
|
static DXSearch.FindExecutionsRequestBuilder<DXExecution> |
DXSearch.findExecutions()
Returns a builder object for finding executions (jobs or analyses) that match certain
criteria.
|
static DXSearch.FindExecutionsRequestBuilder<DXExecution> |
DXSearch.findExecutionsWithEnvironment(DXEnvironment env)
Returns a builder object for finding executions that match certain criteria, using the
specified environment.
|
static DXSearch.FindExecutionsRequestBuilder<DXJob> |
DXSearch.findJobs()
Deprecated.
Use
DXSearch.findExecutions() in conjunction with
withClassJob() instead. |
static DXSearch.FindExecutionsRequestBuilder<DXJob> |
DXSearch.findJobsWithEnvironment(DXEnvironment env)
Deprecated.
Use
DXSearch.findExecutionsWithEnvironment(DXEnvironment) in conjunction
with withClassJob() instead. |
DXSearch.FindExecutionsRequestBuilder<T> |
DXSearch.FindExecutionsRequestBuilder.includeDescribeOutput()
Requests the default describe data for each matching execution when the query is run.
|
DXSearch.FindExecutionsRequestBuilder<T> |
DXSearch.FindExecutionsRequestBuilder.includeSubjobs(boolean includeSubjobs)
Specifies whether subjobs should be included among the results (default is true).
|
DXSearch.FindExecutionsRequestBuilder<T> |
DXSearch.FindExecutionsRequestBuilder.inProject(DXContainer project)
Only returns executions in the specified project.
|
DXSearch.FindExecutionsRequestBuilder<T> |
DXSearch.FindExecutionsRequestBuilder.launchedBy(String user)
Only returns executions launched by the specified user.
|
DXSearch.FindExecutionsRequestBuilder<T> |
DXSearch.FindExecutionsRequestBuilder.nameMatchesExactly(String name)
Only returns executions whose names exactly equal the specified string.
|
DXSearch.FindExecutionsRequestBuilder<T> |
DXSearch.FindExecutionsRequestBuilder.nameMatchesGlob(String glob)
Only returns executions whose names match the specified glob.
|
DXSearch.FindExecutionsRequestBuilder<T> |
DXSearch.FindExecutionsRequestBuilder.nameMatchesRegexp(String regexp)
Only returns executions whose names match the specified regexp.
|
DXSearch.FindExecutionsRequestBuilder<T> |
DXSearch.FindExecutionsRequestBuilder.nameMatchesRegexp(String regexp,
boolean caseInsensitive)
Only returns executions whose names match the specified regexp (optionally allowing the
match to be case insensitive).
|
DXSearch.FindExecutionsRequestBuilder<DXAnalysis> |
DXSearch.FindExecutionsRequestBuilder.withClassAnalysis()
Only returns analyses (filters out jobs).
|
DXSearch.FindExecutionsRequestBuilder<DXJob> |
DXSearch.FindExecutionsRequestBuilder.withClassJob()
Only returns jobs (filters out analyses).
|
DXSearch.FindExecutionsRequestBuilder<T> |
DXSearch.FindExecutionsRequestBuilder.withExecutable(DXExecutable<?> executable)
Only return executions with the specified executable.
|
DXSearch.FindExecutionsRequestBuilder<T> |
DXSearch.FindExecutionsRequestBuilder.withIdsIn(Collection<? extends DXExecution> executions)
Only returns executions whose IDs match one of the specified executions.
|
DXSearch.FindExecutionsRequestBuilder<T> |
DXSearch.FindExecutionsRequestBuilder.withOriginJob(DXJob originJob)
Only return executions with the specified origin job.
|
DXSearch.FindExecutionsRequestBuilder<T> |
DXSearch.FindExecutionsRequestBuilder.withParentAnalysis(DXAnalysis parentAnalysis)
Only return executions with the specified parent analysis.
|
DXSearch.FindExecutionsRequestBuilder<T> |
DXSearch.FindExecutionsRequestBuilder.withParentJob(DXJob parentJob)
Only return executions with the specified parent job.
|
DXSearch.FindExecutionsRequestBuilder<T> |
DXSearch.FindExecutionsRequestBuilder.withProperties(DXSearch.PropertiesQuery propertiesQuery)
Only returns executions matching the specified properties query.
|
DXSearch.FindExecutionsRequestBuilder<T> |
DXSearch.FindExecutionsRequestBuilder.withProperty(String propertyKey)
Only returns executions where the specified property is present.
|
DXSearch.FindExecutionsRequestBuilder<T> |
DXSearch.FindExecutionsRequestBuilder.withProperty(String propertyKey,
String propertyValue)
Only returns executions where the specified property has the specified value.
|
DXSearch.FindExecutionsRequestBuilder<T> |
DXSearch.FindExecutionsRequestBuilder.withRootExecution(DXExecution rootExecution)
Only return executions with the specified root execution.
|
DXSearch.FindExecutionsRequestBuilder<T> |
DXSearch.FindExecutionsRequestBuilder.withState(AnalysisState... states)
Only returns executions in one of the specified analysis states.
|
DXSearch.FindExecutionsRequestBuilder<T> |
DXSearch.FindExecutionsRequestBuilder.withState(JobState... states)
Only returns executions in one of the specified job states.
|
DXSearch.FindExecutionsRequestBuilder<T> |
DXSearch.FindExecutionsRequestBuilder.withTag(String tag)
Only returns executions with the specified tag.
|
DXSearch.FindExecutionsRequestBuilder<T> |
DXSearch.FindExecutionsRequestBuilder.withTags(DXSearch.TagsQuery tagsQuery)
Only returns executions matching the specified tags query.
|
Copyright © 2023. All Rights Reserved.