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

Operations

import type { Operations } from "https://googleapis.deno.dev/v1/dataform:v1beta1.ts";

Represents a list of arbitrary database operations.

interface Operations {
dependencyTargets?: Target[];
disabled?: boolean;
hasOutput?: boolean;
queries?: string[];
relationDescriptor?: RelationDescriptor;
tags?: string[];
}

§Properties

§
dependencyTargets?: Target[]
[src]

A list of actions that this action depends on.

§
disabled?: boolean
[src]

Whether this action is disabled (i.e. should not be run).

§
hasOutput?: boolean
[src]

Whether these operations produce an output relation.

§
queries?: string[]
[src]

A list of arbitrary SQL statements that will be executed without alteration.

§
relationDescriptor?: RelationDescriptor
[src]

Descriptor for any output relation and its columns. Only set if has_output is true.

§
tags?: string[]
[src]

Arbitrary, user-defined tags on this action.