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

ProvisioningQuota

import type { ProvisioningQuota } from "https://googleapis.deno.dev/v1/baremetalsolution:v2.ts";

A provisioning quota for a given project.

interface ProvisioningQuota {
assetType?:
| "ASSET_TYPE_UNSPECIFIED"
| "ASSET_TYPE_SERVER"
| "ASSET_TYPE_STORAGE"
| "ASSET_TYPE_NETWORK";
availableCount?: number;
gcpService?: string;
instanceQuota?: InstanceQuota;
location?: string;
readonly name?: string;
networkBandwidth?: bigint;
serverCount?: bigint;
storageGib?: bigint;
}

§Properties

§
assetType?: "ASSET_TYPE_UNSPECIFIED" | "ASSET_TYPE_SERVER" | "ASSET_TYPE_STORAGE" | "ASSET_TYPE_NETWORK"
[src]

The asset type of this provisioning quota.

§
availableCount?: number
[src]

The available count of the provisioning quota.

§
gcpService?: string
[src]

The gcp service of the provisioning quota.

§
instanceQuota?: InstanceQuota
[src]

Instance quota.

§
location?: string
[src]

The specific location of the provisioining quota.

§
readonly name?: string
[src]

Output only. The name of the provisioning quota.

§
networkBandwidth?: bigint
[src]

Network bandwidth, Gbps

§
serverCount?: bigint
[src]

Server count.

§
storageGib?: bigint
[src]

Storage size (GB).