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

AlertPolicyCheckStatus

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

AlertPolicyCheckStatus contains information specific to a single run of an alert policy check.

interface AlertPolicyCheckStatus {
readonly alertPolicies?: string[];
readonly failedAlertPolicies?: FailedAlertPolicy[];
readonly failureMessage?: string;
readonly id?: string;
readonly labels?: {
[key: string]: string;
}
;
}

§Properties

§
readonly alertPolicies?: string[]
[src]

Output only. The alert policies that this analysis monitors. Format is projects/{project}/locations/{location}/alertPolicies/{alertPolicy}.

§
readonly failedAlertPolicies?: FailedAlertPolicy[]
[src]

Output only. The alert policies that were found to be firing during this check. This will be empty if no incidents were found.

§
readonly failureMessage?: string
[src]

Output only. Additional information about the alert policy check failure, if available. This will be empty if the alert policy check succeeded.

§
readonly id?: string
[src]

Output only. The ID of this analysis.

§
readonly labels?: {
[key: string]: string;
}
[src]

Output only. The resolved labels used to filter for specific incidents.