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

InterconnectApplicationAwareInterconnectBandwidthPercentage

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

Specify bandwidth percentages [1-100] for various traffic classes in BandwidthPercentagePolicy. The sum of all percentages must equal 100. All traffic classes must have a percentage value specified.

interface InterconnectApplicationAwareInterconnectBandwidthPercentage {
percentage?: number;
trafficClass?:
| "TC1"
| "TC2"
| "TC3"
| "TC4"
| "TC5"
| "TC6";
}

§Properties

§
percentage?: number
[src]

Bandwidth percentage for a specific traffic class.

§
trafficClass?: "TC1" | "TC2" | "TC3" | "TC4" | "TC5" | "TC6"
[src]

TrafficClass whose bandwidth percentage is being specified.