Package com.google.monitoring.v3
Interface ListServicesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListServicesResponse
,ListServicesResponse.Builder
public interface ListServicesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description 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.Service
getServices(int index)
The `Service`s matching the specified filter.int
getServicesCount()
The `Service`s matching the specified filter.List<Service>
getServicesList()
The `Service`s matching the specified filter.ServiceOrBuilder
getServicesOrBuilder(int index)
The `Service`s matching the specified filter.List<? extends ServiceOrBuilder>
getServicesOrBuilderList()
The `Service`s matching the specified filter.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getServicesList
List<Service> getServicesList()
The `Service`s matching the specified filter.
repeated .google.monitoring.v3.Service services = 1;
-
getServices
Service getServices(int index)
The `Service`s matching the specified filter.
repeated .google.monitoring.v3.Service services = 1;
-
getServicesCount
int getServicesCount()
The `Service`s matching the specified filter.
repeated .google.monitoring.v3.Service services = 1;
-
getServicesOrBuilderList
List<? extends ServiceOrBuilder> getServicesOrBuilderList()
The `Service`s matching the specified filter.
repeated .google.monitoring.v3.Service services = 1;
-
getServicesOrBuilder
ServiceOrBuilder getServicesOrBuilder(int index)
The `Service`s matching the specified filter.
repeated .google.monitoring.v3.Service services = 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.
-
-