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

QuotaExceededInfo

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

Additional details for quota exceeded error for resource quota.

interface QuotaExceededInfo {
dimensions?: {
[key: string]: string;
}
;
futureLimit?: number;
limit?: number;
limitName?: string;
metricName?: string;
rolloutStatus?: "IN_PROGRESS" | "ROLLOUT_STATUS_UNSPECIFIED";
}

§Properties

§
dimensions?: {
[key: string]: string;
}
[src]

The map holding related quota dimensions.

§
futureLimit?: number
[src]

Future quota limit being rolled out. The limit's unit depends on the quota type or metric.

§
limit?: number
[src]

Current effective quota limit. The limit's unit depends on the quota type or metric.

§
limitName?: string
[src]

The name of the quota limit.

§
metricName?: string
[src]

The Compute Engine quota metric name.

§
rolloutStatus?: "IN_PROGRESS" | "ROLLOUT_STATUS_UNSPECIFIED"
[src]

Rollout status of the future quota limit.