Interface NetworkAddressOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
NetworkAddress
,NetworkAddress.Builder
public interface NetworkAddressOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NetworkAddress.AddressAssignment
getAssignment()
Whether DHCP is used to assign addresses.int
getAssignmentValue()
Whether DHCP is used to assign addresses.String
getBcast()
Broadcast address.com.google.protobuf.ByteString
getBcastBytes()
Broadcast address.String
getFqdn()
Fully qualified domain name.com.google.protobuf.ByteString
getFqdnBytes()
Fully qualified domain name.String
getIpAddress()
Assigned or configured IP Address.com.google.protobuf.ByteString
getIpAddressBytes()
Assigned or configured IP Address.String
getSubnetMask()
Subnet mask.com.google.protobuf.ByteString
getSubnetMaskBytes()
Subnet mask.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getIpAddress
String getIpAddress()
Assigned or configured IP Address.
string ip_address = 1;
- Returns:
- The ipAddress.
-
getIpAddressBytes
com.google.protobuf.ByteString getIpAddressBytes()
Assigned or configured IP Address.
string ip_address = 1;
- Returns:
- The bytes for ipAddress.
-
getSubnetMask
String getSubnetMask()
Subnet mask.
string subnet_mask = 2;
- Returns:
- The subnetMask.
-
getSubnetMaskBytes
com.google.protobuf.ByteString getSubnetMaskBytes()
Subnet mask.
string subnet_mask = 2;
- Returns:
- The bytes for subnetMask.
-
getBcast
String getBcast()
Broadcast address.
string bcast = 3;
- Returns:
- The bcast.
-
getBcastBytes
com.google.protobuf.ByteString getBcastBytes()
Broadcast address.
string bcast = 3;
- Returns:
- The bytes for bcast.
-
getFqdn
String getFqdn()
Fully qualified domain name.
string fqdn = 4;
- Returns:
- The fqdn.
-
getFqdnBytes
com.google.protobuf.ByteString getFqdnBytes()
Fully qualified domain name.
string fqdn = 4;
- Returns:
- The bytes for fqdn.
-
getAssignmentValue
int getAssignmentValue()
Whether DHCP is used to assign addresses.
.google.cloud.migrationcenter.v1.NetworkAddress.AddressAssignment assignment = 5;
- Returns:
- The enum numeric value on the wire for assignment.
-
getAssignment
NetworkAddress.AddressAssignment getAssignment()
Whether DHCP is used to assign addresses.
.google.cloud.migrationcenter.v1.NetworkAddress.AddressAssignment assignment = 5;
- Returns:
- The assignment.
-
-