Interface MachineNetworkDetailsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
MachineNetworkDetails
,MachineNetworkDetails.Builder
public interface MachineNetworkDetailsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NetworkAdapterList
getAdapters()
List of network adapters.NetworkAdapterListOrBuilder
getAdaptersOrBuilder()
List of network adapters.String
getPrimaryIpAddress()
The primary IP address of the machine.com.google.protobuf.ByteString
getPrimaryIpAddressBytes()
The primary IP address of the machine.String
getPrimaryMacAddress()
MAC address of the machine.com.google.protobuf.ByteString
getPrimaryMacAddressBytes()
MAC address of the machine.String
getPublicIpAddress()
The public IP address of the machine.com.google.protobuf.ByteString
getPublicIpAddressBytes()
The public IP address of the machine.boolean
hasAdapters()
List of network adapters.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getPrimaryIpAddress
String getPrimaryIpAddress()
The primary IP address of the machine.
string primary_ip_address = 1;
- Returns:
- The primaryIpAddress.
-
getPrimaryIpAddressBytes
com.google.protobuf.ByteString getPrimaryIpAddressBytes()
The primary IP address of the machine.
string primary_ip_address = 1;
- Returns:
- The bytes for primaryIpAddress.
-
getPublicIpAddress
String getPublicIpAddress()
The public IP address of the machine.
string public_ip_address = 2;
- Returns:
- The publicIpAddress.
-
getPublicIpAddressBytes
com.google.protobuf.ByteString getPublicIpAddressBytes()
The public IP address of the machine.
string public_ip_address = 2;
- Returns:
- The bytes for publicIpAddress.
-
getPrimaryMacAddress
String getPrimaryMacAddress()
MAC address of the machine. This property is used to uniqly identify the machine.
string primary_mac_address = 3;
- Returns:
- The primaryMacAddress.
-
getPrimaryMacAddressBytes
com.google.protobuf.ByteString getPrimaryMacAddressBytes()
MAC address of the machine. This property is used to uniqly identify the machine.
string primary_mac_address = 3;
- Returns:
- The bytes for primaryMacAddress.
-
hasAdapters
boolean hasAdapters()
List of network adapters.
.google.cloud.migrationcenter.v1.NetworkAdapterList adapters = 4;
- Returns:
- Whether the adapters field is set.
-
getAdapters
NetworkAdapterList getAdapters()
List of network adapters.
.google.cloud.migrationcenter.v1.NetworkAdapterList adapters = 4;
- Returns:
- The adapters.
-
getAdaptersOrBuilder
NetworkAdapterListOrBuilder getAdaptersOrBuilder()
List of network adapters.
.google.cloud.migrationcenter.v1.NetworkAdapterList adapters = 4;
-
-