Disk Args
data class DiskArgs(val autoDelete: Output<Boolean>? = null, val mountPoint: Output<String>? = null, val name: Output<String>, val readOnly: Output<Boolean>? = null, val sizeGb: Output<Int>? = null, val source: Output<String>? = null, val type: Output<DiskType>) : ConvertibleToJava<DiskArgs>
A Google Compute Engine disk resource specification.
Constructors
Functions
Properties
Link copied to clipboard
Required at create time and cannot be overridden at run time. Specifies the path in the docker container where files on this disk should be located. For example, if mountPoint
is /mnt/disk
, and the parameter has localPath
inputs/file.txt
, the docker container can access the data at /mnt/disk/inputs/file.txt
.