Package com.google.cloud.vmmigration.v1
Interface NetworkInterfaceOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
NetworkInterface,NetworkInterface.Builder
public interface NetworkInterfaceOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetExternalIp()The external IP to define in the NIC.com.google.protobuf.ByteStringgetExternalIpBytes()The external IP to define in the NIC.StringgetInternalIp()The internal IP to define in the NIC.com.google.protobuf.ByteStringgetInternalIpBytes()The internal IP to define in the NIC.StringgetNetwork()The network to connect the NIC to.com.google.protobuf.ByteStringgetNetworkBytes()The network to connect the NIC to.StringgetSubnetwork()The subnetwork to connect the NIC to.com.google.protobuf.ByteStringgetSubnetworkBytes()The subnetwork to connect the NIC to.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getNetwork
String getNetwork()
The network to connect the NIC to.
string network = 1;- Returns:
- The network.
-
getNetworkBytes
com.google.protobuf.ByteString getNetworkBytes()
The network to connect the NIC to.
string network = 1;- Returns:
- The bytes for network.
-
getSubnetwork
String getSubnetwork()
The subnetwork to connect the NIC to.
string subnetwork = 2;- Returns:
- The subnetwork.
-
getSubnetworkBytes
com.google.protobuf.ByteString getSubnetworkBytes()
The subnetwork to connect the NIC to.
string subnetwork = 2;- Returns:
- The bytes for subnetwork.
-
getInternalIp
String getInternalIp()
The internal IP to define in the NIC. The formats accepted are: `ephemeral` \ ipv4 address \ a named address resource full path.
string internal_ip = 3;- Returns:
- The internalIp.
-
getInternalIpBytes
com.google.protobuf.ByteString getInternalIpBytes()
The internal IP to define in the NIC. The formats accepted are: `ephemeral` \ ipv4 address \ a named address resource full path.
string internal_ip = 3;- Returns:
- The bytes for internalIp.
-
getExternalIp
String getExternalIp()
The external IP to define in the NIC.
string external_ip = 4;- Returns:
- The externalIp.
-
getExternalIpBytes
com.google.protobuf.ByteString getExternalIpBytes()
The external IP to define in the NIC.
string external_ip = 4;- Returns:
- The bytes for externalIp.
-
-