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

GoogleCloudAiplatformV1SavedQuery

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

A SavedQuery is a view of the dataset. It references a subset of annotations by problem type and filters.

interface GoogleCloudAiplatformV1SavedQuery {
readonly annotationFilter?: string;
readonly annotationSpecCount?: number;
readonly createTime?: Date;
displayName?: string;
etag?: string;
metadata?: any;
readonly name?: string;
problemType?: string;
readonly supportAutomlTraining?: boolean;
readonly updateTime?: Date;
}

§Properties

§
readonly annotationFilter?: string
[src]

Output only. Filters on the Annotations in the dataset.

§
readonly annotationSpecCount?: number
[src]

Output only. Number of AnnotationSpecs in the context of the SavedQuery.

§
readonly createTime?: Date
[src]

Output only. Timestamp when this SavedQuery was created.

§
displayName?: string
[src]

Required. The user-defined name of the SavedQuery. The name can be up to 128 characters long and can consist of any UTF-8 characters.

§
etag?: string
[src]

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

§
metadata?: any
[src]

Some additional information about the SavedQuery.

§
readonly name?: string
[src]

Output only. Resource name of the SavedQuery.

§
problemType?: string
[src]

Required. Problem type of the SavedQuery. Allowed values: * IMAGE_CLASSIFICATION_SINGLE_LABEL * IMAGE_CLASSIFICATION_MULTI_LABEL * IMAGE_BOUNDING_POLY * IMAGE_BOUNDING_BOX * TEXT_CLASSIFICATION_SINGLE_LABEL

  • TEXT_CLASSIFICATION_MULTI_LABEL * TEXT_EXTRACTION * TEXT_SENTIMENT * VIDEO_CLASSIFICATION * VIDEO_OBJECT_TRACKING
§
readonly supportAutomlTraining?: boolean
[src]

Output only. If the Annotations belonging to the SavedQuery can be used for AutoML training.

§
readonly updateTime?: Date
[src]

Output only. Timestamp when SavedQuery was last updated.