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

DataPreparation

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

Defines a compiled Data Preparation entity

interface DataPreparation {
contentsSql?: SqlDefinition;
contentsYaml?: string;
dependencyTargets?: Target[];
disabled?: boolean;
tags?: string[];
}

§Properties

§
contentsSql?: SqlDefinition
[src]

SQL definition for a Data Preparation. Contains a SQL query and additional context information.

§
contentsYaml?: string
[src]

The data preparation definition, stored as a YAML string.

§
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).

§
tags?: string[]
[src]

Arbitrary, user-defined tags on this action.