Package org.mlflow.api.proto
Interface Service.ListLoggedModelArtifactsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Service.ListLoggedModelArtifacts
,Service.ListLoggedModelArtifacts.Builder
- Enclosing class:
- Service
public static interface Service.ListLoggedModelArtifactsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getArtifactDirectoryPath()
Filter artifacts matching this path (a relative path from the root artifact directory).com.google.protobuf.ByteString
getArtifactDirectoryPathBytes()
Filter artifacts matching this path (a relative path from the root artifact directory).java.lang.String
getModelId()
The ID of the LoggedModel for which to list the artifactscom.google.protobuf.ByteString
getModelIdBytes()
The ID of the LoggedModel for which to list the artifactsjava.lang.String
getPageToken()
Token indicating the page of artifact results to fetchcom.google.protobuf.ByteString
getPageTokenBytes()
Token indicating the page of artifact results to fetchboolean
hasArtifactDirectoryPath()
Filter artifacts matching this path (a relative path from the root artifact directory).boolean
hasModelId()
The ID of the LoggedModel for which to list the artifactsboolean
hasPageToken()
Token indicating the page of artifact results to fetch-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasModelId
boolean hasModelId()
The ID of the LoggedModel for which to list the artifacts
optional string model_id = 1 [(.mlflow.validate_required) = true];
- Returns:
- Whether the modelId field is set.
-
getModelId
java.lang.String getModelId()
The ID of the LoggedModel for which to list the artifacts
optional string model_id = 1 [(.mlflow.validate_required) = true];
- Returns:
- The modelId.
-
getModelIdBytes
com.google.protobuf.ByteString getModelIdBytes()
The ID of the LoggedModel for which to list the artifacts
optional string model_id = 1 [(.mlflow.validate_required) = true];
- Returns:
- The bytes for modelId.
-
hasArtifactDirectoryPath
boolean hasArtifactDirectoryPath()
Filter artifacts matching this path (a relative path from the root artifact directory).
optional string artifact_directory_path = 2;
- Returns:
- Whether the artifactDirectoryPath field is set.
-
getArtifactDirectoryPath
java.lang.String getArtifactDirectoryPath()
Filter artifacts matching this path (a relative path from the root artifact directory).
optional string artifact_directory_path = 2;
- Returns:
- The artifactDirectoryPath.
-
getArtifactDirectoryPathBytes
com.google.protobuf.ByteString getArtifactDirectoryPathBytes()
Filter artifacts matching this path (a relative path from the root artifact directory).
optional string artifact_directory_path = 2;
- Returns:
- The bytes for artifactDirectoryPath.
-
hasPageToken
boolean hasPageToken()
Token indicating the page of artifact results to fetch
optional string page_token = 3;
- Returns:
- Whether the pageToken field is set.
-
getPageToken
java.lang.String getPageToken()
Token indicating the page of artifact results to fetch
optional string page_token = 3;
- Returns:
- The pageToken.
-
getPageTokenBytes
com.google.protobuf.ByteString getPageTokenBytes()
Token indicating the page of artifact results to fetch
optional string page_token = 3;
- Returns:
- The bytes for pageToken.
-
-