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;
}