Package feast.proto.core
Interface CoreServiceProto.ListFeaturesRequest.FilterOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CoreServiceProto.ListFeaturesRequest.Filter,CoreServiceProto.ListFeaturesRequest.Filter.Builder
- Enclosing class:
- CoreServiceProto.ListFeaturesRequest
public static interface CoreServiceProto.ListFeaturesRequest.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.StringgetEntities(int index)List of entities contained within the featureSet that the feature belongs to.com.google.protobuf.ByteStringgetEntitiesBytes(int index)List of entities contained within the featureSet that the feature belongs to.intgetEntitiesCount()List of entities contained within the featureSet that the feature belongs to.List<String>getEntitiesList()List of entities contained within the featureSet that the feature belongs to.Map<String,String>getLabels()Deprecated.intgetLabelsCount()User defined metadata for feature.Map<String,String>getLabelsMap()User defined metadata for feature.StringgetLabelsOrDefault(String key, String defaultValue)User defined metadata for feature.StringgetLabelsOrThrow(String key)User defined metadata for feature.StringgetProject()Name of project that the feature tables belongs to.com.google.protobuf.ByteStringgetProjectBytes()Name of project that the feature tables belongs to.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getLabelsCount
int getLabelsCount()
User defined metadata for feature. Features with all matching labels will be returned.
map<string, string> labels = 1;
-
containsLabels
boolean containsLabels(String key)
User defined metadata for feature. Features with all matching labels will be returned.
map<string, string> labels = 1;
-
getLabels
@Deprecated Map<String,String> getLabels()
Deprecated.UsegetLabelsMap()instead.
-
getLabelsMap
Map<String,String> getLabelsMap()
User defined metadata for feature. Features with all matching labels will be returned.
map<string, string> labels = 1;
-
getLabelsOrDefault
String getLabelsOrDefault(String key, String defaultValue)
User defined metadata for feature. Features with all matching labels will be returned.
map<string, string> labels = 1;
-
getLabelsOrThrow
String getLabelsOrThrow(String key)
User defined metadata for feature. Features with all matching labels will be returned.
map<string, string> labels = 1;
-
getEntitiesList
List<String> getEntitiesList()
List of entities contained within the featureSet that the feature belongs to. Only feature tables with these entities will be searched for features.
repeated string entities = 2;- Returns:
- A list containing the entities.
-
getEntitiesCount
int getEntitiesCount()
List of entities contained within the featureSet that the feature belongs to. Only feature tables with these entities will be searched for features.
repeated string entities = 2;- Returns:
- The count of entities.
-
getEntities
String getEntities(int index)
List of entities contained within the featureSet that the feature belongs to. Only feature tables with these entities will be searched for features.
repeated string entities = 2;- Parameters:
index- The index of the element to return.- Returns:
- The entities at the given index.
-
getEntitiesBytes
com.google.protobuf.ByteString getEntitiesBytes(int index)
List of entities contained within the featureSet that the feature belongs to. Only feature tables with these entities will be searched for features.
repeated string entities = 2;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the entities at the given index.
-
getProject
String getProject()
Name of project that the feature tables belongs to. Filtering on projects is disabled. 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 tables belongs to. Filtering on projects is disabled. 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.
-
-