Interface InstanceConfig.NetworkAddressOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
InstanceConfig.NetworkAddress,InstanceConfig.NetworkAddress.Builder
- Enclosing class:
- InstanceConfig
public static interface InstanceConfig.NetworkAddressOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAddress()IPv4 address to be assigned to the server.com.google.protobuf.ByteStringgetAddressBytes()IPv4 address to be assigned to the server.StringgetExistingNetworkId()Name of the existing network to use.com.google.protobuf.ByteStringgetExistingNetworkIdBytes()Name of the existing network to use.StringgetNetworkId()Id of the network to use, within the same ProvisioningConfig request.com.google.protobuf.ByteStringgetNetworkIdBytes()Id of the network to use, within the same ProvisioningConfig request.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getNetworkId
String getNetworkId()
Id of the network to use, within the same ProvisioningConfig request.
string network_id = 1;- Returns:
- The networkId.
-
getNetworkIdBytes
com.google.protobuf.ByteString getNetworkIdBytes()
Id of the network to use, within the same ProvisioningConfig request.
string network_id = 1;- Returns:
- The bytes for networkId.
-
getAddress
String getAddress()
IPv4 address to be assigned to the server.
string address = 2;- Returns:
- The address.
-
getAddressBytes
com.google.protobuf.ByteString getAddressBytes()
IPv4 address to be assigned to the server.
string address = 2;- Returns:
- The bytes for address.
-
getExistingNetworkId
String getExistingNetworkId()
Name of the existing network to use.
string existing_network_id = 3;- Returns:
- The existingNetworkId.
-
getExistingNetworkIdBytes
com.google.protobuf.ByteString getExistingNetworkIdBytes()
Name of the existing network to use.
string existing_network_id = 3;- Returns:
- The bytes for existingNetworkId.
-
-