Package com.google.cloud.eventarc.v1
Interface ListChannelConnectionsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListChannelConnectionsResponse
,ListChannelConnectionsResponse.Builder
public interface ListChannelConnectionsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ChannelConnection
getChannelConnections(int index)
The requested channel connections, up to the number specified in `page_size`.int
getChannelConnectionsCount()
The requested channel connections, up to the number specified in `page_size`.List<ChannelConnection>
getChannelConnectionsList()
The requested channel connections, up to the number specified in `page_size`.ChannelConnectionOrBuilder
getChannelConnectionsOrBuilder(int index)
The requested channel connections, up to the number specified in `page_size`.List<? extends ChannelConnectionOrBuilder>
getChannelConnectionsOrBuilderList()
The requested channel connections, up to the number specified in `page_size`.String
getNextPageToken()
A page token that can be sent to `ListChannelConnections` to request the next page.com.google.protobuf.ByteString
getNextPageTokenBytes()
A page token that can be sent to `ListChannelConnections` to request the next page.String
getUnreachable(int index)
Unreachable resources, if any.com.google.protobuf.ByteString
getUnreachableBytes(int index)
Unreachable resources, if any.int
getUnreachableCount()
Unreachable resources, if any.List<String>
getUnreachableList()
Unreachable resources, if any.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getChannelConnectionsList
List<ChannelConnection> getChannelConnectionsList()
The requested channel connections, up to the number specified in `page_size`.
repeated .google.cloud.eventarc.v1.ChannelConnection channel_connections = 1;
-
getChannelConnections
ChannelConnection getChannelConnections(int index)
The requested channel connections, up to the number specified in `page_size`.
repeated .google.cloud.eventarc.v1.ChannelConnection channel_connections = 1;
-
getChannelConnectionsCount
int getChannelConnectionsCount()
The requested channel connections, up to the number specified in `page_size`.
repeated .google.cloud.eventarc.v1.ChannelConnection channel_connections = 1;
-
getChannelConnectionsOrBuilderList
List<? extends ChannelConnectionOrBuilder> getChannelConnectionsOrBuilderList()
The requested channel connections, up to the number specified in `page_size`.
repeated .google.cloud.eventarc.v1.ChannelConnection channel_connections = 1;
-
getChannelConnectionsOrBuilder
ChannelConnectionOrBuilder getChannelConnectionsOrBuilder(int index)
The requested channel connections, up to the number specified in `page_size`.
repeated .google.cloud.eventarc.v1.ChannelConnection channel_connections = 1;
-
getNextPageToken
String getNextPageToken()
A page token that can be sent to `ListChannelConnections` to request the next page. If this is empty, then there are no more pages.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
A page token that can be sent to `ListChannelConnections` to request the next page. If this is empty, then there are no more pages.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
getUnreachableList
List<String> getUnreachableList()
Unreachable resources, if any.
repeated string unreachable = 3;
- Returns:
- A list containing the unreachable.
-
getUnreachableCount
int getUnreachableCount()
Unreachable resources, if any.
repeated string unreachable = 3;
- Returns:
- The count of unreachable.
-
getUnreachable
String getUnreachable(int index)
Unreachable resources, if any.
repeated string unreachable = 3;
- Parameters:
index
- The index of the element to return.- Returns:
- The unreachable at the given index.
-
getUnreachableBytes
com.google.protobuf.ByteString getUnreachableBytes(int index)
Unreachable resources, if any.
repeated string unreachable = 3;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the unreachable at the given index.
-
-