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

GoogleCloudAiplatformV1Execution

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

Instance of a general execution.

interface GoogleCloudAiplatformV1Execution {
readonly createTime?: Date;
description?: string;
displayName?: string;
etag?: string;
labels?: {
[key: string]: string;
}
;
metadata?: {
[key: string]: any;
}
;
readonly name?: string;
schemaTitle?: string;
schemaVersion?: string;
state?:
| "STATE_UNSPECIFIED"
| "NEW"
| "RUNNING"
| "COMPLETE"
| "FAILED"
| "CACHED"
| "CANCELLED";
readonly updateTime?: Date;
}

§Properties

§
readonly createTime?: Date
[src]

Output only. Timestamp when this Execution was created.

§
description?: string
[src]

Description of the Execution

§
displayName?: string
[src]

User provided display name of the Execution. May be up to 128 Unicode characters.

§
etag?: string
[src]

An eTag used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens.

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

The labels with user-defined metadata to organize your Executions. 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 Execution (System labels are excluded).

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

Properties of the Execution. Top level metadata keys' heading and trailing spaces will be trimmed. The size of this field should not exceed 200KB.

§
readonly name?: string
[src]

Output only. The resource name of the Execution.

§
schemaTitle?: string
[src]

The title of the schema describing the metadata. Schema title and version is expected to be registered in earlier Create Schema calls. And both are used together as unique identifiers to identify schemas within the local metadata store.

§
schemaVersion?: string
[src]

The version of the schema in schema_title to use. Schema title and version is expected to be registered in earlier Create Schema calls. And both are used together as unique identifiers to identify schemas within the local metadata store.

§
state?: "STATE_UNSPECIFIED" | "NEW" | "RUNNING" | "COMPLETE" | "FAILED" | "CACHED" | "CANCELLED"
[src]

The state of this Execution. This is a property of the Execution, and does not imply or capture any ongoing process. This property is managed by clients (such as Vertex AI Pipelines) and the system does not prescribe or check the validity of state transitions.

§
readonly updateTime?: Date
[src]

Output only. Timestamp when this Execution was last updated.