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

CompilationResultAction

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

Represents a single Dataform action in a compilation result.

interface CompilationResultAction {
assertion?: Assertion;
canonicalTarget?: Target;
declaration?: Declaration;
filePath?: string;
notebook?: Notebook;
operations?: Operations;
relation?: Relation;
target?: Target;
}

§Properties

§
assertion?: Assertion
[src]

The assertion executed by this action.

§
canonicalTarget?: Target
[src]

The action's identifier if the project had been compiled without any overrides configured. Unique within the compilation result.

§
declaration?: Declaration
[src]

The declaration declared by this action.

§
filePath?: string
[src]

The full path including filename in which this action is located, relative to the workspace root.

§
notebook?: Notebook
[src]

The notebook executed by this action.

§
operations?: Operations
[src]

The database operations executed by this action.

§
relation?: Relation
[src]

The database relation created/updated by this action.

§
target?: Target
[src]

This action's identifier. Unique within the compilation result.