Package feast.proto.core
Interface RequestFeatureViewProto.RequestFeatureViewSpecOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
RequestFeatureViewProto.RequestFeatureViewSpec,RequestFeatureViewProto.RequestFeatureViewSpec.Builder
- Enclosing class:
- RequestFeatureViewProto
public static interface RequestFeatureViewProto.RequestFeatureViewSpecOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description booleancontainsTags(String key)User defined metadata.StringgetDescription()Description of the request feature view.com.google.protobuf.ByteStringgetDescriptionBytes()Description of the request feature view.StringgetName()Name of the feature view.com.google.protobuf.ByteStringgetNameBytes()Name of the feature view.StringgetOwner()Owner of the request feature view.com.google.protobuf.ByteStringgetOwnerBytes()Owner of the request feature view.StringgetProject()Name of Feast project that this feature view belongs to.com.google.protobuf.ByteStringgetProjectBytes()Name of Feast project that this feature view belongs to.DataSourceProto.DataSourcegetRequestDataSource()Request data which contains the underlying data schema and list of associated featuresDataSourceProto.DataSourceOrBuildergetRequestDataSourceOrBuilder()Request data which contains the underlying data schema and list of associated featuresMap<String,String>getTags()Deprecated.intgetTagsCount()User defined metadata.Map<String,String>getTagsMap()User defined metadata.StringgetTagsOrDefault(String key, String defaultValue)User defined metadata.StringgetTagsOrThrow(String key)User defined metadata.booleanhasRequestDataSource()Request data which contains the underlying data schema and list of associated features-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
Name of the feature view. Must be unique. Not updated.
string name = 1;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Name of the feature view. Must be unique. Not updated.
string name = 1;- Returns:
- The bytes for name.
-
getProject
String getProject()
Name of Feast project that this feature view belongs to.
string project = 2;- Returns:
- The project.
-
getProjectBytes
com.google.protobuf.ByteString getProjectBytes()
Name of Feast project that this feature view belongs to.
string project = 2;- Returns:
- The bytes for project.
-
hasRequestDataSource
boolean hasRequestDataSource()
Request data which contains the underlying data schema and list of associated features
.feast.core.DataSource request_data_source = 3;- Returns:
- Whether the requestDataSource field is set.
-
getRequestDataSource
DataSourceProto.DataSource getRequestDataSource()
Request data which contains the underlying data schema and list of associated features
.feast.core.DataSource request_data_source = 3;- Returns:
- The requestDataSource.
-
getRequestDataSourceOrBuilder
DataSourceProto.DataSourceOrBuilder getRequestDataSourceOrBuilder()
Request data which contains the underlying data schema and list of associated features
.feast.core.DataSource request_data_source = 3;
-
getDescription
String getDescription()
Description of the request feature view.
string description = 4;- Returns:
- The description.
-
getDescriptionBytes
com.google.protobuf.ByteString getDescriptionBytes()
Description of the request feature view.
string description = 4;- Returns:
- The bytes for description.
-
getTagsCount
int getTagsCount()
User defined metadata.
map<string, string> tags = 5;
-
containsTags
boolean containsTags(String key)
User defined metadata.
map<string, string> tags = 5;
-
getTags
@Deprecated Map<String,String> getTags()
Deprecated.UsegetTagsMap()instead.
-
getTagsOrDefault
String getTagsOrDefault(String key, String defaultValue)
User defined metadata.
map<string, string> tags = 5;
-
getTagsOrThrow
String getTagsOrThrow(String key)
User defined metadata.
map<string, string> tags = 5;
-
getOwner
String getOwner()
Owner of the request feature view.
string owner = 6;- Returns:
- The owner.
-
getOwnerBytes
com.google.protobuf.ByteString getOwnerBytes()
Owner of the request feature view.
string owner = 6;- Returns:
- The bytes for owner.
-
-