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

ErrorBudget

import type { ErrorBudget } from "https://googleapis.deno.dev/v1/saasservicemgmt:v1beta1.ts";

The configuration for error budget. If the number of failed units exceeds max(allowed_count, allowed_ratio * total_units), the rollout will be paused.

interface ErrorBudget {
allowedCount?: number;
allowedPercentage?: number;
}

§Properties

§
allowedCount?: number
[src]

Optional. The maximum number of failed units allowed in a location without pausing the rollout.

§
allowedPercentage?: number
[src]

Optional. The maximum percentage of units allowed to fail (0, 100] within a location without pausing the rollout.