Package feast.proto.serving
Interface ServingAPIProto.FeatureReferenceOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ServingAPIProto.FeatureReference,ServingAPIProto.FeatureReference.Builder
- Enclosing class:
- ServingAPIProto
public static interface ServingAPIProto.FeatureReferenceOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetFeatureSet()Feature set name specifying the feature set of this referenced feature.com.google.protobuf.ByteStringgetFeatureSetBytes()Feature set name specifying the feature set of this referenced feature.StringgetName()Feature namecom.google.protobuf.ByteStringgetNameBytes()Feature nameStringgetProject()Project name.com.google.protobuf.ByteStringgetProjectBytes()Project name.-
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()
Project name. This field is optional, if unspecified will default to 'default'.
string project = 1;- Returns:
- The project.
-
getProjectBytes
com.google.protobuf.ByteString getProjectBytes()
Project name. This field is optional, if unspecified will default to 'default'.
string project = 1;- Returns:
- The bytes for project.
-
getName
String getName()
Feature name
string name = 2;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Feature name
string name = 2;- Returns:
- The bytes for name.
-
getFeatureSet
String getFeatureSet()
Feature set name specifying the feature set of this referenced feature. This field is optional if the feature referenced is unique across the project in which case the feature set would be automatically infered
string feature_set = 5;- Returns:
- The featureSet.
-
getFeatureSetBytes
com.google.protobuf.ByteString getFeatureSetBytes()
Feature set name specifying the feature set of this referenced feature. This field is optional if the feature referenced is unique across the project in which case the feature set would be automatically infered
string feature_set = 5;- Returns:
- The bytes for featureSet.
-
-