Interface Service.CreateDatasetOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    Service.CreateDataset, Service.CreateDataset.Builder
    Enclosing class:
    Service

    public static interface Service.CreateDatasetOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String getCreatedBy()
      User creating the dataset
      com.google.protobuf.ByteString getCreatedByBytes()
      User creating the dataset
      java.lang.String getExperimentIds​(int index)
      Associated experiment IDs.
      com.google.protobuf.ByteString getExperimentIdsBytes​(int index)
      Associated experiment IDs.
      int getExperimentIdsCount()
      Associated experiment IDs.
      java.util.List<java.lang.String> getExperimentIdsList()
      Associated experiment IDs.
      java.lang.String getName()
      Dataset name
      com.google.protobuf.ByteString getNameBytes()
      Dataset name
      java.lang.String getProfile()
      Profile information (JSON)
      com.google.protobuf.ByteString getProfileBytes()
      Profile information (JSON)
      java.lang.String getSchema()
      Schema information (JSON)
      com.google.protobuf.ByteString getSchemaBytes()
      Schema information (JSON)
      java.lang.String getSource()
      Source information
      com.google.protobuf.ByteString getSourceBytes()
      Source information
      Datasets.DatasetRecordSource.SourceType getSourceType()
      Source type
      java.lang.String getTags()
      Tags to set on the dataset (JSON string mapping keys to values)
      com.google.protobuf.ByteString getTagsBytes()
      Tags to set on the dataset (JSON string mapping keys to values)
      boolean hasCreatedBy()
      User creating the dataset
      boolean hasName()
      Dataset name
      boolean hasProfile()
      Profile information (JSON)
      boolean hasSchema()
      Schema information (JSON)
      boolean hasSource()
      Source information
      boolean hasSourceType()
      Source type
      boolean hasTags()
      Tags to set on the dataset (JSON string mapping keys to values)
      • Methods 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 Detail

      • hasName

        boolean hasName()
         Dataset name
         
        optional string name = 1 [(.mlflow.validate_required) = true];
        Returns:
        Whether the name field is set.
      • getName

        java.lang.String getName()
         Dataset name
         
        optional string name = 1 [(.mlflow.validate_required) = true];
        Returns:
        The name.
      • getNameBytes

        com.google.protobuf.ByteString getNameBytes()
         Dataset name
         
        optional string name = 1 [(.mlflow.validate_required) = true];
        Returns:
        The bytes for name.
      • getExperimentIdsList

        java.util.List<java.lang.String> getExperimentIdsList()
         Associated experiment IDs. If not provided, defaults to the current active experiment.
         
        repeated string experiment_ids = 2;
        Returns:
        A list containing the experimentIds.
      • getExperimentIdsCount

        int getExperimentIdsCount()
         Associated experiment IDs. If not provided, defaults to the current active experiment.
         
        repeated string experiment_ids = 2;
        Returns:
        The count of experimentIds.
      • getExperimentIds

        java.lang.String getExperimentIds​(int index)
         Associated experiment IDs. If not provided, defaults to the current active experiment.
         
        repeated string experiment_ids = 2;
        Parameters:
        index - The index of the element to return.
        Returns:
        The experimentIds at the given index.
      • getExperimentIdsBytes

        com.google.protobuf.ByteString getExperimentIdsBytes​(int index)
         Associated experiment IDs. If not provided, defaults to the current active experiment.
         
        repeated string experiment_ids = 2;
        Parameters:
        index - The index of the value to return.
        Returns:
        The bytes of the experimentIds at the given index.
      • hasSourceType

        boolean hasSourceType()
         Source type
         
        optional .mlflow.datasets.DatasetRecordSource.SourceType source_type = 3;
        Returns:
        Whether the sourceType field is set.
      • hasSource

        boolean hasSource()
         Source information
         
        optional string source = 4;
        Returns:
        Whether the source field is set.
      • getSource

        java.lang.String getSource()
         Source information
         
        optional string source = 4;
        Returns:
        The source.
      • getSourceBytes

        com.google.protobuf.ByteString getSourceBytes()
         Source information
         
        optional string source = 4;
        Returns:
        The bytes for source.
      • hasSchema

        boolean hasSchema()
         Schema information (JSON)
         
        optional string schema = 5;
        Returns:
        Whether the schema field is set.
      • getSchema

        java.lang.String getSchema()
         Schema information (JSON)
         
        optional string schema = 5;
        Returns:
        The schema.
      • getSchemaBytes

        com.google.protobuf.ByteString getSchemaBytes()
         Schema information (JSON)
         
        optional string schema = 5;
        Returns:
        The bytes for schema.
      • hasProfile

        boolean hasProfile()
         Profile information (JSON)
         
        optional string profile = 6;
        Returns:
        Whether the profile field is set.
      • getProfile

        java.lang.String getProfile()
         Profile information (JSON)
         
        optional string profile = 6;
        Returns:
        The profile.
      • getProfileBytes

        com.google.protobuf.ByteString getProfileBytes()
         Profile information (JSON)
         
        optional string profile = 6;
        Returns:
        The bytes for profile.
      • hasCreatedBy

        boolean hasCreatedBy()
         User creating the dataset
         
        optional string created_by = 7;
        Returns:
        Whether the createdBy field is set.
      • getCreatedBy

        java.lang.String getCreatedBy()
         User creating the dataset
         
        optional string created_by = 7;
        Returns:
        The createdBy.
      • getCreatedByBytes

        com.google.protobuf.ByteString getCreatedByBytes()
         User creating the dataset
         
        optional string created_by = 7;
        Returns:
        The bytes for createdBy.
      • hasTags

        boolean hasTags()
         Tags to set on the dataset (JSON string mapping keys to values)
         
        optional string tags = 8;
        Returns:
        Whether the tags field is set.
      • getTags

        java.lang.String getTags()
         Tags to set on the dataset (JSON string mapping keys to values)
         
        optional string tags = 8;
        Returns:
        The tags.
      • getTagsBytes

        com.google.protobuf.ByteString getTagsBytes()
         Tags to set on the dataset (JSON string mapping keys to values)
         
        optional string tags = 8;
        Returns:
        The bytes for tags.