Interface NetworkAddressReservationOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
NetworkAddressReservation
,NetworkAddressReservation.Builder
public interface NetworkAddressReservationOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getEndAddress()
The last address of this reservation block, inclusive.com.google.protobuf.ByteString
getEndAddressBytes()
The last address of this reservation block, inclusive.String
getNote()
A note about this reservation, intended for human consumption.com.google.protobuf.ByteString
getNoteBytes()
A note about this reservation, intended for human consumption.String
getStartAddress()
The first address of this reservation block.com.google.protobuf.ByteString
getStartAddressBytes()
The first address of this reservation block.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getStartAddress
String getStartAddress()
The first address of this reservation block. Must be specified as a single IPv4 address, e.g. 10.1.2.2.
string start_address = 1;
- Returns:
- The startAddress.
-
getStartAddressBytes
com.google.protobuf.ByteString getStartAddressBytes()
The first address of this reservation block. Must be specified as a single IPv4 address, e.g. 10.1.2.2.
string start_address = 1;
- Returns:
- The bytes for startAddress.
-
getEndAddress
String getEndAddress()
The last address of this reservation block, inclusive. I.e., for cases when reservations are only single addresses, end_address and start_address will be the same. Must be specified as a single IPv4 address, e.g. 10.1.2.2.
string end_address = 2;
- Returns:
- The endAddress.
-
getEndAddressBytes
com.google.protobuf.ByteString getEndAddressBytes()
The last address of this reservation block, inclusive. I.e., for cases when reservations are only single addresses, end_address and start_address will be the same. Must be specified as a single IPv4 address, e.g. 10.1.2.2.
string end_address = 2;
- Returns:
- The bytes for endAddress.
-
getNote
String getNote()
A note about this reservation, intended for human consumption.
string note = 3;
- Returns:
- The note.
-
getNoteBytes
com.google.protobuf.ByteString getNoteBytes()
A note about this reservation, intended for human consumption.
string note = 3;
- Returns:
- The bytes for note.
-
-