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 Connection
getConnections(int index)
List of connections.int
getConnectionsCount()
List of connections.List<Connection>
getConnectionsList()
List of connections.ConnectionOrBuilder
getConnectionsOrBuilder(int index)
List of connections.List<? extends ConnectionOrBuilder>
getConnectionsOrBuilderList()
List of connections.String
getNextPageToken()
Next page token.com.google.protobuf.ByteString
getNextPageTokenBytes()
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;
-
-