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

DataPreparationAction

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

Represents a workflow action that will run a Data Preparation.

interface DataPreparationAction {
contentsSql?: ActionSqlDefinition;
readonly contentsYaml?: string;
readonly generatedSql?: string;
readonly jobId?: string;
}

§Properties

§

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

§
readonly contentsYaml?: string
[src]

Output only. YAML representing the contents of the data preparation. Can be used to show the customer what the input was to their workflow.

§
readonly generatedSql?: string
[src]

Output only. The generated BigQuery SQL script that will be executed. For reference only.

§
readonly jobId?: string
[src]

Output only. The ID of the BigQuery job that executed the SQL in sql_script. Only set once the job has started to run.