Uses of Class
com.azure.compute.batch.models.BatchJob
Packages that use BatchJob
Package
Description
Package containing the classes for Batch.
Package containing the data models for Batch.
-
Uses of BatchJob in com.azure.compute.batch
Methods in com.azure.compute.batch that return BatchJobModifier and TypeMethodDescriptionGets information about the specified Job.BatchClient.getJob
(String jobId, GetBatchJobOptions options, com.azure.core.http.RequestConditions requestConditions) Gets information about the specified Job.Methods in com.azure.compute.batch that return types with arguments of type BatchJobModifier and TypeMethodDescriptionGets information about the specified Job.BatchAsyncClient.getJob
(String jobId, GetBatchJobOptions options, com.azure.core.http.RequestConditions requestConditions) Gets information about the specified Job.com.azure.core.http.rest.PagedFlux
<BatchJob> BatchAsyncClient.listJobs()
Lists all of the Jobs in the specified Account.com.azure.core.http.rest.PagedFlux
<BatchJob> BatchAsyncClient.listJobs
(ListBatchJobsOptions options) Lists all of the Jobs in the specified Account.com.azure.core.http.rest.PagedIterable
<BatchJob> BatchClient.listJobs()
Lists all of the Jobs in the specified Account.com.azure.core.http.rest.PagedIterable
<BatchJob> BatchClient.listJobs
(ListBatchJobsOptions options) Lists all of the Jobs in the specified Account.com.azure.core.http.rest.PagedFlux
<BatchJob> BatchAsyncClient.listJobsFromSchedule
(String jobScheduleId) Lists the Jobs that have been created under the specified Job Schedule.com.azure.core.http.rest.PagedFlux
<BatchJob> BatchAsyncClient.listJobsFromSchedule
(String jobScheduleId, ListBatchJobsFromScheduleOptions options) Lists the Jobs that have been created under the specified Job Schedule.com.azure.core.http.rest.PagedIterable
<BatchJob> BatchClient.listJobsFromSchedule
(String jobScheduleId) Lists the Jobs that have been created under the specified Job Schedule.com.azure.core.http.rest.PagedIterable
<BatchJob> BatchClient.listJobsFromSchedule
(String jobScheduleId, ListBatchJobsFromScheduleOptions options) Lists the Jobs that have been created under the specified Job Schedule.Methods in com.azure.compute.batch with parameters of type BatchJobModifier and TypeMethodDescriptionBatchAsyncClient.replaceJob
(String jobId, BatchJob job) Updates the properties of the specified Job.BatchAsyncClient.replaceJob
(String jobId, BatchJob job, ReplaceBatchJobOptions options, com.azure.core.http.RequestConditions requestConditions) Updates the properties of the specified Job.void
BatchClient.replaceJob
(String jobId, BatchJob job) Updates the properties of the specified Job.void
BatchClient.replaceJob
(String jobId, BatchJob job, ReplaceBatchJobOptions options, com.azure.core.http.RequestConditions requestConditions) Updates the properties of the specified Job. -
Uses of BatchJob in com.azure.compute.batch.models
Methods in com.azure.compute.batch.models that return BatchJobModifier and TypeMethodDescriptionstatic BatchJob
BatchJob.fromJson
(com.azure.json.JsonReader jsonReader) Reads an instance of BatchJob from the JsonReader.BatchJob.setAllowTaskPreemption
(Boolean allowTaskPreemption) Set the allowTaskPreemption property: Whether Tasks in this job can be preempted by other high priority jobs.BatchJob.setConstraints
(BatchJobConstraints constraints) Set the constraints property: The execution constraints for the Job.BatchJob.setMaxParallelTasks
(Integer maxParallelTasks) Set the maxParallelTasks property: The maximum number of tasks that can be executed in parallel for the job.BatchJob.setMetadata
(List<MetadataItem> metadata) Set the metadata property: A list of name-value pairs associated with the Job as metadata.BatchJob.setOnAllTasksComplete
(OnAllBatchTasksComplete onAllTasksComplete) Set the onAllTasksComplete property: The action the Batch service should take when all Tasks in the Job are in the completed state.BatchJob.setPriority
(Integer priority) Set the priority property: The priority of the Job.