Package com.google.monitoring.v3
Interface ListGroupsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListGroupsResponse
,ListGroupsResponse.Builder
public interface ListGroupsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Group
getGroup(int index)
The groups that match the specified filters.int
getGroupCount()
The groups that match the specified filters.List<Group>
getGroupList()
The groups that match the specified filters.GroupOrBuilder
getGroupOrBuilder(int index)
The groups that match the specified filters.List<? extends GroupOrBuilder>
getGroupOrBuilderList()
The groups that match the specified filters.String
getNextPageToken()
If there are more results than have been returned, then this field is set to a non-empty value.com.google.protobuf.ByteString
getNextPageTokenBytes()
If there are more results than have been returned, then this field is set to a non-empty value.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getGroupList
List<Group> getGroupList()
The groups that match the specified filters.
repeated .google.monitoring.v3.Group group = 1;
-
getGroup
Group getGroup(int index)
The groups that match the specified filters.
repeated .google.monitoring.v3.Group group = 1;
-
getGroupCount
int getGroupCount()
The groups that match the specified filters.
repeated .google.monitoring.v3.Group group = 1;
-
getGroupOrBuilderList
List<? extends GroupOrBuilder> getGroupOrBuilderList()
The groups that match the specified filters.
repeated .google.monitoring.v3.Group group = 1;
-
getGroupOrBuilder
GroupOrBuilder getGroupOrBuilder(int index)
The groups that match the specified filters.
repeated .google.monitoring.v3.Group group = 1;
-
getNextPageToken
String getNextPageToken()
If there are more results than have been returned, then this field is set to a non-empty value. To see the additional results, use that value as `page_token` in the next call to this method.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
If there are more results than have been returned, then this field is set to a non-empty value. To see the additional results, use that value as `page_token` in the next call to this method.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-