Interface SearchAllAssignmentsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SearchAllAssignmentsResponse
,SearchAllAssignmentsResponse.Builder
public interface SearchAllAssignmentsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Assignment
getAssignments(int index)
List of assignments visible to the user.int
getAssignmentsCount()
List of assignments visible to the user.List<Assignment>
getAssignmentsList()
List of assignments visible to the user.AssignmentOrBuilder
getAssignmentsOrBuilder(int index)
List of assignments visible to the user.List<? extends AssignmentOrBuilder>
getAssignmentsOrBuilderList()
List of assignments visible to the user.String
getNextPageToken()
Token to retrieve the next page of results, or empty if there are no more results in the list.com.google.protobuf.ByteString
getNextPageTokenBytes()
Token to retrieve the next page of results, or empty if there are no more results in the list.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getAssignmentsList
List<Assignment> getAssignmentsList()
List of assignments visible to the user.
repeated .google.cloud.bigquery.reservation.v1.Assignment assignments = 1;
-
getAssignments
Assignment getAssignments(int index)
List of assignments visible to the user.
repeated .google.cloud.bigquery.reservation.v1.Assignment assignments = 1;
-
getAssignmentsCount
int getAssignmentsCount()
List of assignments visible to the user.
repeated .google.cloud.bigquery.reservation.v1.Assignment assignments = 1;
-
getAssignmentsOrBuilderList
List<? extends AssignmentOrBuilder> getAssignmentsOrBuilderList()
List of assignments visible to the user.
repeated .google.cloud.bigquery.reservation.v1.Assignment assignments = 1;
-
getAssignmentsOrBuilder
AssignmentOrBuilder getAssignmentsOrBuilder(int index)
List of assignments visible to the user.
repeated .google.cloud.bigquery.reservation.v1.Assignment assignments = 1;
-
getNextPageToken
String getNextPageToken()
Token to retrieve the next page of results, or empty if there are no more results in the list.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
Token to retrieve the next page of results, or empty if there are no more results in the list.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-