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

SnapshotReservationDetail

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

Details about snapshot space reservation and usage on the storage volume.

interface SnapshotReservationDetail {
reservedSpaceGib?: bigint;
reservedSpacePercent?: number;
reservedSpaceRemainingGib?: bigint;
reservedSpaceUsedPercent?: number;
}

§Properties

§
reservedSpaceGib?: bigint
[src]

The space on this storage volume reserved for snapshots, shown in GiB.

§
reservedSpacePercent?: number
[src]

Percent of the total Volume size reserved for snapshot copies. Enabling snapshots requires reserving 20% or more of the storage volume space for snapshots. Maximum reserved space for snapshots is 40%. Setting this field will effectively set snapshot_enabled to true.

§
reservedSpaceRemainingGib?: bigint
[src]

The amount, in GiB, of available space in this storage volume's reserved snapshot space.

§
reservedSpaceUsedPercent?: number
[src]

The percent of snapshot space on this storage volume actually being used by the snapshot copies. This value might be higher than 100% if the snapshot copies have overflowed into the data portion of the storage volume.