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

GoogleCloudAiplatformV1Event

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

An edge describing the relationship between an Artifact and an Execution in a lineage graph.

interface GoogleCloudAiplatformV1Event {
artifact?: string;
readonly eventTime?: Date;
readonly execution?: string;
labels?: {
[key: string]: string;
}
;
type?: "TYPE_UNSPECIFIED" | "INPUT" | "OUTPUT";
}

§Properties

§
artifact?: string
[src]

Required. The relative resource name of the Artifact in the Event.

§
readonly eventTime?: Date
[src]

Output only. Time the Event occurred.

§
readonly execution?: string
[src]

Output only. The relative resource name of the Execution in the Event.

§
labels?: {
[key: string]: string;
}
[src]

The labels with user-defined metadata to annotate Events. Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. No more than 64 user labels can be associated with one Event (System labels are excluded). See https://goo.gl/xmQnxf for more information and examples of labels. System reserved label keys are prefixed with "aiplatform.googleapis.com/" and are immutable.

§
type?: "TYPE_UNSPECIFIED" | "INPUT" | "OUTPUT"
[src]

Required. The type of the Event.