Interface ListTracesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListTracesResponse
,ListTracesResponse.Builder
public interface ListTracesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getNextPageToken()
If defined, indicates that there are more traces that match the request and that this value should be passed to the next request to continue retrieving additional traces.com.google.protobuf.ByteString
getNextPageTokenBytes()
If defined, indicates that there are more traces that match the request and that this value should be passed to the next request to continue retrieving additional traces.Trace
getTraces(int index)
List of trace records as specified by the view parameter.int
getTracesCount()
List of trace records as specified by the view parameter.List<Trace>
getTracesList()
List of trace records as specified by the view parameter.TraceOrBuilder
getTracesOrBuilder(int index)
List of trace records as specified by the view parameter.List<? extends TraceOrBuilder>
getTracesOrBuilderList()
List of trace records as specified by the view parameter.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTracesList
List<Trace> getTracesList()
List of trace records as specified by the view parameter.
repeated .google.devtools.cloudtrace.v1.Trace traces = 1;
-
getTraces
Trace getTraces(int index)
List of trace records as specified by the view parameter.
repeated .google.devtools.cloudtrace.v1.Trace traces = 1;
-
getTracesCount
int getTracesCount()
List of trace records as specified by the view parameter.
repeated .google.devtools.cloudtrace.v1.Trace traces = 1;
-
getTracesOrBuilderList
List<? extends TraceOrBuilder> getTracesOrBuilderList()
List of trace records as specified by the view parameter.
repeated .google.devtools.cloudtrace.v1.Trace traces = 1;
-
getTracesOrBuilder
TraceOrBuilder getTracesOrBuilder(int index)
List of trace records as specified by the view parameter.
repeated .google.devtools.cloudtrace.v1.Trace traces = 1;
-
getNextPageToken
String getNextPageToken()
If defined, indicates that there are more traces that match the request and that this value should be passed to the next request to continue retrieving additional traces.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
If defined, indicates that there are more traces that match the request and that this value should be passed to the next request to continue retrieving additional traces.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-