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

BigQueryAction

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

Represents a workflow action that will run against BigQuery.

interface BigQueryAction {
readonly jobId?: string;
readonly sqlScript?: string;
}

§Properties

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

§
readonly sqlScript?: string
[src]

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