Package com.google.cloud.aiplatform.v1
Interface WriteFeatureValuesRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
WriteFeatureValuesRequest
,WriteFeatureValuesRequest.Builder
public interface WriteFeatureValuesRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getEntityType()
Required.com.google.protobuf.ByteString
getEntityTypeBytes()
Required.WriteFeatureValuesPayload
getPayloads(int index)
Required.int
getPayloadsCount()
Required.List<WriteFeatureValuesPayload>
getPayloadsList()
Required.WriteFeatureValuesPayloadOrBuilder
getPayloadsOrBuilder(int index)
Required.List<? extends WriteFeatureValuesPayloadOrBuilder>
getPayloadsOrBuilderList()
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 entities being written. 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 entities being written. 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.
-
getPayloadsList
List<WriteFeatureValuesPayload> getPayloadsList()
Required. The entities to be written. Up to 100,000 feature values can be written across all `payloads`.
repeated .google.cloud.aiplatform.v1.WriteFeatureValuesPayload payloads = 2 [(.google.api.field_behavior) = REQUIRED];
-
getPayloads
WriteFeatureValuesPayload getPayloads(int index)
Required. The entities to be written. Up to 100,000 feature values can be written across all `payloads`.
repeated .google.cloud.aiplatform.v1.WriteFeatureValuesPayload payloads = 2 [(.google.api.field_behavior) = REQUIRED];
-
getPayloadsCount
int getPayloadsCount()
Required. The entities to be written. Up to 100,000 feature values can be written across all `payloads`.
repeated .google.cloud.aiplatform.v1.WriteFeatureValuesPayload payloads = 2 [(.google.api.field_behavior) = REQUIRED];
-
getPayloadsOrBuilderList
List<? extends WriteFeatureValuesPayloadOrBuilder> getPayloadsOrBuilderList()
Required. The entities to be written. Up to 100,000 feature values can be written across all `payloads`.
repeated .google.cloud.aiplatform.v1.WriteFeatureValuesPayload payloads = 2 [(.google.api.field_behavior) = REQUIRED];
-
getPayloadsOrBuilder
WriteFeatureValuesPayloadOrBuilder getPayloadsOrBuilder(int index)
Required. The entities to be written. Up to 100,000 feature values can be written across all `payloads`.
repeated .google.cloud.aiplatform.v1.WriteFeatureValuesPayload payloads = 2 [(.google.api.field_behavior) = REQUIRED];
-
-