Package com.google.monitoring.v3
Interface ListServiceLevelObjectivesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListServiceLevelObjectivesResponse,ListServiceLevelObjectivesResponse.Builder
public interface ListServiceLevelObjectivesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetNextPageToken()If there are more results than have been returned, then this field is set to a non-empty value.com.google.protobuf.ByteStringgetNextPageTokenBytes()If there are more results than have been returned, then this field is set to a non-empty value.ServiceLevelObjectivegetServiceLevelObjectives(int index)The `ServiceLevelObjective`s matching the specified filter.intgetServiceLevelObjectivesCount()The `ServiceLevelObjective`s matching the specified filter.List<ServiceLevelObjective>getServiceLevelObjectivesList()The `ServiceLevelObjective`s matching the specified filter.ServiceLevelObjectiveOrBuildergetServiceLevelObjectivesOrBuilder(int index)The `ServiceLevelObjective`s matching the specified filter.List<? extends ServiceLevelObjectiveOrBuilder>getServiceLevelObjectivesOrBuilderList()The `ServiceLevelObjective`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
-
getServiceLevelObjectivesList
List<ServiceLevelObjective> getServiceLevelObjectivesList()
The `ServiceLevelObjective`s matching the specified filter.
repeated .google.monitoring.v3.ServiceLevelObjective service_level_objectives = 1;
-
getServiceLevelObjectives
ServiceLevelObjective getServiceLevelObjectives(int index)
The `ServiceLevelObjective`s matching the specified filter.
repeated .google.monitoring.v3.ServiceLevelObjective service_level_objectives = 1;
-
getServiceLevelObjectivesCount
int getServiceLevelObjectivesCount()
The `ServiceLevelObjective`s matching the specified filter.
repeated .google.monitoring.v3.ServiceLevelObjective service_level_objectives = 1;
-
getServiceLevelObjectivesOrBuilderList
List<? extends ServiceLevelObjectiveOrBuilder> getServiceLevelObjectivesOrBuilderList()
The `ServiceLevelObjective`s matching the specified filter.
repeated .google.monitoring.v3.ServiceLevelObjective service_level_objectives = 1;
-
getServiceLevelObjectivesOrBuilder
ServiceLevelObjectiveOrBuilder getServiceLevelObjectivesOrBuilder(int index)
The `ServiceLevelObjective`s matching the specified filter.
repeated .google.monitoring.v3.ServiceLevelObjective service_level_objectives = 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.
-
-