Interface ListReservationsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListReservationsResponse
,ListReservationsResponse.Builder
public interface ListReservationsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description 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.Reservation
getReservations(int index)
List of reservations visible to the user.int
getReservationsCount()
List of reservations visible to the user.List<Reservation>
getReservationsList()
List of reservations visible to the user.ReservationOrBuilder
getReservationsOrBuilder(int index)
List of reservations visible to the user.List<? extends ReservationOrBuilder>
getReservationsOrBuilderList()
List of reservations visible to the user.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getReservationsList
List<Reservation> getReservationsList()
List of reservations visible to the user.
repeated .google.cloud.bigquery.reservation.v1.Reservation reservations = 1;
-
getReservations
Reservation getReservations(int index)
List of reservations visible to the user.
repeated .google.cloud.bigquery.reservation.v1.Reservation reservations = 1;
-
getReservationsCount
int getReservationsCount()
List of reservations visible to the user.
repeated .google.cloud.bigquery.reservation.v1.Reservation reservations = 1;
-
getReservationsOrBuilderList
List<? extends ReservationOrBuilder> getReservationsOrBuilderList()
List of reservations visible to the user.
repeated .google.cloud.bigquery.reservation.v1.Reservation reservations = 1;
-
getReservationsOrBuilder
ReservationOrBuilder getReservationsOrBuilder(int index)
List of reservations visible to the user.
repeated .google.cloud.bigquery.reservation.v1.Reservation reservations = 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.
-
-