Package com.google.cloud.aiplatform.v1
Interface FeatureValue.MetadataOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
FeatureValue.Metadata
,FeatureValue.Metadata.Builder
- Enclosing class:
- FeatureValue
public static interface FeatureValue.MetadataOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.Timestamp
getGenerateTime()
Feature generation timestamp.com.google.protobuf.TimestampOrBuilder
getGenerateTimeOrBuilder()
Feature generation timestamp.boolean
hasGenerateTime()
Feature generation timestamp.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasGenerateTime
boolean hasGenerateTime()
Feature generation timestamp. Typically, it is provided by user at feature ingestion time. If not, feature store will use the system timestamp when the data is ingested into feature store. For streaming ingestion, the time, aligned by days, must be no older than five years (1825 days) and no later than one year (366 days) in the future.
.google.protobuf.Timestamp generate_time = 1;
- Returns:
- Whether the generateTime field is set.
-
getGenerateTime
com.google.protobuf.Timestamp getGenerateTime()
Feature generation timestamp. Typically, it is provided by user at feature ingestion time. If not, feature store will use the system timestamp when the data is ingested into feature store. For streaming ingestion, the time, aligned by days, must be no older than five years (1825 days) and no later than one year (366 days) in the future.
.google.protobuf.Timestamp generate_time = 1;
- Returns:
- The generateTime.
-
getGenerateTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getGenerateTimeOrBuilder()
Feature generation timestamp. Typically, it is provided by user at feature ingestion time. If not, feature store will use the system timestamp when the data is ingested into feature store. For streaming ingestion, the time, aligned by days, must be no older than five years (1825 days) and no later than one year (366 days) in the future.
.google.protobuf.Timestamp generate_time = 1;
-
-