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

StoragePoolDisk

import type { StoragePoolDisk } from "https://googleapis.deno.dev/v1/compute:v1.ts";
interface StoragePoolDisk {
readonly attachedInstances?: string[];
readonly creationTimestamp?: string;
readonly disk?: string;
readonly name?: string;
readonly provisionedIops?: bigint;
readonly provisionedThroughput?: bigint;
readonly resourcePolicies?: string[];
readonly sizeGb?: bigint;
readonly status?:
| "CREATING"
| "DELETING"
| "FAILED"
| "READY"
| "RESTORING"
| "UNAVAILABLE";
readonly type?: string;
readonly usedBytes?: bigint;
}

§Properties

§
readonly attachedInstances?: string[]
[src]

Output only. [Output Only] Instances this disk is attached to.

§
readonly creationTimestamp?: string
[src]

Output only. [Output Only] Creation timestamp inRFC3339 text format.

§
readonly disk?: string
[src]

Output only. [Output Only] The URL of the disk.

§
readonly name?: string
[src]

Output only. [Output Only] The name of the disk.

§
readonly provisionedIops?: bigint
[src]

Output only. [Output Only] The number of IOPS provisioned for the disk.

§
readonly provisionedThroughput?: bigint
[src]

Output only. [Output Only] The throughput provisioned for the disk.

§
readonly resourcePolicies?: string[]
[src]

Output only. [Output Only] Resource policies applied to disk for automatic snapshot creations.

§
readonly sizeGb?: bigint
[src]

Output only. [Output Only] The disk size, in GB.

§
readonly status?: "CREATING" | "DELETING" | "FAILED" | "READY" | "RESTORING" | "UNAVAILABLE"
[src]

Output only. [Output Only] The disk status.

§
readonly type?: string
[src]

Output only. [Output Only] The disk type.

§
readonly usedBytes?: bigint
[src]

Output only. [Output Only] Amount of disk space used.