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

§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.