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

Analysis

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

Analysis contains the configuration for the set of analyses to be performed on the target.

interface Analysis {
customChecks?: CustomCheck[];
duration?: number;
googleCloud?: GoogleCloudAnalysis;
}

§Properties

§
customChecks?: CustomCheck[]
[src]

Optional. Custom analysis checks from 3P metric providers.

§
duration?: number
[src]

Required. The amount of time in minutes the analysis on the target will last. If all analysis checks have successfully completed before the specified duration, the analysis is successful. If a check is still running while the specified duration passes, it will wait for that check to complete to determine if the analysis is successful. The maximum duration is 48 hours.

§

Optional. Google Cloud - based analysis checks.