Package com.databricks.api.proto.mlflow
Interface DatabricksArtifacts.GetCredentialsForLoggedModelDownload.ResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DatabricksArtifacts.GetCredentialsForLoggedModelDownload.Response
,DatabricksArtifacts.GetCredentialsForLoggedModelDownload.Response.Builder
- Enclosing class:
- DatabricksArtifacts.GetCredentialsForLoggedModelDownload
public static interface DatabricksArtifacts.GetCredentialsForLoggedModelDownload.ResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DatabricksArtifacts.LoggedModelArtifactCredential
getCredentials(int index)
Credentials for reading the specified artifact locationsint
getCredentialsCount()
Credentials for reading the specified artifact locationsjava.util.List<DatabricksArtifacts.LoggedModelArtifactCredential>
getCredentialsList()
Credentials for reading the specified artifact locationsDatabricksArtifacts.LoggedModelArtifactCredentialOrBuilder
getCredentialsOrBuilder(int index)
Credentials for reading the specified artifact locationsjava.util.List<? extends DatabricksArtifacts.LoggedModelArtifactCredentialOrBuilder>
getCredentialsOrBuilderList()
Credentials for reading the specified artifact locationsjava.lang.String
getNextPageToken()
Token used to fetch the next page of credentials for large requests that require paginationcom.google.protobuf.ByteString
getNextPageTokenBytes()
Token used to fetch the next page of credentials for large requests that require paginationboolean
hasNextPageToken()
Token used to fetch the next page of credentials 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
-
getCredentialsList
java.util.List<DatabricksArtifacts.LoggedModelArtifactCredential> getCredentialsList()
Credentials for reading the specified artifact locations
repeated .mlflow.LoggedModelArtifactCredential credentials = 1;
-
getCredentials
DatabricksArtifacts.LoggedModelArtifactCredential getCredentials(int index)
Credentials for reading the specified artifact locations
repeated .mlflow.LoggedModelArtifactCredential credentials = 1;
-
getCredentialsCount
int getCredentialsCount()
Credentials for reading the specified artifact locations
repeated .mlflow.LoggedModelArtifactCredential credentials = 1;
-
getCredentialsOrBuilderList
java.util.List<? extends DatabricksArtifacts.LoggedModelArtifactCredentialOrBuilder> getCredentialsOrBuilderList()
Credentials for reading the specified artifact locations
repeated .mlflow.LoggedModelArtifactCredential credentials = 1;
-
getCredentialsOrBuilder
DatabricksArtifacts.LoggedModelArtifactCredentialOrBuilder getCredentialsOrBuilder(int index)
Credentials for reading the specified artifact locations
repeated .mlflow.LoggedModelArtifactCredential credentials = 1;
-
hasNextPageToken
boolean hasNextPageToken()
Token used to fetch the next page of credentials for large requests that require pagination
optional string next_page_token = 2;
- Returns:
- Whether the nextPageToken field is set.
-
getNextPageToken
java.lang.String getNextPageToken()
Token used to fetch the next page of credentials for large requests that require pagination
optional string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
Token used to fetch the next page of credentials for large requests that require pagination
optional string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-