Package com.databricks.api.proto.mlflow
Interface DatabricksArtifacts.ArtifactCredentialInfoOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DatabricksArtifacts.ArtifactCredentialInfo
,DatabricksArtifacts.ArtifactCredentialInfo.Builder
- Enclosing class:
- DatabricksArtifacts
public static interface DatabricksArtifacts.ArtifactCredentialInfoOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DatabricksArtifacts.ArtifactCredentialInfo.HttpHeader
getHeaders(int index)
A collection of HTTP headers that should be specified when uploading to or downloading from the specified `signed_uri`int
getHeadersCount()
A collection of HTTP headers that should be specified when uploading to or downloading from the specified `signed_uri`java.util.List<DatabricksArtifacts.ArtifactCredentialInfo.HttpHeader>
getHeadersList()
A collection of HTTP headers that should be specified when uploading to or downloading from the specified `signed_uri`DatabricksArtifacts.ArtifactCredentialInfo.HttpHeaderOrBuilder
getHeadersOrBuilder(int index)
A collection of HTTP headers that should be specified when uploading to or downloading from the specified `signed_uri`java.util.List<? extends DatabricksArtifacts.ArtifactCredentialInfo.HttpHeaderOrBuilder>
getHeadersOrBuilderList()
A collection of HTTP headers that should be specified when uploading to or downloading from the specified `signed_uri`java.lang.String
getPath()
The path, relative to the Run's artifact root location, of the artifact that can be accessed with the credentialcom.google.protobuf.ByteString
getPathBytes()
The path, relative to the Run's artifact root location, of the artifact that can be accessed with the credentialjava.lang.String
getRunId()
The ID of the MLflow Run containing the artifact that can be accessed with the credentialcom.google.protobuf.ByteString
getRunIdBytes()
The ID of the MLflow Run containing the artifact that can be accessed with the credentialjava.lang.String
getSignedUri()
The signed URI credential that provides access to the artifactcom.google.protobuf.ByteString
getSignedUriBytes()
The signed URI credential that provides access to the artifactDatabricksArtifacts.ArtifactCredentialType
getType()
The type of the signed credential URI (e.g., an AWS presigned URL or an Azure Shared Access Signature URI)boolean
hasPath()
The path, relative to the Run's artifact root location, of the artifact that can be accessed with the credentialboolean
hasRunId()
The ID of the MLflow Run containing the artifact that can be accessed with the credentialboolean
hasSignedUri()
The signed URI credential that provides access to the artifactboolean
hasType()
The type of the signed credential URI (e.g., an AWS presigned URL or an Azure Shared Access Signature URI)-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasRunId
boolean hasRunId()
The ID of the MLflow Run containing the artifact that can be accessed with the credential
optional string run_id = 1;
-
getRunId
java.lang.String getRunId()
The ID of the MLflow Run containing the artifact that can be accessed with the credential
optional string run_id = 1;
-
getRunIdBytes
com.google.protobuf.ByteString getRunIdBytes()
The ID of the MLflow Run containing the artifact that can be accessed with the credential
optional string run_id = 1;
-
hasPath
boolean hasPath()
The path, relative to the Run's artifact root location, of the artifact that can be accessed with the credential
optional string path = 2;
-
getPath
java.lang.String getPath()
The path, relative to the Run's artifact root location, of the artifact that can be accessed with the credential
optional string path = 2;
-
getPathBytes
com.google.protobuf.ByteString getPathBytes()
The path, relative to the Run's artifact root location, of the artifact that can be accessed with the credential
optional string path = 2;
-
hasSignedUri
boolean hasSignedUri()
The signed URI credential that provides access to the artifact
optional string signed_uri = 3;
-
getSignedUri
java.lang.String getSignedUri()
The signed URI credential that provides access to the artifact
optional string signed_uri = 3;
-
getSignedUriBytes
com.google.protobuf.ByteString getSignedUriBytes()
The signed URI credential that provides access to the artifact
optional string signed_uri = 3;
-
getHeadersList
java.util.List<DatabricksArtifacts.ArtifactCredentialInfo.HttpHeader> getHeadersList()
A collection of HTTP headers that should be specified when uploading to or downloading from the specified `signed_uri`
repeated .mlflow.ArtifactCredentialInfo.HttpHeader headers = 4;
-
getHeaders
DatabricksArtifacts.ArtifactCredentialInfo.HttpHeader getHeaders(int index)
A collection of HTTP headers that should be specified when uploading to or downloading from the specified `signed_uri`
repeated .mlflow.ArtifactCredentialInfo.HttpHeader headers = 4;
-
getHeadersCount
int getHeadersCount()
A collection of HTTP headers that should be specified when uploading to or downloading from the specified `signed_uri`
repeated .mlflow.ArtifactCredentialInfo.HttpHeader headers = 4;
-
getHeadersOrBuilderList
java.util.List<? extends DatabricksArtifacts.ArtifactCredentialInfo.HttpHeaderOrBuilder> getHeadersOrBuilderList()
A collection of HTTP headers that should be specified when uploading to or downloading from the specified `signed_uri`
repeated .mlflow.ArtifactCredentialInfo.HttpHeader headers = 4;
-
getHeadersOrBuilder
DatabricksArtifacts.ArtifactCredentialInfo.HttpHeaderOrBuilder getHeadersOrBuilder(int index)
A collection of HTTP headers that should be specified when uploading to or downloading from the specified `signed_uri`
repeated .mlflow.ArtifactCredentialInfo.HttpHeader headers = 4;
-
hasType
boolean hasType()
The type of the signed credential URI (e.g., an AWS presigned URL or an Azure Shared Access Signature URI)
optional .mlflow.ArtifactCredentialType type = 5;
-
getType
DatabricksArtifacts.ArtifactCredentialType getType()
The type of the signed credential URI (e.g., an AWS presigned URL or an Azure Shared Access Signature URI)
optional .mlflow.ArtifactCredentialType type = 5;
-
-