Package com.databricks.api.proto.mlflow
Interface DatabricksArtifacts.GetCredentialsForLoggedModelDownloadOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DatabricksArtifacts.GetCredentialsForLoggedModelDownload
,DatabricksArtifacts.GetCredentialsForLoggedModelDownload.Builder
- Enclosing class:
- DatabricksArtifacts
public static interface DatabricksArtifacts.GetCredentialsForLoggedModelDownloadOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getModelId()
The ID of the LoggedModel for which to fetch artifact read credentialscom.google.protobuf.ByteString
getModelIdBytes()
The ID of the LoggedModel for which to fetch artifact read credentialsjava.lang.String
getPageToken()
Token specifying the page of credentials to fetch for large requests that require paginationcom.google.protobuf.ByteString
getPageTokenBytes()
Token specifying the page of credentials to fetch for large requests that require paginationjava.lang.String
getPaths(int index)
The artifact paths, relative to the LoggedModel's artifact root location, for which to fetch artifact read credentialscom.google.protobuf.ByteString
getPathsBytes(int index)
The artifact paths, relative to the LoggedModel's artifact root location, for which to fetch artifact read credentialsint
getPathsCount()
The artifact paths, relative to the LoggedModel's artifact root location, for which to fetch artifact read credentialsjava.util.List<java.lang.String>
getPathsList()
The artifact paths, relative to the LoggedModel's artifact root location, for which to fetch artifact read credentialsboolean
hasModelId()
The ID of the LoggedModel for which to fetch artifact read credentialsboolean
hasPageToken()
Token specifying the page of credentials to fetch for large requests that require pagination-
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 fetch artifact read credentials
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 fetch artifact read credentials
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 fetch artifact read credentials
optional string model_id = 1 [(.mlflow.validate_required) = true];
- Returns:
- The bytes for modelId.
-
getPathsList
java.util.List<java.lang.String> getPathsList()
The artifact paths, relative to the LoggedModel's artifact root location, for which to fetch artifact read credentials
repeated string paths = 2;
- Returns:
- A list containing the paths.
-
getPathsCount
int getPathsCount()
The artifact paths, relative to the LoggedModel's artifact root location, for which to fetch artifact read credentials
repeated string paths = 2;
- Returns:
- The count of paths.
-
getPaths
java.lang.String getPaths(int index)
The artifact paths, relative to the LoggedModel's artifact root location, for which to fetch artifact read credentials
repeated string paths = 2;
- Parameters:
index
- The index of the element to return.- Returns:
- The paths at the given index.
-
getPathsBytes
com.google.protobuf.ByteString getPathsBytes(int index)
The artifact paths, relative to the LoggedModel's artifact root location, for which to fetch artifact read credentials
repeated string paths = 2;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the paths at the given index.
-
hasPageToken
boolean hasPageToken()
Token specifying the page of credentials to fetch for large requests that require pagination
optional string page_token = 3;
- Returns:
- Whether the pageToken field is set.
-
getPageToken
java.lang.String getPageToken()
Token specifying the page of credentials to fetch for large requests that require pagination
optional string page_token = 3;
- Returns:
- The pageToken.
-
getPageTokenBytes
com.google.protobuf.ByteString getPageTokenBytes()
Token specifying the page of credentials to fetch for large requests that require pagination
optional string page_token = 3;
- Returns:
- The bytes for pageToken.
-
-