Package feast.proto.core
Interface CoreServiceProto.ListEntitiesRequest.FilterOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CoreServiceProto.ListEntitiesRequest.Filter,CoreServiceProto.ListEntitiesRequest.Filter.Builder
- Enclosing class:
- CoreServiceProto.ListEntitiesRequest
public static interface CoreServiceProto.ListEntitiesRequest.FilterOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description booleancontainsLabels(String key)Optional.Map<String,String>getLabels()Deprecated.intgetLabelsCount()Optional.Map<String,String>getLabelsMap()Optional.StringgetLabelsOrDefault(String key, String defaultValue)Optional.StringgetLabelsOrThrow(String key)Optional.StringgetProject()Optional.com.google.protobuf.ByteStringgetProjectBytes()Optional.-
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()
Optional. Specifies the name of the project to list Entities in. 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()
Optional. Specifies the name of the project to list Entities in. 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.
-
getLabelsCount
int getLabelsCount()
Optional. User defined metadata for entity. Entities with all matching labels will be returned.
map<string, string> labels = 4;
-
containsLabels
boolean containsLabels(String key)
Optional. User defined metadata for entity. Entities 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()
Optional. User defined metadata for entity. Entities with all matching labels will be returned.
map<string, string> labels = 4;
-
getLabelsOrDefault
String getLabelsOrDefault(String key, String defaultValue)
Optional. User defined metadata for entity. Entities with all matching labels will be returned.
map<string, string> labels = 4;
-
-