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

GoogleCloudAiplatformV1PipelineTaskDetailPipelineTaskStatus

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

A single record of the task status.

interface GoogleCloudAiplatformV1PipelineTaskDetailPipelineTaskStatus {
readonly error?: GoogleRpcStatus;
readonly state?:
| "STATE_UNSPECIFIED"
| "PENDING"
| "RUNNING"
| "SUCCEEDED"
| "CANCEL_PENDING"
| "CANCELLING"
| "CANCELLED"
| "FAILED"
| "SKIPPED"
| "NOT_TRIGGERED";
readonly updateTime?: Date;
}

§Properties

§
readonly error?: GoogleRpcStatus
[src]

Output only. The error that occurred during the state. May be set when the state is any of the non-final state (PENDING/RUNNING/CANCELLING) or FAILED state. If the state is FAILED, the error here is final and not going to be retried. If the state is a non-final state, the error indicates a system-error being retried.

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

Output only. The state of the task.

§
readonly updateTime?: Date
[src]

Output only. Update time of this status.