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 {
attachedInstances?: string[];
creationTimestamp?: string;
disk?: string;
name?: string;
provisionedIops?: bigint;
provisionedThroughput?: bigint;
resourcePolicies?: string[];
sizeGb?: bigint;
status?:
| "CREATING"
| "DELETING"
| "FAILED"
| "READY"
| "RESTORING"
| "UNAVAILABLE";
type?: string;
usedBytes?: bigint;
}

§Properties

§
attachedInstances?: string[]
[src]

[Output Only] Instances this disk is attached to.

§
creationTimestamp?: string
[src]

[Output Only] Creation timestamp in RFC3339 text format.

§
disk?: string
[src]

[Output Only] The URL of the disk.

§
name?: string
[src]

[Output Only] The name of the disk.

§
provisionedIops?: bigint
[src]

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

§
provisionedThroughput?: bigint
[src]

[Output Only] The throughput provisioned for the disk.

§
resourcePolicies?: string[]
[src]

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

§
sizeGb?: bigint
[src]

[Output Only] The disk size, in GB.

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

[Output Only] The disk status.

§
type?: string
[src]

[Output Only] The disk type.

§
usedBytes?: bigint
[src]

[Output Only] Amount of disk space used.