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 String
getExternalIp()
The external IP to define in the NIC.com.google.protobuf.ByteString
getExternalIpBytes()
The external IP to define in the NIC.String
getInternalIp()
The internal IP to define in the NIC.com.google.protobuf.ByteString
getInternalIpBytes()
The internal IP to define in the NIC.String
getNetwork()
The network to connect the NIC to.com.google.protobuf.ByteString
getNetworkBytes()
The network to connect the NIC to.String
getSubnetwork()
The subnetwork to connect the NIC to.com.google.protobuf.ByteString
getSubnetworkBytes()
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.
-
-