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 Modifier and Type Method Description StringgetName()Name of the feature view.com.google.protobuf.ByteStringgetNameBytes()Name of the 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 featuresbooleanhasRequestDataSource()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;
-
-