Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GoogleCloudAiplatformV1FeatureView

import type { GoogleCloudAiplatformV1FeatureView } from "https://googleapis.deno.dev/v1/aiplatform:v1.ts";

FeatureView is representation of values that the FeatureOnlineStore will serve based on its syncConfig.

interface GoogleCloudAiplatformV1FeatureView {
readonly createTime?: Date;
etag?: string;
labels?: {
[key: string]: string;
}
;
name?: string;
readonly updateTime?: Date;
}

§Properties

§

Optional. Configures how data is supposed to be extracted from a BigQuery source to be loaded onto the FeatureOnlineStore.

§
readonly createTime?: Date
[src]

Output only. Timestamp when this FeatureView was created.

§
etag?: string
[src]

Optional. Used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens.

§

Optional. Configures the features from a Feature Registry source that need to be loaded onto the FeatureOnlineStore.

§

Optional. Configuration for index preparation for vector search. It contains the required configurations to create an index from source data, so that approximate nearest neighbor (a.k.a ANN) algorithms search can be performed during online serving.

§
labels?: {
[key: string]: string;
}
[src]

Optional. The labels with user-defined metadata to organize your FeatureViews. Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. See https://goo.gl/xmQnxf for more information on and examples of labels. No more than 64 user labels can be associated with one FeatureOnlineStore(System labels are excluded)." System reserved label keys are prefixed with "aiplatform.googleapis.com/" and are immutable.

§
name?: string
[src]

Identifier. Name of the FeatureView. Format: projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}/featureViews/{feature_view}

§

Configures when data is to be synced/updated for this FeatureView. At the end of the sync the latest featureValues for each entityId of this FeatureView are made ready for online serving.

§
readonly updateTime?: Date
[src]

Output only. Timestamp when this FeatureView was last updated.