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

PerformanceLimits

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

The enforced performance limits, calculated from the instance's performance configuration.

interface PerformanceLimits {
readonly maxIops?: bigint;
readonly maxReadIops?: bigint;
readonly maxReadThroughputBps?: bigint;
readonly maxWriteIops?: bigint;
readonly maxWriteThroughputBps?: bigint;
}

§Properties

§
readonly maxIops?: bigint
[src]

Output only. The max IOPS.

§
readonly maxReadIops?: bigint
[src]

Output only. The max read IOPS.

§
readonly maxReadThroughputBps?: bigint
[src]

Output only. The max read throughput in bytes per second.

§
readonly maxWriteIops?: bigint
[src]

Output only. The max write IOPS.

§
readonly maxWriteThroughputBps?: bigint
[src]

Output only. The max write throughput in bytes per second.