Package com.google.cloud.eventarc.v1
Interface ListChannelsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListChannelsResponse,ListChannelsResponse.Builder
public interface ListChannelsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ChannelgetChannels(int index)The requested channels, up to the number specified in `page_size`.intgetChannelsCount()The requested channels, up to the number specified in `page_size`.List<Channel>getChannelsList()The requested channels, up to the number specified in `page_size`.ChannelOrBuildergetChannelsOrBuilder(int index)The requested channels, up to the number specified in `page_size`.List<? extends ChannelOrBuilder>getChannelsOrBuilderList()The requested channels, up to the number specified in `page_size`.StringgetNextPageToken()A page token that can be sent to `ListChannels` to request the next page.com.google.protobuf.ByteStringgetNextPageTokenBytes()A page token that can be sent to `ListChannels` to request the next page.StringgetUnreachable(int index)Unreachable resources, if any.com.google.protobuf.ByteStringgetUnreachableBytes(int index)Unreachable resources, if any.intgetUnreachableCount()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
-
getChannelsList
List<Channel> getChannelsList()
The requested channels, up to the number specified in `page_size`.
repeated .google.cloud.eventarc.v1.Channel channels = 1;
-
getChannels
Channel getChannels(int index)
The requested channels, up to the number specified in `page_size`.
repeated .google.cloud.eventarc.v1.Channel channels = 1;
-
getChannelsCount
int getChannelsCount()
The requested channels, up to the number specified in `page_size`.
repeated .google.cloud.eventarc.v1.Channel channels = 1;
-
getChannelsOrBuilderList
List<? extends ChannelOrBuilder> getChannelsOrBuilderList()
The requested channels, up to the number specified in `page_size`.
repeated .google.cloud.eventarc.v1.Channel channels = 1;
-
getChannelsOrBuilder
ChannelOrBuilder getChannelsOrBuilder(int index)
The requested channels, up to the number specified in `page_size`.
repeated .google.cloud.eventarc.v1.Channel channels = 1;
-
getNextPageToken
String getNextPageToken()
A page token that can be sent to `ListChannels` 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 `ListChannels` 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.
-
-