Class BaseImageDependency

java.lang.Object
com.microsoft.azure.management.containerregistry.BaseImageDependency

public class BaseImageDependency extends Object
Properties that describe a base image dependency.
  • Constructor Details

    • BaseImageDependency

      public BaseImageDependency()
  • Method Details

    • type

      public BaseImageDependencyType type()
      Get the type of the base image dependency. Possible values include: 'BuildTime', 'RunTime'.
      Returns:
      the type value
    • withType

      Set the type of the base image dependency. Possible values include: 'BuildTime', 'RunTime'.
      Parameters:
      type - the type value to set
      Returns:
      the BaseImageDependency object itself.
    • registry

      public String registry()
      Get the registry login server.
      Returns:
      the registry value
    • withRegistry

      public BaseImageDependency withRegistry(String registry)
      Set the registry login server.
      Parameters:
      registry - the registry value to set
      Returns:
      the BaseImageDependency object itself.
    • repository

      public String repository()
      Get the repository name.
      Returns:
      the repository value
    • withRepository

      public BaseImageDependency withRepository(String repository)
      Set the repository name.
      Parameters:
      repository - the repository value to set
      Returns:
      the BaseImageDependency object itself.
    • tag

      public String tag()
      Get the tag name.
      Returns:
      the tag value
    • withTag

      public BaseImageDependency withTag(String tag)
      Set the tag name.
      Parameters:
      tag - the tag value to set
      Returns:
      the BaseImageDependency object itself.
    • digest

      public String digest()
      Get the sha256-based digest of the image manifest.
      Returns:
      the digest value
    • withDigest

      public BaseImageDependency withDigest(String digest)
      Set the sha256-based digest of the image manifest.
      Parameters:
      digest - the digest value to set
      Returns:
      the BaseImageDependency object itself.