export declare const DiskType: { /** * Default disk type. Use one of the other options below. */ readonly TypeUnspecified: "TYPE_UNSPECIFIED"; /** * Specifies a Google Compute Engine persistent hard disk. See https://cloud.google.com/compute/docs/disks/#pdspecs for details. */ readonly PersistentHdd: "PERSISTENT_HDD"; /** * Specifies a Google Compute Engine persistent solid-state disk. See https://cloud.google.com/compute/docs/disks/#pdspecs for details. */ readonly PersistentSsd: "PERSISTENT_SSD"; /** * Specifies a Google Compute Engine local SSD. See https://cloud.google.com/compute/docs/disks/local-ssd for details. */ readonly LocalSsd: "LOCAL_SSD"; }; /** * Required. The type of the disk to create. */ export type DiskType = (typeof DiskType)[keyof typeof DiskType];