Package com.google.cloud.aiplatform.v1
Interface ExportFeatureValuesRequest.SnapshotExportOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ExportFeatureValuesRequest.SnapshotExport,ExportFeatureValuesRequest.SnapshotExport.Builder
- Enclosing class:
- ExportFeatureValuesRequest
public static interface ExportFeatureValuesRequest.SnapshotExportOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.TimestampgetSnapshotTime()Exports Feature values as of this timestamp.com.google.protobuf.TimestampOrBuildergetSnapshotTimeOrBuilder()Exports Feature values as of this timestamp.com.google.protobuf.TimestampgetStartTime()Excludes Feature values with feature generation timestamp before this timestamp.com.google.protobuf.TimestampOrBuildergetStartTimeOrBuilder()Excludes Feature values with feature generation timestamp before this timestamp.booleanhasSnapshotTime()Exports Feature values as of this timestamp.booleanhasStartTime()Excludes Feature values with feature generation timestamp before this timestamp.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasSnapshotTime
boolean hasSnapshotTime()
Exports Feature values as of this timestamp. If not set, retrieve values as of now. Timestamp, if present, must not have higher than millisecond precision.
.google.protobuf.Timestamp snapshot_time = 1;- Returns:
- Whether the snapshotTime field is set.
-
getSnapshotTime
com.google.protobuf.Timestamp getSnapshotTime()
Exports Feature values as of this timestamp. If not set, retrieve values as of now. Timestamp, if present, must not have higher than millisecond precision.
.google.protobuf.Timestamp snapshot_time = 1;- Returns:
- The snapshotTime.
-
getSnapshotTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getSnapshotTimeOrBuilder()
Exports Feature values as of this timestamp. If not set, retrieve values as of now. Timestamp, if present, must not have higher than millisecond precision.
.google.protobuf.Timestamp snapshot_time = 1;
-
hasStartTime
boolean hasStartTime()
Excludes Feature values with feature generation timestamp before this timestamp. If not set, retrieve oldest values kept in Feature Store. Timestamp, if present, must not have higher than millisecond precision.
.google.protobuf.Timestamp start_time = 2;- Returns:
- Whether the startTime field is set.
-
getStartTime
com.google.protobuf.Timestamp getStartTime()
Excludes Feature values with feature generation timestamp before this timestamp. If not set, retrieve oldest values kept in Feature Store. Timestamp, if present, must not have higher than millisecond precision.
.google.protobuf.Timestamp start_time = 2;- Returns:
- The startTime.
-
getStartTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder()
Excludes Feature values with feature generation timestamp before this timestamp. If not set, retrieve oldest values kept in Feature Store. Timestamp, if present, must not have higher than millisecond precision.
.google.protobuf.Timestamp start_time = 2;
-
-