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

DeploymentJobs

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

Deployment job composition.

interface DeploymentJobs {
readonly deployJob?: Job;
readonly postdeployJob?: Job;
readonly predeployJob?: Job;
readonly verifyJob?: Job;
}

§Properties

§
readonly deployJob?: Job
[src]

Output only. The deploy Job. This is the deploy job in the phase.

§
readonly postdeployJob?: Job
[src]

Output only. The postdeploy Job, which is the last job on the phase.

§
readonly predeployJob?: Job
[src]

Output only. The predeploy Job, which is the first job on the phase.

§
readonly verifyJob?: Job
[src]

Output only. The verify Job. Runs after a deploy if the deploy succeeds.