Interface AllocationPolicy.DiskOrBuilder (0.3.2)

public static interface AllocationPolicy.DiskOrBuilder extends MessageOrBuilder

Implements

MessageOrBuilder

Methods

getDataSourceCase()

public abstract AllocationPolicy.Disk.DataSourceCase getDataSourceCase()
Returns
TypeDescription
AllocationPolicy.Disk.DataSourceCase

getDiskInterface()

public abstract String getDiskInterface()

Local SSDs are available through both "SCSI" and "NVMe" interfaces. If not indicated, "NVMe" will be the default one for local ssds. We only support "SCSI" for persistent disks now.

string disk_interface = 6;

Returns
TypeDescription
String

The diskInterface.

getDiskInterfaceBytes()

public abstract ByteString getDiskInterfaceBytes()

Local SSDs are available through both "SCSI" and "NVMe" interfaces. If not indicated, "NVMe" will be the default one for local ssds. We only support "SCSI" for persistent disks now.

string disk_interface = 6;

Returns
TypeDescription
ByteString

The bytes for diskInterface.

getImage()

public abstract String getImage()

Name of a public or custom image used as the data source.

string image = 4;

Returns
TypeDescription
String

The image.

getImageBytes()

public abstract ByteString getImageBytes()

Name of a public or custom image used as the data source.

string image = 4;

Returns
TypeDescription
ByteString

The bytes for image.

getSizeGb()

public abstract long getSizeGb()

Disk size in GB. This field is ignored if data_source is disk or image. If type is local-ssd, size_gb should be a multiple of 375GB, otherwise, the final size will be the next greater multiple of 375 GB.

int64 size_gb = 2;

Returns
TypeDescription
long

The sizeGb.

getSnapshot()

public abstract String getSnapshot()

Name of a snapshot used as the data source.

string snapshot = 5;

Returns
TypeDescription
String

The snapshot.

getSnapshotBytes()

public abstract ByteString getSnapshotBytes()

Name of a snapshot used as the data source.

string snapshot = 5;

Returns
TypeDescription
ByteString

The bytes for snapshot.

getType()

public abstract String getType()

Disk type as shown in gcloud compute disk-types list For example, "pd-ssd", "pd-standard", "pd-balanced", "local-ssd".

string type = 1;

Returns
TypeDescription
String

The type.

getTypeBytes()

public abstract ByteString getTypeBytes()

Disk type as shown in gcloud compute disk-types list For example, "pd-ssd", "pd-standard", "pd-balanced", "local-ssd".

string type = 1;

Returns
TypeDescription
ByteString

The bytes for type.

hasImage()

public abstract boolean hasImage()

Name of a public or custom image used as the data source.

string image = 4;

Returns
TypeDescription
boolean

Whether the image field is set.

hasSnapshot()

public abstract boolean hasSnapshot()

Name of a snapshot used as the data source.

string snapshot = 5;

Returns
TypeDescription
boolean

Whether the snapshot field is set.