Class TaskContainerSettings

java.lang.Object
com.microsoft.azure.management.batch.TaskContainerSettings

public class TaskContainerSettings extends Object
The container settings for a task.
  • Constructor Details

    • TaskContainerSettings

      public TaskContainerSettings()
  • Method Details

    • containerRunOptions

      public String containerRunOptions()
      Get these additional options are supplied as arguments to the "docker create" command, in addition to those controlled by the Batch Service.
      Returns:
      the containerRunOptions value
    • withContainerRunOptions

      public TaskContainerSettings withContainerRunOptions(String containerRunOptions)
      Set these additional options are supplied as arguments to the "docker create" command, in addition to those controlled by the Batch Service.
      Parameters:
      containerRunOptions - the containerRunOptions value to set
      Returns:
      the TaskContainerSettings object itself.
    • imageName

      public String imageName()
      Get this is the full image reference, as would be specified to "docker pull". If no tag is provided as part of the image name, the tag ":latest" is used as a default.
      Returns:
      the imageName value
    • withImageName

      public TaskContainerSettings withImageName(String imageName)
      Set this is the full image reference, as would be specified to "docker pull". If no tag is provided as part of the image name, the tag ":latest" is used as a default.
      Parameters:
      imageName - the imageName value to set
      Returns:
      the TaskContainerSettings object itself.
    • registry

      public ContainerRegistry registry()
      Get this setting can be omitted if was already provided at pool creation.
      Returns:
      the registry value
    • withRegistry

      public TaskContainerSettings withRegistry(ContainerRegistry registry)
      Set this setting can be omitted if was already provided at pool creation.
      Parameters:
      registry - the registry value to set
      Returns:
      the TaskContainerSettings object itself.
    • workingDirectory

      public ContainerWorkingDirectory workingDirectory()
      Get possible values include: 'TaskWorkingDirectory', 'ContainerImageDefault'.
      Returns:
      the workingDirectory value
    • withWorkingDirectory

      public TaskContainerSettings withWorkingDirectory(ContainerWorkingDirectory workingDirectory)
      Set possible values include: 'TaskWorkingDirectory', 'ContainerImageDefault'.
      Parameters:
      workingDirectory - the workingDirectory value to set
      Returns:
      the TaskContainerSettings object itself.