Package com.google.cloud.tpu.v1
Interface NetworkEndpointOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
NetworkEndpoint
,NetworkEndpoint.Builder
public interface NetworkEndpointOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getIpAddress()
The IP address of this network endpoint.com.google.protobuf.ByteString
getIpAddressBytes()
The IP address of this network endpoint.int
getPort()
The port of this network endpoint.-
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()
The IP address of this network endpoint.
string ip_address = 1;
- Returns:
- The ipAddress.
-
getIpAddressBytes
com.google.protobuf.ByteString getIpAddressBytes()
The IP address of this network endpoint.
string ip_address = 1;
- Returns:
- The bytes for ipAddress.
-
getPort
int getPort()
The port of this network endpoint.
int32 port = 2;
- Returns:
- The port.
-
-