Interface ReadFeatureValuesRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ReadFeatureValuesRequest
,ReadFeatureValuesRequest.Builder
public interface ReadFeatureValuesRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getEntityId()
Required.com.google.protobuf.ByteString
getEntityIdBytes()
Required.String
getEntityType()
Required.com.google.protobuf.ByteString
getEntityTypeBytes()
Required.FeatureSelector
getFeatureSelector()
Required.FeatureSelectorOrBuilder
getFeatureSelectorOrBuilder()
Required.boolean
hasFeatureSelector()
Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getEntityType
String getEntityType()
Required. The resource name of the EntityType for the entity being read. Value format: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entityType}`. For example, for a machine learning model predicting user clicks on a website, an EntityType ID could be `user`.
string entity_type = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The entityType.
-
getEntityTypeBytes
com.google.protobuf.ByteString getEntityTypeBytes()
Required. The resource name of the EntityType for the entity being read. Value format: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entityType}`. For example, for a machine learning model predicting user clicks on a website, an EntityType ID could be `user`.
string entity_type = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The bytes for entityType.
-
getEntityId
String getEntityId()
Required. ID for a specific entity. For example, for a machine learning model predicting user clicks on a website, an entity ID could be `user_123`.
string entity_id = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The entityId.
-
getEntityIdBytes
com.google.protobuf.ByteString getEntityIdBytes()
Required. ID for a specific entity. For example, for a machine learning model predicting user clicks on a website, an entity ID could be `user_123`.
string entity_id = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The bytes for entityId.
-
hasFeatureSelector
boolean hasFeatureSelector()
Required. Selector choosing Features of the target EntityType.
.google.cloud.aiplatform.v1beta1.FeatureSelector feature_selector = 3 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- Whether the featureSelector field is set.
-
getFeatureSelector
FeatureSelector getFeatureSelector()
Required. Selector choosing Features of the target EntityType.
.google.cloud.aiplatform.v1beta1.FeatureSelector feature_selector = 3 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The featureSelector.
-
getFeatureSelectorOrBuilder
FeatureSelectorOrBuilder getFeatureSelectorOrBuilder()
Required. Selector choosing Features of the target EntityType.
.google.cloud.aiplatform.v1beta1.FeatureSelector feature_selector = 3 [(.google.api.field_behavior) = REQUIRED];
-
-