Interface ListLocksResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListLocksResponse
,ListLocksResponse.Builder
public interface ListLocksResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Lock
getLocks(int index)
The locks from the specified database.int
getLocksCount()
The locks from the specified database.List<Lock>
getLocksList()
The locks from the specified database.LockOrBuilder
getLocksOrBuilder(int index)
The locks from the specified database.List<? extends LockOrBuilder>
getLocksOrBuilderList()
The locks from the specified database.String
getNextPageToken()
A token, which can be sent as `page_token` to retrieve the next page.com.google.protobuf.ByteString
getNextPageTokenBytes()
A token, which can be sent as `page_token` to retrieve the next page.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getLocksList
List<Lock> getLocksList()
The locks from the specified database.
repeated .google.cloud.bigquery.biglake.v1alpha1.Lock locks = 1;
-
getLocks
Lock getLocks(int index)
The locks from the specified database.
repeated .google.cloud.bigquery.biglake.v1alpha1.Lock locks = 1;
-
getLocksCount
int getLocksCount()
The locks from the specified database.
repeated .google.cloud.bigquery.biglake.v1alpha1.Lock locks = 1;
-
getLocksOrBuilderList
List<? extends LockOrBuilder> getLocksOrBuilderList()
The locks from the specified database.
repeated .google.cloud.bigquery.biglake.v1alpha1.Lock locks = 1;
-
getLocksOrBuilder
LockOrBuilder getLocksOrBuilder(int index)
The locks from the specified database.
repeated .google.cloud.bigquery.biglake.v1alpha1.Lock locks = 1;
-
getNextPageToken
String getNextPageToken()
A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-