Package com.google.cloud.compute.v1
Interface RouterAdvertisedIpRangeOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
RouterAdvertisedIpRange
,RouterAdvertisedIpRange.Builder
public interface RouterAdvertisedIpRangeOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDescription()
User-specified description for the IP range.com.google.protobuf.ByteString
getDescriptionBytes()
User-specified description for the IP range.String
getRange()
The IP range to advertise.com.google.protobuf.ByteString
getRangeBytes()
The IP range to advertise.boolean
hasDescription()
User-specified description for the IP range.boolean
hasRange()
The IP range to advertise.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasDescription
boolean hasDescription()
User-specified description for the IP range.
optional string description = 422937596;
- Returns:
- Whether the description field is set.
-
getDescription
String getDescription()
User-specified description for the IP range.
optional string description = 422937596;
- Returns:
- The description.
-
getDescriptionBytes
com.google.protobuf.ByteString getDescriptionBytes()
User-specified description for the IP range.
optional string description = 422937596;
- Returns:
- The bytes for description.
-
hasRange
boolean hasRange()
The IP range to advertise. The value must be a CIDR-formatted string.
optional string range = 108280125;
- Returns:
- Whether the range field is set.
-
getRange
String getRange()
The IP range to advertise. The value must be a CIDR-formatted string.
optional string range = 108280125;
- Returns:
- The range.
-
getRangeBytes
com.google.protobuf.ByteString getRangeBytes()
The IP range to advertise. The value must be a CIDR-formatted string.
optional string range = 108280125;
- Returns:
- The bytes for range.
-
-