Package com.google.dataflow.v1beta3
Interface KeyRangeDataDiskAssignmentOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
KeyRangeDataDiskAssignment
,KeyRangeDataDiskAssignment.Builder
public interface KeyRangeDataDiskAssignmentOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDataDisk()
The name of the data disk where data for this range is stored.com.google.protobuf.ByteString
getDataDiskBytes()
The name of the data disk where data for this range is stored.String
getEnd()
The end (exclusive) of the key range.com.google.protobuf.ByteString
getEndBytes()
The end (exclusive) of the key range.String
getStart()
The start (inclusive) of the key range.com.google.protobuf.ByteString
getStartBytes()
The start (inclusive) of the key range.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getStart
String getStart()
The start (inclusive) of the key range.
string start = 1;
- Returns:
- The start.
-
getStartBytes
com.google.protobuf.ByteString getStartBytes()
The start (inclusive) of the key range.
string start = 1;
- Returns:
- The bytes for start.
-
getEnd
String getEnd()
The end (exclusive) of the key range.
string end = 2;
- Returns:
- The end.
-
getEndBytes
com.google.protobuf.ByteString getEndBytes()
The end (exclusive) of the key range.
string end = 2;
- Returns:
- The bytes for end.
-
getDataDisk
String getDataDisk()
The name of the data disk where data for this range is stored. This name is local to the Google Cloud Platform project and uniquely identifies the disk within that project, for example "myproject-1014-104817-4c2-harness-0-disk-1".
string data_disk = 3;
- Returns:
- The dataDisk.
-
getDataDiskBytes
com.google.protobuf.ByteString getDataDiskBytes()
The name of the data disk where data for this range is stored. This name is local to the Google Cloud Platform project and uniquely identifies the disk within that project, for example "myproject-1014-104817-4c2-harness-0-disk-1".
string data_disk = 3;
- Returns:
- The bytes for dataDisk.
-
-