Package com.google.cloud.aiplatform.v1
Interface WriteFeatureValuesPayloadOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
WriteFeatureValuesPayload
,WriteFeatureValuesPayload.Builder
public interface WriteFeatureValuesPayloadOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description boolean
containsFeatureValues(String key)
Required.String
getEntityId()
Required.com.google.protobuf.ByteString
getEntityIdBytes()
Required.Map<String,FeatureValue>
getFeatureValues()
Deprecated.int
getFeatureValuesCount()
Required.Map<String,FeatureValue>
getFeatureValuesMap()
Required.FeatureValue
getFeatureValuesOrDefault(String key, FeatureValue defaultValue)
Required.FeatureValue
getFeatureValuesOrThrow(String key)
Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getEntityId
String getEntityId()
Required. The ID of the entity.
string entity_id = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The entityId.
-
getEntityIdBytes
com.google.protobuf.ByteString getEntityIdBytes()
Required. The ID of the entity.
string entity_id = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The bytes for entityId.
-
getFeatureValuesCount
int getFeatureValuesCount()
Required. Feature values to be written, mapping from Feature ID to value. Up to 100,000 `feature_values` entries may be written across all payloads. The feature generation time, aligned by days, must be no older than five years (1825 days) and no later than one year (366 days) in the future.
map<string, .google.cloud.aiplatform.v1.FeatureValue> feature_values = 2 [(.google.api.field_behavior) = REQUIRED];
-
containsFeatureValues
boolean containsFeatureValues(String key)
Required. Feature values to be written, mapping from Feature ID to value. Up to 100,000 `feature_values` entries may be written across all payloads. The feature generation time, aligned by days, must be no older than five years (1825 days) and no later than one year (366 days) in the future.
map<string, .google.cloud.aiplatform.v1.FeatureValue> feature_values = 2 [(.google.api.field_behavior) = REQUIRED];
-
getFeatureValues
@Deprecated Map<String,FeatureValue> getFeatureValues()
Deprecated.UsegetFeatureValuesMap()
instead.
-
getFeatureValuesMap
Map<String,FeatureValue> getFeatureValuesMap()
Required. Feature values to be written, mapping from Feature ID to value. Up to 100,000 `feature_values` entries may be written across all payloads. The feature generation time, aligned by days, must be no older than five years (1825 days) and no later than one year (366 days) in the future.
map<string, .google.cloud.aiplatform.v1.FeatureValue> feature_values = 2 [(.google.api.field_behavior) = REQUIRED];
-
getFeatureValuesOrDefault
FeatureValue getFeatureValuesOrDefault(String key, FeatureValue defaultValue)
Required. Feature values to be written, mapping from Feature ID to value. Up to 100,000 `feature_values` entries may be written across all payloads. The feature generation time, aligned by days, must be no older than five years (1825 days) and no later than one year (366 days) in the future.
map<string, .google.cloud.aiplatform.v1.FeatureValue> feature_values = 2 [(.google.api.field_behavior) = REQUIRED];
-
getFeatureValuesOrThrow
FeatureValue getFeatureValuesOrThrow(String key)
Required. Feature values to be written, mapping from Feature ID to value. Up to 100,000 `feature_values` entries may be written across all payloads. The feature generation time, aligned by days, must be no older than five years (1825 days) and no later than one year (366 days) in the future.
map<string, .google.cloud.aiplatform.v1.FeatureValue> feature_values = 2 [(.google.api.field_behavior) = REQUIRED];
-
-