Interface MlflowArtifacts.GetPresignedDownloadUrl.ResponseOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods Deprecated Methods 
      Modifier and Type Method Description
      boolean containsHeaders​(java.lang.String key)
      Optional headers that must be included in the download request.
      long getFileSize()
      Optional size of the file in bytes.
      java.util.Map<java.lang.String,​java.lang.String> getHeaders()
      Deprecated.
      int getHeadersCount()
      Optional headers that must be included in the download request.
      java.util.Map<java.lang.String,​java.lang.String> getHeadersMap()
      Optional headers that must be included in the download request.
      java.lang.String getHeadersOrDefault​(java.lang.String key, java.lang.String defaultValue)
      Optional headers that must be included in the download request.
      java.lang.String getHeadersOrThrow​(java.lang.String key)
      Optional headers that must be included in the download request.
      java.lang.String getUrl()
      The presigned URL for downloading the artifact directly from cloud storage.
      com.google.protobuf.ByteString getUrlBytes()
      The presigned URL for downloading the artifact directly from cloud storage.
      boolean hasFileSize()
      Optional size of the file in bytes.
      boolean hasUrl()
      The presigned URL for downloading the artifact directly from cloud storage.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • hasUrl

        boolean hasUrl()
         The presigned URL for downloading the artifact directly from cloud storage.
         
        optional string url = 1;
        Returns:
        Whether the url field is set.
      • getUrl

        java.lang.String getUrl()
         The presigned URL for downloading the artifact directly from cloud storage.
         
        optional string url = 1;
        Returns:
        The url.
      • getUrlBytes

        com.google.protobuf.ByteString getUrlBytes()
         The presigned URL for downloading the artifact directly from cloud storage.
         
        optional string url = 1;
        Returns:
        The bytes for url.
      • getHeadersCount

        int getHeadersCount()
         Optional headers that must be included in the download request.
         
        map<string, string> headers = 2;
      • containsHeaders

        boolean containsHeaders​(java.lang.String key)
         Optional headers that must be included in the download request.
         
        map<string, string> headers = 2;
      • getHeaders

        @Deprecated
        java.util.Map<java.lang.String,​java.lang.String> getHeaders()
        Deprecated.
        Use getHeadersMap() instead.
      • getHeadersMap

        java.util.Map<java.lang.String,​java.lang.String> getHeadersMap()
         Optional headers that must be included in the download request.
         
        map<string, string> headers = 2;
      • getHeadersOrDefault

        java.lang.String getHeadersOrDefault​(java.lang.String key,
                                             java.lang.String defaultValue)
         Optional headers that must be included in the download request.
         
        map<string, string> headers = 2;
      • getHeadersOrThrow

        java.lang.String getHeadersOrThrow​(java.lang.String key)
         Optional headers that must be included in the download request.
         
        map<string, string> headers = 2;
      • hasFileSize

        boolean hasFileSize()
         Optional size of the file in bytes.
         
        optional int64 file_size = 3;
        Returns:
        Whether the fileSize field is set.
      • getFileSize

        long getFileSize()
         Optional size of the file in bytes.
         
        optional int64 file_size = 3;
        Returns:
        The fileSize.