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

PostdeployJobRun

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

PostdeployJobRun contains information specific to a postdeploy JobRun.

interface PostdeployJobRun {
readonly build?: string;
readonly failureCause?:
| "FAILURE_CAUSE_UNSPECIFIED"
| "CLOUD_BUILD_UNAVAILABLE"
| "EXECUTION_FAILED"
| "DEADLINE_EXCEEDED"
| "CLOUD_BUILD_REQUEST_FAILED";
readonly failureMessage?: string;
}

§Properties

§
readonly build?: string
[src]

Output only. The resource name of the Cloud Build Build object that is used to execute the custom actions associated with the postdeploy Job. Format is projects/{project}/locations/{location}/builds/{build}.

§
readonly failureCause?: "FAILURE_CAUSE_UNSPECIFIED" | "CLOUD_BUILD_UNAVAILABLE" | "EXECUTION_FAILED" | "DEADLINE_EXCEEDED" | "CLOUD_BUILD_REQUEST_FAILED"
[src]

Output only. The reason the postdeploy failed. This will always be unspecified while the postdeploy is in progress or if it succeeded.

§
readonly failureMessage?: string
[src]

Output only. Additional information about the postdeploy failure, if available.