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

GoogleCloudAiplatformV1PipelineTaskDetail

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

The runtime detail of a task execution.

interface GoogleCloudAiplatformV1PipelineTaskDetail {
readonly createTime?: Date;
readonly endTime?: Date;
readonly error?: GoogleRpcStatus;
readonly execution?: GoogleCloudAiplatformV1Execution;
readonly inputs?: {};
readonly outputs?: {};
readonly parentTaskId?: bigint;
readonly startTime?: Date;
readonly state?:
| "STATE_UNSPECIFIED"
| "PENDING"
| "RUNNING"
| "SUCCEEDED"
| "CANCEL_PENDING"
| "CANCELLING"
| "CANCELLED"
| "FAILED"
| "SKIPPED"
| "NOT_TRIGGERED";
readonly taskId?: bigint;
readonly taskName?: string;
readonly taskUniqueName?: string;
}

§Properties

§
readonly createTime?: Date
[src]

Output only. Task create time.

§
readonly endTime?: Date
[src]

Output only. Task end time.

§
readonly error?: GoogleRpcStatus
[src]

Output only. The error that occurred during task execution. Only populated when the task's state is FAILED or CANCELLED.

§

Output only. The execution metadata of the task.

§

Output only. The detailed execution info.

§

Output only. The runtime input artifacts of the task.

§

Output only. The runtime output artifacts of the task.

§
readonly parentTaskId?: bigint
[src]

Output only. The id of the parent task if the task is within a component scope. Empty if the task is at the root level.

§

Output only. A list of task status. This field keeps a record of task status evolving over time.

§
readonly startTime?: Date
[src]

Output only. Task start time.

§
readonly state?: "STATE_UNSPECIFIED" | "PENDING" | "RUNNING" | "SUCCEEDED" | "CANCEL_PENDING" | "CANCELLING" | "CANCELLED" | "FAILED" | "SKIPPED" | "NOT_TRIGGERED"
[src]

Output only. State of the task.

§
readonly taskId?: bigint
[src]

Output only. The system generated ID of the task.

§
readonly taskName?: string
[src]

Output only. The user specified name of the task that is defined in pipeline_spec.

§
readonly taskUniqueName?: string
[src]

Output only. The unique name of a task. This field is used by rerun pipeline job. Console UI and Vertex AI SDK will support triggering pipeline job reruns. The name is constructed by concatenating all the parent tasks name with the task name. For example, if a task named "child_task" has a parent task named "parent_task_1" and parent task 1 has a parent task named "parent_task_2", the task unique name will be "parent_task_2.parent_task_1.child_task".