Interface ComputeContactsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ComputeContactsResponse
,ComputeContactsResponse.Builder
public interface ComputeContactsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Contact
getContacts(int index)
All contacts for the resource that are subscribed to the specified notification categories, including contacts inherited from any parent resources.int
getContactsCount()
All contacts for the resource that are subscribed to the specified notification categories, including contacts inherited from any parent resources.List<Contact>
getContactsList()
All contacts for the resource that are subscribed to the specified notification categories, including contacts inherited from any parent resources.ContactOrBuilder
getContactsOrBuilder(int index)
All contacts for the resource that are subscribed to the specified notification categories, including contacts inherited from any parent resources.List<? extends ContactOrBuilder>
getContactsOrBuilderList()
All contacts for the resource that are subscribed to the specified notification categories, including contacts inherited from any parent resources.String
getNextPageToken()
If there are more results than those appearing in this response, then `next_page_token` is included.com.google.protobuf.ByteString
getNextPageTokenBytes()
If there are more results than those appearing in this response, then `next_page_token` is included.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getContactsList
List<Contact> getContactsList()
All contacts for the resource that are subscribed to the specified notification categories, including contacts inherited from any parent resources.
repeated .google.cloud.essentialcontacts.v1.Contact contacts = 1;
-
getContacts
Contact getContacts(int index)
All contacts for the resource that are subscribed to the specified notification categories, including contacts inherited from any parent resources.
repeated .google.cloud.essentialcontacts.v1.Contact contacts = 1;
-
getContactsCount
int getContactsCount()
All contacts for the resource that are subscribed to the specified notification categories, including contacts inherited from any parent resources.
repeated .google.cloud.essentialcontacts.v1.Contact contacts = 1;
-
getContactsOrBuilderList
List<? extends ContactOrBuilder> getContactsOrBuilderList()
All contacts for the resource that are subscribed to the specified notification categories, including contacts inherited from any parent resources.
repeated .google.cloud.essentialcontacts.v1.Contact contacts = 1;
-
getContactsOrBuilder
ContactOrBuilder getContactsOrBuilder(int index)
All contacts for the resource that are subscribed to the specified notification categories, including contacts inherited from any parent resources.
repeated .google.cloud.essentialcontacts.v1.Contact contacts = 1;
-
getNextPageToken
String getNextPageToken()
If there are more results than those appearing in this response, then `next_page_token` is included. To get the next set of results, call this method again using the value of `next_page_token` as `page_token` and the rest of the parameters the same as the original request.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
If there are more results than those appearing in this response, then `next_page_token` is included. To get the next set of results, call this method again using the value of `next_page_token` as `page_token` and the rest of the parameters the same as the original request.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-