Package org.mlflow.api.proto
Interface MlflowArtifacts.GetPresignedDownloadUrl.ResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
MlflowArtifacts.GetPresignedDownloadUrl.Response,MlflowArtifacts.GetPresignedDownloadUrl.Response.Builder
- Enclosing class:
- MlflowArtifacts.GetPresignedDownloadUrl
public static interface MlflowArtifacts.GetPresignedDownloadUrl.ResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description booleancontainsHeaders(java.lang.String key)Optional headers that must be included in the download request.longgetFileSize()Optional size of the file in bytes.java.util.Map<java.lang.String,java.lang.String>getHeaders()Deprecated.intgetHeadersCount()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.StringgetHeadersOrDefault(java.lang.String key, java.lang.String defaultValue)Optional headers that must be included in the download request.java.lang.StringgetHeadersOrThrow(java.lang.String key)Optional headers that must be included in the download request.java.lang.StringgetUrl()The presigned URL for downloading the artifact directly from cloud storage.com.google.protobuf.ByteStringgetUrlBytes()The presigned URL for downloading the artifact directly from cloud storage.booleanhasFileSize()Optional size of the file in bytes.booleanhasUrl()The presigned URL for downloading the artifact directly from cloud storage.-
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.UsegetHeadersMap()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.
-
-