Package feast.proto.serving
Interface ServingAPIProto.GetOnlineFeaturesRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ServingAPIProto.GetOnlineFeaturesRequest,ServingAPIProto.GetOnlineFeaturesRequest.Builder
- Enclosing class:
- ServingAPIProto
public static interface ServingAPIProto.GetOnlineFeaturesRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ServingAPIProto.GetOnlineFeaturesRequest.EntityRowgetEntityRows(int index)List of entity rows, containing entity id and timestamp data.intgetEntityRowsCount()List of entity rows, containing entity id and timestamp data.List<ServingAPIProto.GetOnlineFeaturesRequest.EntityRow>getEntityRowsList()List of entity rows, containing entity id and timestamp data.ServingAPIProto.GetOnlineFeaturesRequest.EntityRowOrBuildergetEntityRowsOrBuilder(int index)List of entity rows, containing entity id and timestamp data.List<? extends ServingAPIProto.GetOnlineFeaturesRequest.EntityRowOrBuilder>getEntityRowsOrBuilderList()List of entity rows, containing entity id and timestamp data.ServingAPIProto.FeatureReferencegetFeatures(int index)List of features that are being retrievedintgetFeaturesCount()List of features that are being retrievedList<ServingAPIProto.FeatureReference>getFeaturesList()List of features that are being retrievedServingAPIProto.FeatureReferenceOrBuildergetFeaturesOrBuilder(int index)List of features that are being retrievedList<? extends ServingAPIProto.FeatureReferenceOrBuilder>getFeaturesOrBuilderList()List of features that are being retrievedbooleangetOmitEntitiesInResponse()Option to omit entities from the response.StringgetProject()Optional field to specify project name override.com.google.protobuf.ByteStringgetProjectBytes()Optional field to specify project name override.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getFeaturesList
List<ServingAPIProto.FeatureReference> getFeaturesList()
List of features that are being retrieved
repeated .feast.serving.FeatureReference features = 4;
-
getFeatures
ServingAPIProto.FeatureReference getFeatures(int index)
List of features that are being retrieved
repeated .feast.serving.FeatureReference features = 4;
-
getFeaturesCount
int getFeaturesCount()
List of features that are being retrieved
repeated .feast.serving.FeatureReference features = 4;
-
getFeaturesOrBuilderList
List<? extends ServingAPIProto.FeatureReferenceOrBuilder> getFeaturesOrBuilderList()
List of features that are being retrieved
repeated .feast.serving.FeatureReference features = 4;
-
getFeaturesOrBuilder
ServingAPIProto.FeatureReferenceOrBuilder getFeaturesOrBuilder(int index)
List of features that are being retrieved
repeated .feast.serving.FeatureReference features = 4;
-
getEntityRowsList
List<ServingAPIProto.GetOnlineFeaturesRequest.EntityRow> getEntityRowsList()
List of entity rows, containing entity id and timestamp data. Used during retrieval of feature rows and for joining feature rows into a final dataset
repeated .feast.serving.GetOnlineFeaturesRequest.EntityRow entity_rows = 2;
-
getEntityRows
ServingAPIProto.GetOnlineFeaturesRequest.EntityRow getEntityRows(int index)
List of entity rows, containing entity id and timestamp data. Used during retrieval of feature rows and for joining feature rows into a final dataset
repeated .feast.serving.GetOnlineFeaturesRequest.EntityRow entity_rows = 2;
-
getEntityRowsCount
int getEntityRowsCount()
List of entity rows, containing entity id and timestamp data. Used during retrieval of feature rows and for joining feature rows into a final dataset
repeated .feast.serving.GetOnlineFeaturesRequest.EntityRow entity_rows = 2;
-
getEntityRowsOrBuilderList
List<? extends ServingAPIProto.GetOnlineFeaturesRequest.EntityRowOrBuilder> getEntityRowsOrBuilderList()
List of entity rows, containing entity id and timestamp data. Used during retrieval of feature rows and for joining feature rows into a final dataset
repeated .feast.serving.GetOnlineFeaturesRequest.EntityRow entity_rows = 2;
-
getEntityRowsOrBuilder
ServingAPIProto.GetOnlineFeaturesRequest.EntityRowOrBuilder getEntityRowsOrBuilder(int index)
List of entity rows, containing entity id and timestamp data. Used during retrieval of feature rows and for joining feature rows into a final dataset
repeated .feast.serving.GetOnlineFeaturesRequest.EntityRow entity_rows = 2;
-
getOmitEntitiesInResponse
boolean getOmitEntitiesInResponse()
Option to omit entities from the response. If true, only feature values will be returned.
bool omit_entities_in_response = 3;- Returns:
- The omitEntitiesInResponse.
-
getProject
String getProject()
Optional field to specify project name override. If specified, uses the given project for retrieval. Overrides the projects specified in Feature References if both are specified.
string project = 5;- Returns:
- The project.
-
getProjectBytes
com.google.protobuf.ByteString getProjectBytes()
Optional field to specify project name override. If specified, uses the given project for retrieval. Overrides the projects specified in Feature References if both are specified.
string project = 5;- Returns:
- The bytes for project.
-
-