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;
}