Class DownloadManifestResult


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

      • DownloadManifestResult

        public DownloadManifestResult​(String digest,
                                      OciManifest manifest,
                                      com.azure.core.util.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 Detail

      • 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 com.azure.core.util.BinaryData getManifestStream()
        The manifest stream that was downloaded.
        Returns:
        The associated manifest stream.