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

GoogleCloudAiplatformV1PipelineTaskExecutorDetailContainerDetail

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

The detail of a container execution. It contains the job names of the lifecycle of a container execution.

interface GoogleCloudAiplatformV1PipelineTaskExecutorDetailContainerDetail {
readonly failedMainJobs?: string[];
readonly failedPreCachingCheckJobs?: string[];
readonly mainJob?: string;
readonly preCachingCheckJob?: string;
}

§Properties

§
readonly failedMainJobs?: string[]
[src]

Output only. The names of the previously failed CustomJob for the main container executions. The list includes the all attempts in chronological order.

§
readonly failedPreCachingCheckJobs?: string[]
[src]

Output only. The names of the previously failed CustomJob for the pre-caching-check container executions. This job will be available if the PipelineJob.pipeline_spec specifies the pre_caching_check hook in the lifecycle events. The list includes the all attempts in chronological order.

§
readonly mainJob?: string
[src]

Output only. The name of the CustomJob for the main container execution.

§
readonly preCachingCheckJob?: string
[src]

Output only. The name of the CustomJob for the pre-caching-check container execution. This job will be available if the PipelineJob.pipeline_spec specifies the pre_caching_check hook in the lifecycle events.