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

DiskInfo

import type { DiskInfo } from "https://aws-api.deno.dev/v0.3/services/lightsail.ts?docs=full";

Describes a disk.

interface DiskInfo {
isSystemDisk?: boolean | null;
name?: string | null;
path?: string | null;
sizeInGb?: number | null;
}

§Properties

§
isSystemDisk?: boolean | null
[src]

A Boolean value indicating whether this disk is a system disk (has an operating system loaded on it).

§
name?: string | null
[src]

The disk name.

§
path?: string | null
[src]

The disk path.

§
sizeInGb?: number | null
[src]

The size of the disk in GB (e.g., 32).