Package com.google.longrunning
Interface ListOperationsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListOperationsResponse
,ListOperationsResponse.Builder
public interface ListOperationsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getNextPageToken()
The standard List next-page token.com.google.protobuf.ByteString
getNextPageTokenBytes()
The standard List next-page token.Operation
getOperations(int index)
A list of operations that matches the specified filter in the request.int
getOperationsCount()
A list of operations that matches the specified filter in the request.java.util.List<Operation>
getOperationsList()
A list of operations that matches the specified filter in the request.OperationOrBuilder
getOperationsOrBuilder(int index)
A list of operations that matches the specified filter in the request.java.util.List<? extends OperationOrBuilder>
getOperationsOrBuilderList()
A list of operations that matches the specified filter in the request.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getOperationsList
java.util.List<Operation> getOperationsList()
A list of operations that matches the specified filter in the request.
repeated .google.longrunning.Operation operations = 1;
-
getOperations
Operation getOperations(int index)
A list of operations that matches the specified filter in the request.
repeated .google.longrunning.Operation operations = 1;
-
getOperationsCount
int getOperationsCount()
A list of operations that matches the specified filter in the request.
repeated .google.longrunning.Operation operations = 1;
-
getOperationsOrBuilderList
java.util.List<? extends OperationOrBuilder> getOperationsOrBuilderList()
A list of operations that matches the specified filter in the request.
repeated .google.longrunning.Operation operations = 1;
-
getOperationsOrBuilder
OperationOrBuilder getOperationsOrBuilder(int index)
A list of operations that matches the specified filter in the request.
repeated .google.longrunning.Operation operations = 1;
-
getNextPageToken
java.lang.String getNextPageToken()
The standard List next-page token.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
The standard List next-page token.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-