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

Lineage

import type { Lineage } from "https://googleapis.deno.dev/v1/databasecenter:v1beta.ts";

lineage information of the affiliated resources This captures source, target and process which created the lineage.

interface Lineage {
processFqn?: string;
processType?:
| "PROCESS_TYPE_UNSPECIFIED"
| "COMPOSER"
| "DATASTREAM"
| "DATAFLOW"
| "BIGQUERY"
| "DATA_FUSION"
| "DATAPROC";
sourceFqn?: string;
targetFqn?: string;
}

§Properties

§
processFqn?: string
[src]

Optional. FQN of process which created the lineage i.e. dataplex, datastream etc.

§
processType?: "PROCESS_TYPE_UNSPECIFIED" | "COMPOSER" | "DATASTREAM" | "DATAFLOW" | "BIGQUERY" | "DATA_FUSION" | "DATAPROC"
[src]

Optional. Type of process which created the lineage.

§
sourceFqn?: string
[src]

Optional. FQN of source table / column

§
targetFqn?: string
[src]

Optional. FQN of target table / column