public interface ListSessionsRequestOrBuilder
extends com.google.protobuf.MessageOrBuilder
| Modifier and Type | Method and Description |
|---|---|
String |
getDatabase()
Required.
|
com.google.protobuf.ByteString |
getDatabaseBytes()
Required.
|
String |
getFilter()
An expression for filtering the results of the request.
|
com.google.protobuf.ByteString |
getFilterBytes()
An expression for filtering the results of the request.
|
int |
getPageSize()
Number of sessions to be returned in the response.
|
String |
getPageToken()
If non-empty, `page_token` should contain a
[next_page_token][google.spanner.v1.ListSessionsResponse.next_page_token] from a previous
[ListSessionsResponse][google.spanner.v1.ListSessionsResponse].
|
com.google.protobuf.ByteString |
getPageTokenBytes()
If non-empty, `page_token` should contain a
[next_page_token][google.spanner.v1.ListSessionsResponse.next_page_token] from a previous
[ListSessionsResponse][google.spanner.v1.ListSessionsResponse].
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneofString getDatabase()
Required. The database in which to list sessions.
string database = 1;com.google.protobuf.ByteString getDatabaseBytes()
Required. The database in which to list sessions.
string database = 1;int getPageSize()
Number of sessions to be returned in the response. If 0 or less, defaults to the server's maximum allowed page size.
int32 page_size = 2;String getPageToken()
If non-empty, `page_token` should contain a [next_page_token][google.spanner.v1.ListSessionsResponse.next_page_token] from a previous [ListSessionsResponse][google.spanner.v1.ListSessionsResponse].
string page_token = 3;com.google.protobuf.ByteString getPageTokenBytes()
If non-empty, `page_token` should contain a [next_page_token][google.spanner.v1.ListSessionsResponse.next_page_token] from a previous [ListSessionsResponse][google.spanner.v1.ListSessionsResponse].
string page_token = 3;String getFilter()
An expression for filtering the results of the request. Filter rules are
case insensitive. The fields eligible for filtering are:
* `labels.key` where key is the name of a label
Some examples of using filters are:
* `labels.env:*` --> The session has the label "env".
* `labels.env:dev` --> The session has the label "env" and the value of
the label contains the string "dev".
string filter = 4;com.google.protobuf.ByteString getFilterBytes()
An expression for filtering the results of the request. Filter rules are
case insensitive. The fields eligible for filtering are:
* `labels.key` where key is the name of a label
Some examples of using filters are:
* `labels.env:*` --> The session has the label "env".
* `labels.env:dev` --> The session has the label "env" and the value of
the label contains the string "dev".
string filter = 4;Copyright © 2019 Google LLC. All rights reserved.