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

DiskType

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

Represents a Disk Type resource. Google Compute Engine has two Disk Type resources: * Regional * Zonal You can choose from a variety of disk types based on your needs. For more information, read Storage options. The diskTypes resource represents disk types for a zonal persistent disk. For more information, read Zonal persistent disks. The regionDiskTypes resource represents disk types for a regional persistent disk. For more information, read Regional persistent disks.

interface DiskType {
creationTimestamp?: string;
defaultDiskSizeGb?: bigint;
deprecated?: DeprecationStatus;
description?: string;
id?: bigint;
kind?: string;
name?: string;
region?: string;
selfLink?: string;
validDiskSize?: string;
zone?: string;
}

§Properties

§
creationTimestamp?: string
[src]

[Output Only] Creation timestamp in RFC3339 text format.

§
defaultDiskSizeGb?: bigint
[src]

[Output Only] Server-defined default disk size in GB.

§

[Output Only] The deprecation status associated with this disk type.

§
description?: string
[src]

[Output Only] An optional description of this resource.

§
id?: bigint
[src]

[Output Only] The unique identifier for the resource. This identifier is defined by the server.

§
kind?: string
[src]

[Output Only] Type of the resource. Always compute#diskType for disk types.

§
name?: string
[src]

[Output Only] Name of the resource.

§
region?: string
[src]

[Output Only] URL of the region where the disk type resides. Only applicable for regional resources. You must specify this field as part of the HTTP request URL. It is not settable as a field in the request body.

§
validDiskSize?: string
[src]

[Output Only] An optional textual description of the valid disk size, such as "10GB-10TB".

§
zone?: string
[src]

[Output Only] URL of the zone where the disk type resides. You must specify this field as part of the HTTP request URL. It is not settable as a field in the request body.