Interface SavedDatasetProto.SavedDatasetSpecOrBuilder

    • Method Detail

      • getName

        String getName()
         Name of the dataset. Must be unique since it's possible to overwrite dataset by name
         
        string name = 1;
        Returns:
        The name.
      • getNameBytes

        com.google.protobuf.ByteString getNameBytes()
         Name of the dataset. Must be unique since it's possible to overwrite dataset by name
         
        string name = 1;
        Returns:
        The bytes for name.
      • getProject

        String getProject()
         Name of Feast project that this Dataset belongs to.
         
        string project = 2;
        Returns:
        The project.
      • getProjectBytes

        com.google.protobuf.ByteString getProjectBytes()
         Name of Feast project that this Dataset belongs to.
         
        string project = 2;
        Returns:
        The bytes for project.
      • getFeaturesList

        List<String> getFeaturesList()
         list of feature references with format "<view name>:<feature name>"
         
        repeated string features = 3;
        Returns:
        A list containing the features.
      • getFeaturesCount

        int getFeaturesCount()
         list of feature references with format "<view name>:<feature name>"
         
        repeated string features = 3;
        Returns:
        The count of features.
      • getFeatures

        String getFeatures​(int index)
         list of feature references with format "<view name>:<feature name>"
         
        repeated string features = 3;
        Parameters:
        index - The index of the element to return.
        Returns:
        The features at the given index.
      • getFeaturesBytes

        com.google.protobuf.ByteString getFeaturesBytes​(int index)
         list of feature references with format "<view name>:<feature name>"
         
        repeated string features = 3;
        Parameters:
        index - The index of the value to return.
        Returns:
        The bytes of the features at the given index.
      • getJoinKeysList

        List<String> getJoinKeysList()
         entity columns + request columns from all feature views used during retrieval
         
        repeated string join_keys = 4;
        Returns:
        A list containing the joinKeys.
      • getJoinKeysCount

        int getJoinKeysCount()
         entity columns + request columns from all feature views used during retrieval
         
        repeated string join_keys = 4;
        Returns:
        The count of joinKeys.
      • getJoinKeys

        String getJoinKeys​(int index)
         entity columns + request columns from all feature views used during retrieval
         
        repeated string join_keys = 4;
        Parameters:
        index - The index of the element to return.
        Returns:
        The joinKeys at the given index.
      • getJoinKeysBytes

        com.google.protobuf.ByteString getJoinKeysBytes​(int index)
         entity columns + request columns from all feature views used during retrieval
         
        repeated string join_keys = 4;
        Parameters:
        index - The index of the value to return.
        Returns:
        The bytes of the joinKeys at the given index.
      • getFullFeatureNames

        boolean getFullFeatureNames()
         Whether full feature names are used in stored data
         
        bool full_feature_names = 5;
        Returns:
        The fullFeatureNames.
      • hasStorage

        boolean hasStorage()
        .feast.core.SavedDatasetStorage storage = 6;
        Returns:
        Whether the storage field is set.
      • getFeatureServiceName

        String getFeatureServiceName()
         Optional and only populated if generated from a feature service fetch
         
        string feature_service_name = 8;
        Returns:
        The featureServiceName.
      • getFeatureServiceNameBytes

        com.google.protobuf.ByteString getFeatureServiceNameBytes()
         Optional and only populated if generated from a feature service fetch
         
        string feature_service_name = 8;
        Returns:
        The bytes for featureServiceName.
      • getTagsCount

        int getTagsCount()
         User defined metadata
         
        map<string, string> tags = 7;
      • containsTags

        boolean containsTags​(String key)
         User defined metadata
         
        map<string, string> tags = 7;
      • getTagsMap

        Map<String,​String> getTagsMap()
         User defined metadata
         
        map<string, string> tags = 7;
      • getTagsOrDefault

        String getTagsOrDefault​(String key,
                                String defaultValue)
         User defined metadata
         
        map<string, string> tags = 7;
      • getTagsOrThrow

        String getTagsOrThrow​(String key)
         User defined metadata
         
        map<string, string> tags = 7;