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)
A list of clients.int
getConnectionsCount()
A list of clients.List<Connection>
getConnectionsList()
A list of clients.ConnectionOrBuilder
getConnectionsOrBuilder(int index)
A list of clients.List<? extends ConnectionOrBuilder>
getConnectionsOrBuilderList()
A list of clients.String
getNextPageToken()
A token that can be sent as `page_token` to retrieve the next page.com.google.protobuf.ByteString
getNextPageTokenBytes()
A token that 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
-
getConnectionsList
List<Connection> getConnectionsList()
A list of clients.
repeated .google.cloud.apigeeconnect.v1.Connection connections = 1;
-
getConnections
Connection getConnections(int index)
A list of clients.
repeated .google.cloud.apigeeconnect.v1.Connection connections = 1;
-
getConnectionsCount
int getConnectionsCount()
A list of clients.
repeated .google.cloud.apigeeconnect.v1.Connection connections = 1;
-
getConnectionsOrBuilderList
List<? extends ConnectionOrBuilder> getConnectionsOrBuilderList()
A list of clients.
repeated .google.cloud.apigeeconnect.v1.Connection connections = 1;
-
getConnectionsOrBuilder
ConnectionOrBuilder getConnectionsOrBuilder(int index)
A list of clients.
repeated .google.cloud.apigeeconnect.v1.Connection connections = 1;
-
getNextPageToken
String getNextPageToken()
A token that 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 that 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.
-
-