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

GoogleCloudDatacatalogLineageV1Run

import type { GoogleCloudDatacatalogLineageV1Run } from "https://googleapis.deno.dev/v1/datalineage:v1.ts";

A lineage run represents an execution of a process that creates lineage events.

interface GoogleCloudDatacatalogLineageV1Run {
attributes?: {
[key: string]: any;
}
;
displayName?: string;
endTime?: Date;
name?: string;
startTime?: Date;
state?:
| "UNKNOWN"
| "STARTED"
| "COMPLETED"
| "FAILED"
| "ABORTED";
}

§Properties

§
attributes?: {
[key: string]: any;
}
[src]

Optional. The attributes of the run. Should only be used for the purpose of non-semantic management (classifying, describing or labeling the run). Up to 100 attributes are allowed.

§
displayName?: string
[src]

Optional. A human-readable name you can set to display in a user interface. Must be not longer than 1024 characters and only contain UTF-8 letters or numbers, spaces or characters like _-:&.

§
endTime?: Date
[src]

Optional. The timestamp of the end of the run.

§
name?: string
[src]

Immutable. The resource name of the run. Format: projects/{project}/locations/{location}/processes/{process}/runs/{run}. Can be specified or auto-assigned. {run} must be not longer than 200 characters and only contain characters in a set: a-zA-Z0-9_-:.

§
startTime?: Date
[src]

Required. The timestamp of the start of the run.

§
state?: "UNKNOWN" | "STARTED" | "COMPLETED" | "FAILED" | "ABORTED"
[src]

Required. The state of the run.