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

CustomCheck

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

CustomCheck configures a third-party metric provider to run the analysis, via a Task that runs at a specified frequency.

interface CustomCheck {
frequency?: number;
id?: string;
task?: Task;
}

§Properties

§
frequency?: number
[src]

Optional. The frequency at which the custom check will be run, with a minimum and default of 5 minutes.

§
id?: string
[src]

Required. The ID of the custom Analysis check.

§
task?: Task
[src]

Required. The Task to be run for this custom check.