Package org.mlflow.api.proto
Interface Service.ListArtifacts.ResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Service.ListArtifacts.Response
,Service.ListArtifacts.Response.Builder
- Enclosing class:
- Service.ListArtifacts
public static interface Service.ListArtifacts.ResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Service.FileInfo
getFiles(int index)
File location and metadata for artifacts.int
getFilesCount()
File location and metadata for artifacts.java.util.List<Service.FileInfo>
getFilesList()
File location and metadata for artifacts.Service.FileInfoOrBuilder
getFilesOrBuilder(int index)
File location and metadata for artifacts.java.util.List<? extends Service.FileInfoOrBuilder>
getFilesOrBuilderList()
File location and metadata for artifacts.java.lang.String
getNextPageToken()
Token that can be used to retrieve the next page of artifact resultscom.google.protobuf.ByteString
getNextPageTokenBytes()
Token that can be used to retrieve the next page of artifact resultsjava.lang.String
getRootUri()
Root artifact directory for the run.com.google.protobuf.ByteString
getRootUriBytes()
Root artifact directory for the run.boolean
hasNextPageToken()
Token that can be used to retrieve the next page of artifact resultsboolean
hasRootUri()
Root artifact directory for the run.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasRootUri
boolean hasRootUri()
Root artifact directory for the run.
optional string root_uri = 1;
- Returns:
- Whether the rootUri field is set.
-
getRootUri
java.lang.String getRootUri()
Root artifact directory for the run.
optional string root_uri = 1;
- Returns:
- The rootUri.
-
getRootUriBytes
com.google.protobuf.ByteString getRootUriBytes()
Root artifact directory for the run.
optional string root_uri = 1;
- Returns:
- The bytes for rootUri.
-
getFilesList
java.util.List<Service.FileInfo> getFilesList()
File location and metadata for artifacts.
repeated .mlflow.FileInfo files = 2;
-
getFiles
Service.FileInfo getFiles(int index)
File location and metadata for artifacts.
repeated .mlflow.FileInfo files = 2;
-
getFilesCount
int getFilesCount()
File location and metadata for artifacts.
repeated .mlflow.FileInfo files = 2;
-
getFilesOrBuilderList
java.util.List<? extends Service.FileInfoOrBuilder> getFilesOrBuilderList()
File location and metadata for artifacts.
repeated .mlflow.FileInfo files = 2;
-
getFilesOrBuilder
Service.FileInfoOrBuilder getFilesOrBuilder(int index)
File location and metadata for artifacts.
repeated .mlflow.FileInfo files = 2;
-
hasNextPageToken
boolean hasNextPageToken()
Token that can be used to retrieve the next page of artifact results
optional string next_page_token = 3;
- Returns:
- Whether the nextPageToken field is set.
-
getNextPageToken
java.lang.String getNextPageToken()
Token that can be used to retrieve the next page of artifact results
optional string next_page_token = 3;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
Token that can be used to retrieve the next page of artifact results
optional string next_page_token = 3;
- Returns:
- The bytes for nextPageToken.
-
-