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

CustomCheckStatus

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

CustomCheckStatus contains information specific to a single iteration of a custom analysis job.

interface CustomCheckStatus {
readonly failureCause?:
| "FAILURE_CAUSE_UNSPECIFIED"
| "CLOUD_BUILD_UNAVAILABLE"
| "EXECUTION_FAILED"
| "DEADLINE_EXCEEDED"
| "CLOUD_BUILD_REQUEST_FAILED";
readonly failureMessage?: string;
readonly frequency?: number;
readonly id?: string;
readonly latestBuild?: string;
readonly metadata?: CustomMetadata;
readonly task?: Task;
}

§Properties

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

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

§
readonly failureMessage?: string
[src]

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

§
readonly frequency?: number
[src]

Output only. The frequency in minutes at which the custom check is run.

§
readonly id?: string
[src]

Output only. The ID of the custom check.

§
readonly latestBuild?: string
[src]

Output only. The resource name of the Cloud Build Build object that was used to execute the latest run of this custom action check. Format is projects/{project}/locations/{location}/builds/{build}.

§
readonly metadata?: CustomMetadata
[src]

Output only. Custom metadata provided by the user-defined custom check operation. result.

§
readonly task?: Task
[src]

Output only. The task that ran for this custom check.