Package org.mlflow.api.proto
Interface MlflowArtifacts.ListArtifactsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
MlflowArtifacts.ListArtifacts
,MlflowArtifacts.ListArtifacts.Builder
- Enclosing class:
- MlflowArtifacts
public static interface MlflowArtifacts.ListArtifactsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getPath()
Filter artifacts matching this path (a relative path from the root artifact directory).com.google.protobuf.ByteString
getPathBytes()
Filter artifacts matching this path (a relative path from the root artifact directory).boolean
hasPath()
Filter artifacts matching this path (a relative path from the root artifact directory).-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasPath
boolean hasPath()
Filter artifacts matching this path (a relative path from the root artifact directory).
optional string path = 1;
- Returns:
- Whether the path field is set.
-
getPath
java.lang.String getPath()
Filter artifacts matching this path (a relative path from the root artifact directory).
optional string path = 1;
- Returns:
- The path.
-
getPathBytes
com.google.protobuf.ByteString getPathBytes()
Filter artifacts matching this path (a relative path from the root artifact directory).
optional string path = 1;
- Returns:
- The bytes for path.
-
-