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

GoogleCloudAiplatformV1NearestNeighborQueryStringFilter

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

String filter is used to search a subset of the entities by using boolean rules on string columns. For example: if a query specifies string filter with 'name = color, allow_tokens = {red, blue}, deny_tokens = {purple}',' then that query will match entities that are red or blue, but if those points are also purple, then they will be excluded even if they are red/blue. Only string filter is supported for now, numeric filter will be supported in the near future.

interface GoogleCloudAiplatformV1NearestNeighborQueryStringFilter {
allowTokens?: string[];
denyTokens?: string[];
name?: string;
}

§Properties

§
allowTokens?: string[]
[src]

Optional. The allowed tokens.

§
denyTokens?: string[]
[src]

Optional. The denied tokens.

§
name?: string
[src]

Required. Column names in BigQuery that used as filters.