Package com.google.dataflow.v1beta3
Interface DataDiskAssignmentOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DataDiskAssignment
,DataDiskAssignment.Builder
public interface DataDiskAssignmentOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDataDisks(int index)
Mounted data disks.com.google.protobuf.ByteString
getDataDisksBytes(int index)
Mounted data disks.int
getDataDisksCount()
Mounted data disks.List<String>
getDataDisksList()
Mounted data disks.String
getVmInstance()
VM instance name the data disks mounted to, for example "myproject-1014-104817-4c2-harness-0".com.google.protobuf.ByteString
getVmInstanceBytes()
VM instance name the data disks mounted to, for example "myproject-1014-104817-4c2-harness-0".-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getVmInstance
String getVmInstance()
VM instance name the data disks mounted to, for example "myproject-1014-104817-4c2-harness-0".
string vm_instance = 1;
- Returns:
- The vmInstance.
-
getVmInstanceBytes
com.google.protobuf.ByteString getVmInstanceBytes()
VM instance name the data disks mounted to, for example "myproject-1014-104817-4c2-harness-0".
string vm_instance = 1;
- Returns:
- The bytes for vmInstance.
-
getDataDisksList
List<String> getDataDisksList()
Mounted data disks. The order is important a data disk's 0-based index in this list defines which persistent directory the disk is mounted to, for example the list of { "myproject-1014-104817-4c2-harness-0-disk-0" }, { "myproject-1014-104817-4c2-harness-0-disk-1" }.
repeated string data_disks = 2;
- Returns:
- A list containing the dataDisks.
-
getDataDisksCount
int getDataDisksCount()
Mounted data disks. The order is important a data disk's 0-based index in this list defines which persistent directory the disk is mounted to, for example the list of { "myproject-1014-104817-4c2-harness-0-disk-0" }, { "myproject-1014-104817-4c2-harness-0-disk-1" }.
repeated string data_disks = 2;
- Returns:
- The count of dataDisks.
-
getDataDisks
String getDataDisks(int index)
Mounted data disks. The order is important a data disk's 0-based index in this list defines which persistent directory the disk is mounted to, for example the list of { "myproject-1014-104817-4c2-harness-0-disk-0" }, { "myproject-1014-104817-4c2-harness-0-disk-1" }.
repeated string data_disks = 2;
- Parameters:
index
- The index of the element to return.- Returns:
- The dataDisks at the given index.
-
getDataDisksBytes
com.google.protobuf.ByteString getDataDisksBytes(int index)
Mounted data disks. The order is important a data disk's 0-based index in this list defines which persistent directory the disk is mounted to, for example the list of { "myproject-1014-104817-4c2-harness-0-disk-0" }, { "myproject-1014-104817-4c2-harness-0-disk-1" }.
repeated string data_disks = 2;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the dataDisks at the given index.
-
-