Interface CoreServiceProto.ListFeatureSetsRequest.FilterOrBuilder

    • Method Detail

      • getProject

        String getProject()
         Name of project that the feature sets belongs to. This can be one of
         - [project_name]
         - *
         If an asterisk is provided, filtering on projects will be disabled. All projects will
         be matched. It is NOT possible to provide an asterisk with a string in order to do
         pattern matching.
         If unspecified this field will default to the default project 'default'.
         
        string project = 3;
        Returns:
        The project.
      • getProjectBytes

        com.google.protobuf.ByteString getProjectBytes()
         Name of project that the feature sets belongs to. This can be one of
         - [project_name]
         - *
         If an asterisk is provided, filtering on projects will be disabled. All projects will
         be matched. It is NOT possible to provide an asterisk with a string in order to do
         pattern matching.
         If unspecified this field will default to the default project 'default'.
         
        string project = 3;
        Returns:
        The bytes for project.
      • getFeatureSetName

        String getFeatureSetName()
         Name of the desired feature set. Asterisks can be used as wildcards in the name.
         Matching on names is only permitted if a specific project is defined. It is disallowed
         If the project name is set to "*"
         e.g.
         - * can be used to match all feature sets
         - my-feature-set* can be used to match all features prefixed by "my-feature-set"
         - my-feature-set-6 can be used to select a single feature set
         
        string feature_set_name = 1;
        Returns:
        The featureSetName.
      • getFeatureSetNameBytes

        com.google.protobuf.ByteString getFeatureSetNameBytes()
         Name of the desired feature set. Asterisks can be used as wildcards in the name.
         Matching on names is only permitted if a specific project is defined. It is disallowed
         If the project name is set to "*"
         e.g.
         - * can be used to match all feature sets
         - my-feature-set* can be used to match all features prefixed by "my-feature-set"
         - my-feature-set-6 can be used to select a single feature set
         
        string feature_set_name = 1;
        Returns:
        The bytes for featureSetName.
      • getLabelsCount

        int getLabelsCount()
         User defined metadata for feature set.
         Feature sets with all matching labels will be returned.
         
        map<string, string> labels = 4;
      • containsLabels

        boolean containsLabels​(String key)
         User defined metadata for feature set.
         Feature sets with all matching labels will be returned.
         
        map<string, string> labels = 4;
      • getLabelsMap

        Map<String,​String> getLabelsMap()
         User defined metadata for feature set.
         Feature sets with all matching labels will be returned.
         
        map<string, string> labels = 4;
      • getLabelsOrDefault

        String getLabelsOrDefault​(String key,
                                  String defaultValue)
         User defined metadata for feature set.
         Feature sets with all matching labels will be returned.
         
        map<string, string> labels = 4;
      • getLabelsOrThrow

        String getLabelsOrThrow​(String key)
         User defined metadata for feature set.
         Feature sets with all matching labels will be returned.
         
        map<string, string> labels = 4;
      • getStatusValue

        int getStatusValue()
         Filter by FeatureSet's current status
         Project and Feature Set name still must be specified (could be "*")
         
        .feast.core.FeatureSetStatus status = 5;
        Returns:
        The enum numeric value on the wire for status.
      • getStatus

        FeatureSetProto.FeatureSetStatus getStatus()
         Filter by FeatureSet's current status
         Project and Feature Set name still must be specified (could be "*")
         
        .feast.core.FeatureSetStatus status = 5;
        Returns:
        The status.