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

GoogleCloudAiplatformV1IndexDatapointNumericRestriction

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

This field allows restricts to be based on numeric comparisons rather than categorical tokens.

interface GoogleCloudAiplatformV1IndexDatapointNumericRestriction {
namespace?: string;
op?:
| "OPERATOR_UNSPECIFIED"
| "LESS"
| "LESS_EQUAL"
| "EQUAL"
| "GREATER_EQUAL"
| "GREATER"
| "NOT_EQUAL";
valueDouble?: number;
valueFloat?: number;
valueInt?: bigint;
}

§Properties

§
namespace?: string
[src]

The namespace of this restriction. e.g.: cost.

§
op?: "OPERATOR_UNSPECIFIED" | "LESS" | "LESS_EQUAL" | "EQUAL" | "GREATER_EQUAL" | "GREATER" | "NOT_EQUAL"
[src]

This MUST be specified for queries and must NOT be specified for datapoints.

§
valueDouble?: number
[src]

Represents 64 bit float.

§
valueFloat?: number
[src]

Represents 32 bit float.

§
valueInt?: bigint
[src]

Represents 64 bit integer.