Class BaseContainer

java.lang.Object
com.azure.resourcemanager.appcontainers.models.BaseContainer
All Implemented Interfaces:
com.azure.json.JsonSerializable<BaseContainer>
Direct Known Subclasses:
Container, InitContainer

public class BaseContainer extends Object implements com.azure.json.JsonSerializable<BaseContainer>
Container App base container definition.
  • Constructor Details

    • BaseContainer

      public BaseContainer()
      Creates an instance of BaseContainer class.
  • Method Details

    • image

      public String image()
      Get the image property: Container image tag.
      Returns:
      the image value.
    • withImage

      public BaseContainer withImage(String image)
      Set the image property: Container image tag.
      Parameters:
      image - the image value to set.
      Returns:
      the BaseContainer object itself.
    • name

      public String name()
      Get the name property: Custom container name.
      Returns:
      the name value.
    • withName

      public BaseContainer withName(String name)
      Set the name property: Custom container name.
      Parameters:
      name - the name value to set.
      Returns:
      the BaseContainer object itself.
    • command

      public List<String> command()
      Get the command property: Container start command.
      Returns:
      the command value.
    • withCommand

      public BaseContainer withCommand(List<String> command)
      Set the command property: Container start command.
      Parameters:
      command - the command value to set.
      Returns:
      the BaseContainer object itself.
    • args

      public List<String> args()
      Get the args property: Container start command arguments.
      Returns:
      the args value.
    • withArgs

      public BaseContainer withArgs(List<String> args)
      Set the args property: Container start command arguments.
      Parameters:
      args - the args value to set.
      Returns:
      the BaseContainer object itself.
    • env

      public List<EnvironmentVar> env()
      Get the env property: Container environment variables.
      Returns:
      the env value.
    • withEnv

      public BaseContainer withEnv(List<EnvironmentVar> env)
      Set the env property: Container environment variables.
      Parameters:
      env - the env value to set.
      Returns:
      the BaseContainer object itself.
    • resources

      public ContainerResources resources()
      Get the resources property: Container resource requirements.
      Returns:
      the resources value.
    • withResources

      public BaseContainer withResources(ContainerResources resources)
      Set the resources property: Container resource requirements.
      Parameters:
      resources - the resources value to set.
      Returns:
      the BaseContainer object itself.
    • volumeMounts

      public List<VolumeMount> volumeMounts()
      Get the volumeMounts property: Container volume mounts.
      Returns:
      the volumeMounts value.
    • withVolumeMounts

      public BaseContainer withVolumeMounts(List<VolumeMount> volumeMounts)
      Set the volumeMounts property: Container volume mounts.
      Parameters:
      volumeMounts - the volumeMounts value to set.
      Returns:
      the BaseContainer object itself.
    • validate

      public void validate()
      Validates the instance.
      Throws:
      IllegalArgumentException - thrown if the instance is not valid.
    • toJson

      public com.azure.json.JsonWriter toJson(com.azure.json.JsonWriter jsonWriter) throws IOException
      Specified by:
      toJson in interface com.azure.json.JsonSerializable<BaseContainer>
      Throws:
      IOException
    • fromJson

      public static BaseContainer fromJson(com.azure.json.JsonReader jsonReader) throws IOException
      Reads an instance of BaseContainer from the JsonReader.
      Parameters:
      jsonReader - The JsonReader being read.
      Returns:
      An instance of BaseContainer if the JsonReader was pointing to an instance of it, or null if it was pointing to JSON null.
      Throws:
      IOException - If an error occurs while reading the BaseContainer.