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