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

QueryTemplate

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

A query template is a container for sharing table-valued functions defined by contributors in a data clean room.

interface QueryTemplate {
readonly createTime?: Date;
description?: string;
displayName?: string;
documentation?: string;
readonly name?: string;
primaryContact?: string;
proposer?: string;
routine?: Routine;
readonly state?:
| "STATE_UNSPECIFIED"
| "DRAFTED"
| "PENDING"
| "DELETED"
| "APPROVED";
readonly updateTime?: Date;
}

§Properties

§
readonly createTime?: Date
[src]

Output only. Timestamp when the QueryTemplate was created.

§
description?: string
[src]

Optional. Short description of the QueryTemplate. The description must not contain Unicode non-characters and C0 and C1 control codes except tabs (HT), new lines (LF), carriage returns (CR), and page breaks (FF). Default value is an empty string. Max length: 2000 bytes.

§
displayName?: string
[src]

Required. Human-readable display name of the QueryTemplate. The display name must contain only Unicode letters, numbers (0-9), underscores (_), dashes (-), spaces ( ), ampersands (&) and can't start or end with spaces. Default value is an empty string. Max length: 63 bytes.

§
documentation?: string
[src]

Optional. Documentation describing the QueryTemplate.

§
readonly name?: string
[src]

Output only. The resource name of the QueryTemplate. e.g. projects/myproject/locations/us/dataExchanges/123/queryTemplates/456

§
primaryContact?: string
[src]

Optional. Email or URL of the primary point of contact of the QueryTemplate. Max Length: 1000 bytes.

§
proposer?: string
[src]

Optional. Will be deprecated. Email or URL of the primary point of contact of the QueryTemplate. Max Length: 1000 bytes.

§
routine?: Routine
[src]

Optional. The routine associated with the QueryTemplate.

§
readonly state?: "STATE_UNSPECIFIED" | "DRAFTED" | "PENDING" | "DELETED" | "APPROVED"
[src]

Output only. The QueryTemplate lifecycle state.

§
readonly updateTime?: Date
[src]

Output only. Timestamp when the QueryTemplate was last modified.