Interface ListConnectionsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListConnectionsResponse,ListConnectionsResponse.Builder
public interface ListConnectionsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConnectiongetConnections(int index)List of connections.intgetConnectionsCount()List of connections.List<Connection>getConnectionsList()List of connections.ConnectionOrBuildergetConnectionsOrBuilder(int index)List of connections.List<? extends ConnectionOrBuilder>getConnectionsOrBuilderList()List of connections.StringgetNextPageToken()Next page token.com.google.protobuf.ByteStringgetNextPageTokenBytes()Next page token.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getNextPageToken
String getNextPageToken()
Next page token.
string next_page_token = 1;- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
Next page token.
string next_page_token = 1;- Returns:
- The bytes for nextPageToken.
-
getConnectionsList
List<Connection> getConnectionsList()
List of connections.
repeated .google.cloud.bigquery.connection.v1.Connection connections = 2;
-
getConnections
Connection getConnections(int index)
List of connections.
repeated .google.cloud.bigquery.connection.v1.Connection connections = 2;
-
getConnectionsCount
int getConnectionsCount()
List of connections.
repeated .google.cloud.bigquery.connection.v1.Connection connections = 2;
-
getConnectionsOrBuilderList
List<? extends ConnectionOrBuilder> getConnectionsOrBuilderList()
List of connections.
repeated .google.cloud.bigquery.connection.v1.Connection connections = 2;
-
getConnectionsOrBuilder
ConnectionOrBuilder getConnectionsOrBuilder(int index)
List of connections.
repeated .google.cloud.bigquery.connection.v1.Connection connections = 2;
-
-