Uses of Class
com.azure.compute.batch.models.BatchJobCreateContent
Packages that use BatchJobCreateContent
Package
Description
Package containing the classes for Batch.
Package containing the data models for Batch.
-
Uses of BatchJobCreateContent in com.azure.compute.batch
Methods in com.azure.compute.batch with parameters of type BatchJobCreateContentModifier and TypeMethodDescriptionBatchAsyncClient.createJob
(BatchJobCreateContent job) Creates a Job to the specified Account.BatchAsyncClient.createJob
(BatchJobCreateContent job, CreateBatchJobOptions options) Creates a Job to the specified Account.void
BatchClient.createJob
(BatchJobCreateContent job) Creates a Job to the specified Account.void
BatchClient.createJob
(BatchJobCreateContent job, CreateBatchJobOptions options) Creates a Job to the specified Account. -
Uses of BatchJobCreateContent in com.azure.compute.batch.models
Methods in com.azure.compute.batch.models that return BatchJobCreateContentModifier and TypeMethodDescriptionstatic BatchJobCreateContent
BatchJobCreateContent.fromJson
(com.azure.json.JsonReader jsonReader) Reads an instance of BatchJobCreateContent from the JsonReader.BatchJobCreateContent.setAllowTaskPreemption
(Boolean allowTaskPreemption) Set the allowTaskPreemption property: Whether Tasks in this job can be preempted by other high priority jobs.BatchJobCreateContent.setCommonEnvironmentSettings
(List<EnvironmentSetting> commonEnvironmentSettings) Set the commonEnvironmentSettings property: The list of common environment variable settings.BatchJobCreateContent.setConstraints
(BatchJobConstraints constraints) Set the constraints property: The execution constraints for the Job.BatchJobCreateContent.setDisplayName
(String displayName) Set the displayName property: The display name for the Job.BatchJobCreateContent.setJobManagerTask
(BatchJobManagerTask jobManagerTask) Set the jobManagerTask property: Details of a Job Manager Task to be launched when the Job is started.BatchJobCreateContent.setJobPreparationTask
(BatchJobPreparationTask jobPreparationTask) Set the jobPreparationTask property: The Job Preparation Task.BatchJobCreateContent.setJobReleaseTask
(BatchJobReleaseTask jobReleaseTask) Set the jobReleaseTask property: The Job Release Task.BatchJobCreateContent.setMaxParallelTasks
(Integer maxParallelTasks) Set the maxParallelTasks property: The maximum number of tasks that can be executed in parallel for the job.BatchJobCreateContent.setMetadata
(List<MetadataItem> metadata) Set the metadata property: A list of name-value pairs associated with the Job as metadata.BatchJobCreateContent.setNetworkConfiguration
(BatchJobNetworkConfiguration networkConfiguration) Set the networkConfiguration property: The network configuration for the Job.BatchJobCreateContent.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.BatchJobCreateContent.setOnTaskFailure
(OnBatchTaskFailure onTaskFailure) Set the onTaskFailure property: The action the Batch service should take when any Task in the Job fails.BatchJobCreateContent.setPriority
(Integer priority) Set the priority property: The priority of the Job.BatchJobCreateContent.setUsesTaskDependencies
(Boolean usesTaskDependencies) Set the usesTaskDependencies property: Whether Tasks in the Job can define dependencies on each other.