Package feast.proto.core
Interface CoreServiceProto.ApplyEntityRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CoreServiceProto.ApplyEntityRequest,CoreServiceProto.ApplyEntityRequest.Builder
- Enclosing class:
- CoreServiceProto
public static interface CoreServiceProto.ApplyEntityRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetProject()Name of project that this entity belongs to.com.google.protobuf.ByteStringgetProjectBytes()Name of project that this entity belongs to.EntityProto.EntitySpecV2getSpec()If project is unspecified, will default to 'default' project.EntityProto.EntitySpecV2OrBuildergetSpecOrBuilder()If project is unspecified, will default to 'default' project.booleanhasSpec()If project is unspecified, will default to 'default' project.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasSpec
boolean hasSpec()
If project is unspecified, will default to 'default' project. If project specified does not exist, the project would be automatically created.
.feast.core.EntitySpecV2 spec = 1;- Returns:
- Whether the spec field is set.
-
getSpec
EntityProto.EntitySpecV2 getSpec()
If project is unspecified, will default to 'default' project. If project specified does not exist, the project would be automatically created.
.feast.core.EntitySpecV2 spec = 1;- Returns:
- The spec.
-
getSpecOrBuilder
EntityProto.EntitySpecV2OrBuilder getSpecOrBuilder()
If project is unspecified, will default to 'default' project. If project specified does not exist, the project would be automatically created.
.feast.core.EntitySpecV2 spec = 1;
-
getProject
String getProject()
Name of project that this entity belongs to.
string project = 2;- Returns:
- The project.
-
getProjectBytes
com.google.protobuf.ByteString getProjectBytes()
Name of project that this entity belongs to.
string project = 2;- Returns:
- The bytes for project.
-
-