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

SavedQuery

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

A saved query which can be shared with others or used later.

interface SavedQuery {
content?: QueryContent;
readonly createTime?: Date;
readonly creator?: string;
description?: string;
labels?: {
[key: string]: string;
}
;
readonly lastUpdater?: string;
readonly lastUpdateTime?: Date;
name?: string;
}

§Properties

§

The query content.

§
readonly createTime?: Date
[src]

Output only. The create time of this saved query.

§
readonly creator?: string
[src]

Output only. The account's email address who has created this saved query.

§
description?: string
[src]

The description of this saved query. This value should be fewer than 255 characters.

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

Labels applied on the resource. This value should not contain more than 10 entries. The key and value of each entry must be non-empty and fewer than 64 characters.

§
readonly lastUpdater?: string
[src]

Output only. The account's email address who has updated this saved query most recently.

§
readonly lastUpdateTime?: Date
[src]

Output only. The last update time of this saved query.

§
name?: string
[src]

The resource name of the saved query. The format must be: * projects/project_number/savedQueries/saved_query_id * folders/folder_number/savedQueries/saved_query_id * organizations/organization_number/savedQueries/saved_query_id