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

Target

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

Represents an action identifier. If the action writes output, the output will be written to the referenced database object.

interface Target {
database?: string;
name?: string;
schema?: string;
}

§Properties

§
database?: string
[src]

The action's database (Google Cloud project ID) .

§
name?: string
[src]

The action's name, within database and schema.

§
schema?: string
[src]

The action's schema (BigQuery dataset ID), within database.