pub struct GoogleCloudAiplatformV1BatchReadFeatureValuesRequest {
pub destination: Option<GoogleCloudAiplatformV1FeatureValueDestination>,
pub bigquery_read_instances: Option<GoogleCloudAiplatformV1BigQuerySource>,
pub pass_through_fields: Option<Vec<GoogleCloudAiplatformV1BatchReadFeatureValuesRequestPassThroughField>>,
pub csv_read_instances: Option<GoogleCloudAiplatformV1CsvSource>,
pub start_time: Option<DateTime<Utc>>,
pub entity_type_specs: Option<Vec<GoogleCloudAiplatformV1BatchReadFeatureValuesRequestEntityTypeSpec>>,
}Expand description
Request message for FeaturestoreService.BatchReadFeatureValues.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
Fields§
§destination: Option<GoogleCloudAiplatformV1FeatureValueDestination>Required. Specifies output location and format.
bigquery_read_instances: Option<GoogleCloudAiplatformV1BigQuerySource>Similar to csv_read_instances, but from BigQuery source.
pass_through_fields: Option<Vec<GoogleCloudAiplatformV1BatchReadFeatureValuesRequestPassThroughField>>When not empty, the specified fields in the *_read_instances source will be joined as-is in the output, in addition to those fields from the Featurestore Entity. For BigQuery source, the type of the pass-through values will be automatically inferred. For CSV source, the pass-through values will be passed as opaque bytes.
csv_read_instances: Option<GoogleCloudAiplatformV1CsvSource>Each read instance consists of exactly one read timestamp and one or more entity IDs identifying entities of the corresponding EntityTypes whose Features are requested. Each output instance contains Feature values of requested entities concatenated together as of the read time. An example read instance may be foo_entity_id, bar_entity_id, 2020-01-01T10:00:00.123Z. An example output instance may be foo_entity_id, bar_entity_id, 2020-01-01T10:00:00.123Z, foo_entity_feature1_value, bar_entity_feature2_value. Timestamp in each read instance must be millisecond-aligned. csv_read_instances are read instances stored in a plain-text CSV file. The header should be: [ENTITY_TYPE_ID1], [ENTITY_TYPE_ID2], …, timestamp The columns can be in any order. Values in the timestamp column must use the RFC 3339 format, e.g. 2012-07-30T10:43:17.123Z.
start_time: Option<DateTime<Utc>>Optional. 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.
entity_type_specs: Option<Vec<GoogleCloudAiplatformV1BatchReadFeatureValuesRequestEntityTypeSpec>>Required. Specifies EntityType grouping Features to read values of and settings.
Trait Implementations§
Source§impl Clone for GoogleCloudAiplatformV1BatchReadFeatureValuesRequest
impl Clone for GoogleCloudAiplatformV1BatchReadFeatureValuesRequest
Source§fn clone(&self) -> GoogleCloudAiplatformV1BatchReadFeatureValuesRequest
fn clone(&self) -> GoogleCloudAiplatformV1BatchReadFeatureValuesRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for GoogleCloudAiplatformV1BatchReadFeatureValuesRequest
impl Default for GoogleCloudAiplatformV1BatchReadFeatureValuesRequest
Source§fn default() -> GoogleCloudAiplatformV1BatchReadFeatureValuesRequest
fn default() -> GoogleCloudAiplatformV1BatchReadFeatureValuesRequest
Source§impl<'de> Deserialize<'de> for GoogleCloudAiplatformV1BatchReadFeatureValuesRequest
impl<'de> Deserialize<'de> for GoogleCloudAiplatformV1BatchReadFeatureValuesRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl RequestValue for GoogleCloudAiplatformV1BatchReadFeatureValuesRequest
Auto Trait Implementations§
impl Freeze for GoogleCloudAiplatformV1BatchReadFeatureValuesRequest
impl RefUnwindSafe for GoogleCloudAiplatformV1BatchReadFeatureValuesRequest
impl Send for GoogleCloudAiplatformV1BatchReadFeatureValuesRequest
impl Sync for GoogleCloudAiplatformV1BatchReadFeatureValuesRequest
impl Unpin for GoogleCloudAiplatformV1BatchReadFeatureValuesRequest
impl UnwindSafe for GoogleCloudAiplatformV1BatchReadFeatureValuesRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more