Package com.google.rpc
Interface RequestInfoOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
- All Known Implementing Classes:
RequestInfo
,RequestInfo.Builder
public interface RequestInfoOrBuilder
extends com.google.protobuf.MessageLiteOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptionAn opaque string that should only be interpreted by the service generating it.com.google.protobuf.ByteString
An opaque string that should only be interpreted by the service generating it.Any data that was used to serve this request.com.google.protobuf.ByteString
Any data that was used to serve this request.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
getDefaultInstanceForType, isInitialized
-
Method Details
-
getRequestId
String getRequestId()An opaque string that should only be interpreted by the service generating it. For example, it can be used to identify requests in the service's logs.
string request_id = 1 [json_name = "requestId"];
- Returns:
- The requestId.
-
getRequestIdBytes
com.google.protobuf.ByteString getRequestIdBytes()An opaque string that should only be interpreted by the service generating it. For example, it can be used to identify requests in the service's logs.
string request_id = 1 [json_name = "requestId"];
- Returns:
- The bytes for requestId.
-
getServingData
String getServingData()Any data that was used to serve this request. For example, an encrypted stack trace that can be sent back to the service provider for debugging.
string serving_data = 2 [json_name = "servingData"];
- Returns:
- The servingData.
-
getServingDataBytes
com.google.protobuf.ByteString getServingDataBytes()Any data that was used to serve this request. For example, an encrypted stack trace that can be sent back to the service provider for debugging.
string serving_data = 2 [json_name = "servingData"];
- Returns:
- The bytes for servingData.
-