Package feast.proto.core
Interface CoreServiceProto.ListFeatureSetsRequest.FilterOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CoreServiceProto.ListFeatureSetsRequest.Filter,CoreServiceProto.ListFeatureSetsRequest.Filter.Builder
- Enclosing class:
- CoreServiceProto.ListFeatureSetsRequest
public static interface CoreServiceProto.ListFeatureSetsRequest.FilterOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description booleancontainsLabels(String key)User defined metadata for feature set.StringgetFeatureSetName()Name of the desired feature set.com.google.protobuf.ByteStringgetFeatureSetNameBytes()Name of the desired feature set.Map<String,String>getLabels()Deprecated.intgetLabelsCount()User defined metadata for feature set.Map<String,String>getLabelsMap()User defined metadata for feature set.StringgetLabelsOrDefault(String key, String defaultValue)User defined metadata for feature set.StringgetLabelsOrThrow(String key)User defined metadata for feature set.StringgetProject()Name of project that the feature sets belongs to.com.google.protobuf.ByteStringgetProjectBytes()Name of project that the feature sets belongs to.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
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;
-
getLabels
@Deprecated Map<String,String> getLabels()
Deprecated.UsegetLabelsMap()instead.
-
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;
-
-