Class DownloadManifestResult

java.lang.Object
com.azure.containers.containerregistry.models.DownloadManifestResult

public class DownloadManifestResult extends Object
The result from downloading an OCI manifest from the registry.
  • Constructor Details

    • DownloadManifestResult

      public DownloadManifestResult(String digest, OciManifest manifest, BinaryData manifestStream)
      Instantiate an instance of the DownloadManifestResult object.
      Parameters:
      digest - The digest of the manifest.
      manifest - The OCIManifest object.
      manifestStream - The manifest stream.
  • Method Details

    • getDigest

      public String getDigest()
      The manifest's digest, calculated by the registry.
      Returns:
      The digest.
    • getManifest

      public OciManifest getManifest()
      The OCI manifest that was downloaded.
      Returns:
      The OCIManifest object.
    • getManifestStream

      public BinaryData getManifestStream()
      The manifest stream that was downloaded.
      Returns:
      The associated manifest stream.