Interface DeliverInfoOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DeliverInfo
,DeliverInfo.Builder
public interface DeliverInfoOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getResourceUri()
URI of the resource that the packet is delivered to.com.google.protobuf.ByteString
getResourceUriBytes()
URI of the resource that the packet is delivered to.DeliverInfo.Target
getTarget()
Target type where the packet is delivered to.int
getTargetValue()
Target type where the packet is delivered to.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTargetValue
int getTargetValue()
Target type where the packet is delivered to.
.google.cloud.networkmanagement.v1beta1.DeliverInfo.Target target = 1;
- Returns:
- The enum numeric value on the wire for target.
-
getTarget
DeliverInfo.Target getTarget()
Target type where the packet is delivered to.
.google.cloud.networkmanagement.v1beta1.DeliverInfo.Target target = 1;
- Returns:
- The target.
-
getResourceUri
String getResourceUri()
URI of the resource that the packet is delivered to.
string resource_uri = 2;
- Returns:
- The resourceUri.
-
getResourceUriBytes
com.google.protobuf.ByteString getResourceUriBytes()
URI of the resource that the packet is delivered to.
string resource_uri = 2;
- Returns:
- The bytes for resourceUri.
-
-