Package org.mlflow.api.proto
Interface Service.DatasetOrBuilder
- 
- All Superinterfaces:
- com.google.protobuf.MessageLiteOrBuilder,- com.google.protobuf.MessageOrBuilder
 - All Known Implementing Classes:
- Service.Dataset,- Service.Dataset.Builder
 - Enclosing class:
- Service
 
 public static interface Service.DatasetOrBuilder extends com.google.protobuf.MessageOrBuilder
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetDigest()Dataset digest, e.g.com.google.protobuf.ByteStringgetDigestBytes()Dataset digest, e.g.java.lang.StringgetName()The name of the dataset.com.google.protobuf.ByteStringgetNameBytes()The name of the dataset.java.lang.StringgetProfile()The profile of the dataset.com.google.protobuf.ByteStringgetProfileBytes()The profile of the dataset.java.lang.StringgetSchema()The schema of the dataset.com.google.protobuf.ByteStringgetSchemaBytes()The schema of the dataset.java.lang.StringgetSource()Source information for the dataset.com.google.protobuf.ByteStringgetSourceBytes()Source information for the dataset.java.lang.StringgetSourceType()The type of the dataset source, e.g.com.google.protobuf.ByteStringgetSourceTypeBytes()The type of the dataset source, e.g.booleanhasDigest()Dataset digest, e.g.booleanhasName()The name of the dataset.booleanhasProfile()The profile of the dataset.booleanhasSchema()The schema of the dataset.booleanhasSource()Source information for the dataset.booleanhasSourceType()The type of the dataset source, e.g.- 
Methods inherited from interface com.google.protobuf.MessageOrBuilderfindInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
 
- 
 
- 
- 
- 
Method Detail- 
hasNameboolean hasName() The name of the dataset. E.g. “my.uc.table@2” “nyc-taxi-dataset”, “fantastic-elk-3” optional string name = 1 [(.mlflow.validate_required) = true];- Returns:
- Whether the name field is set.
 
 - 
getNamejava.lang.String getName() The name of the dataset. E.g. “my.uc.table@2” “nyc-taxi-dataset”, “fantastic-elk-3” optional string name = 1 [(.mlflow.validate_required) = true];- Returns:
- The name.
 
 - 
getNameBytescom.google.protobuf.ByteString getNameBytes() The name of the dataset. E.g. “my.uc.table@2” “nyc-taxi-dataset”, “fantastic-elk-3” optional string name = 1 [(.mlflow.validate_required) = true];- Returns:
- The bytes for name.
 
 - 
hasDigestboolean hasDigest() Dataset digest, e.g. an md5 hash of the dataset that uniquely identifies it within datasets of the same name. optional string digest = 2 [(.mlflow.validate_required) = true];- Returns:
- Whether the digest field is set.
 
 - 
getDigestjava.lang.String getDigest() Dataset digest, e.g. an md5 hash of the dataset that uniquely identifies it within datasets of the same name. optional string digest = 2 [(.mlflow.validate_required) = true];- Returns:
- The digest.
 
 - 
getDigestBytescom.google.protobuf.ByteString getDigestBytes() Dataset digest, e.g. an md5 hash of the dataset that uniquely identifies it within datasets of the same name. optional string digest = 2 [(.mlflow.validate_required) = true];- Returns:
- The bytes for digest.
 
 - 
hasSourceTypeboolean hasSourceType() The type of the dataset source, e.g. ‘databricks-uc-table’, ‘DBFS’, ‘S3’, ... optional string source_type = 3 [(.mlflow.validate_required) = true];- Returns:
- Whether the sourceType field is set.
 
 - 
getSourceTypejava.lang.String getSourceType() The type of the dataset source, e.g. ‘databricks-uc-table’, ‘DBFS’, ‘S3’, ... optional string source_type = 3 [(.mlflow.validate_required) = true];- Returns:
- The sourceType.
 
 - 
getSourceTypeBytescom.google.protobuf.ByteString getSourceTypeBytes() The type of the dataset source, e.g. ‘databricks-uc-table’, ‘DBFS’, ‘S3’, ... optional string source_type = 3 [(.mlflow.validate_required) = true];- Returns:
- The bytes for sourceType.
 
 - 
hasSourceboolean hasSource() Source information for the dataset. Note that the source may not exactly reproduce the dataset if it was transformed / modified before use with MLflow. optional string source = 4 [(.mlflow.validate_required) = true];- Returns:
- Whether the source field is set.
 
 - 
getSourcejava.lang.String getSource() Source information for the dataset. Note that the source may not exactly reproduce the dataset if it was transformed / modified before use with MLflow. optional string source = 4 [(.mlflow.validate_required) = true];- Returns:
- The source.
 
 - 
getSourceBytescom.google.protobuf.ByteString getSourceBytes() Source information for the dataset. Note that the source may not exactly reproduce the dataset if it was transformed / modified before use with MLflow. optional string source = 4 [(.mlflow.validate_required) = true];- Returns:
- The bytes for source.
 
 - 
hasSchemaboolean hasSchema() The schema of the dataset. E.g., MLflow ColSpec JSON for a dataframe, MLflow TensorSpec JSON for an ndarray, or another schema format. optional string schema = 5;- Returns:
- Whether the schema field is set.
 
 - 
getSchemajava.lang.String getSchema() The schema of the dataset. E.g., MLflow ColSpec JSON for a dataframe, MLflow TensorSpec JSON for an ndarray, or another schema format. optional string schema = 5;- Returns:
- The schema.
 
 - 
getSchemaBytescom.google.protobuf.ByteString getSchemaBytes() The schema of the dataset. E.g., MLflow ColSpec JSON for a dataframe, MLflow TensorSpec JSON for an ndarray, or another schema format. optional string schema = 5;- Returns:
- The bytes for schema.
 
 - 
hasProfileboolean hasProfile() The profile of the dataset. Summary statistics for the dataset, such as the number of rows in a table, the mean / std / mode of each column in a table, or the number of elements in an array. optional string profile = 6;- Returns:
- Whether the profile field is set.
 
 - 
getProfilejava.lang.String getProfile() The profile of the dataset. Summary statistics for the dataset, such as the number of rows in a table, the mean / std / mode of each column in a table, or the number of elements in an array. optional string profile = 6;- Returns:
- The profile.
 
 - 
getProfileBytescom.google.protobuf.ByteString getProfileBytes() The profile of the dataset. Summary statistics for the dataset, such as the number of rows in a table, the mean / std / mode of each column in a table, or the number of elements in an array. optional string profile = 6;- Returns:
- The bytes for profile.
 
 
- 
 
-