Package com.google.cloud.channel.v1
Interface ListSubscribersResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListSubscribersResponse
,ListSubscribersResponse.Builder
public interface ListSubscribersResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description 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.String
getServiceAccounts(int index)
List of service accounts which have subscriber access to the topic.com.google.protobuf.ByteString
getServiceAccountsBytes(int index)
List of service accounts which have subscriber access to the topic.int
getServiceAccountsCount()
List of service accounts which have subscriber access to the topic.List<String>
getServiceAccountsList()
List of service accounts which have subscriber access to the topic.String
getTopic()
Name of the topic registered with the reseller.com.google.protobuf.ByteString
getTopicBytes()
Name of the topic registered with the reseller.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTopic
String getTopic()
Name of the topic registered with the reseller.
string topic = 1;
- Returns:
- The topic.
-
getTopicBytes
com.google.protobuf.ByteString getTopicBytes()
Name of the topic registered with the reseller.
string topic = 1;
- Returns:
- The bytes for topic.
-
getServiceAccountsList
List<String> getServiceAccountsList()
List of service accounts which have subscriber access to the topic.
repeated string service_accounts = 2;
- Returns:
- A list containing the serviceAccounts.
-
getServiceAccountsCount
int getServiceAccountsCount()
List of service accounts which have subscriber access to the topic.
repeated string service_accounts = 2;
- Returns:
- The count of serviceAccounts.
-
getServiceAccounts
String getServiceAccounts(int index)
List of service accounts which have subscriber access to the topic.
repeated string service_accounts = 2;
- Parameters:
index
- The index of the element to return.- Returns:
- The serviceAccounts at the given index.
-
getServiceAccountsBytes
com.google.protobuf.ByteString getServiceAccountsBytes(int index)
List of service accounts which have subscriber access to the topic.
repeated string service_accounts = 2;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the serviceAccounts at the given index.
-
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 = 3;
- 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 = 3;
- Returns:
- The bytes for nextPageToken.
-
-