Package com.databricks.api.proto.mlflow
Interface DatabricksArtifacts.CreateMultipartUploadOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DatabricksArtifacts.CreateMultipartUpload
,DatabricksArtifacts.CreateMultipartUpload.Builder
- Enclosing class:
DatabricksArtifacts
public static interface DatabricksArtifacts.CreateMultipartUploadOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptionlong
Number of file parts (chunks of data) to upload in the initiated multipart uploadgetPath()
Artifact path, relative to the Run's artifact root location (e.g.com.google.protobuf.ByteString
Artifact path, relative to the Run's artifact root location (e.g.getRunId()
Run IDcom.google.protobuf.ByteString
Run IDboolean
Number of file parts (chunks of data) to upload in the initiated multipart uploadboolean
hasPath()
Artifact path, relative to the Run's artifact root location (e.g.boolean
hasRunId()
Run IDMethods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitialized
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
hasRunId
boolean hasRunId()Run ID
optional string run_id = 1 [(.mlflow.validate_required) = true];
- Returns:
- Whether the runId field is set.
-
getRunId
String getRunId()Run ID
optional string run_id = 1 [(.mlflow.validate_required) = true];
- Returns:
- The runId.
-
getRunIdBytes
com.google.protobuf.ByteString getRunIdBytes()Run ID
optional string run_id = 1 [(.mlflow.validate_required) = true];
- Returns:
- The bytes for runId.
-
hasPath
boolean hasPath()Artifact path, relative to the Run's artifact root location (e.g. "path/to/file")
optional string path = 2;
- Returns:
- Whether the path field is set.
-
getPath
String getPath()Artifact path, relative to the Run's artifact root location (e.g. "path/to/file")
optional string path = 2;
- Returns:
- The path.
-
getPathBytes
com.google.protobuf.ByteString getPathBytes()Artifact path, relative to the Run's artifact root location (e.g. "path/to/file")
optional string path = 2;
- Returns:
- The bytes for path.
-
hasNumParts
boolean hasNumParts()Number of file parts (chunks of data) to upload in the initiated multipart upload
optional int64 num_parts = 3 [(.mlflow.validate_required) = true];
- Returns:
- Whether the numParts field is set.
-
getNumParts
long getNumParts()Number of file parts (chunks of data) to upload in the initiated multipart upload
optional int64 num_parts = 3 [(.mlflow.validate_required) = true];
- Returns:
- The numParts.
-