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 Modifier and Type Method Description StringgetFeatureSetName()Name of the desired feature set.com.google.protobuf.ByteStringgetFeatureSetNameBytes()Name of the desired 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.
-
-