AttachedDiskConfig
import type { AttachedDiskConfig } from "https://googleapis.deno.dev/v1/dataproc:v1.ts";Specifies the config of attached disk options for single VM instance.
interface AttachedDiskConfig {
diskSizeGb?: number;
diskType?:
| "DISK_TYPE_UNSPECIFIED"
| "HYPERDISK_BALANCED"
| "HYPERDISK_EXTREME"
| "HYPERDISK_ML"
| "HYPERDISK_THROUGHPUT";
provisionedIops?: bigint;
provisionedThroughput?: bigint;
}§Properties
§
diskType?: "DISK_TYPE_UNSPECIFIED" | "HYPERDISK_BALANCED" | "HYPERDISK_EXTREME" | "HYPERDISK_ML" | "HYPERDISK_THROUGHPUT"
[src]Optional. Disk type.
§
provisionedIops?: bigint
[src]Optional. Indicates how many IOPS to provision for the attached disk. This sets the number of I/O operations per second that the disk can handle. See https://cloud.google.com/compute/docs/disks/hyperdisks#hyperdisk-features
§
provisionedThroughput?: bigint
[src]Optional. Indicates how much throughput to provision for the attached disk. This sets the number of throughput mb per second that the disk can handle. See https://cloud.google.com/compute/docs/disks/hyperdisks#hyperdisk-features