Package com.google.monitoring.v3
Interface ListMetricDescriptorsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListMetricDescriptorsResponse
,ListMetricDescriptorsResponse.Builder
public interface ListMetricDescriptorsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.api.MetricDescriptor
getMetricDescriptors(int index)
The metric descriptors that are available to the project and that match the value of `filter`, if present.int
getMetricDescriptorsCount()
The metric descriptors that are available to the project and that match the value of `filter`, if present.List<com.google.api.MetricDescriptor>
getMetricDescriptorsList()
The metric descriptors that are available to the project and that match the value of `filter`, if present.com.google.api.MetricDescriptorOrBuilder
getMetricDescriptorsOrBuilder(int index)
The metric descriptors that are available to the project and that match the value of `filter`, if present.List<? extends com.google.api.MetricDescriptorOrBuilder>
getMetricDescriptorsOrBuilderList()
The metric descriptors that are available to the project and that match the value of `filter`, if present.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
-
getMetricDescriptorsList
List<com.google.api.MetricDescriptor> getMetricDescriptorsList()
The metric descriptors that are available to the project and that match the value of `filter`, if present.
repeated .google.api.MetricDescriptor metric_descriptors = 1;
-
getMetricDescriptors
com.google.api.MetricDescriptor getMetricDescriptors(int index)
The metric descriptors that are available to the project and that match the value of `filter`, if present.
repeated .google.api.MetricDescriptor metric_descriptors = 1;
-
getMetricDescriptorsCount
int getMetricDescriptorsCount()
The metric descriptors that are available to the project and that match the value of `filter`, if present.
repeated .google.api.MetricDescriptor metric_descriptors = 1;
-
getMetricDescriptorsOrBuilderList
List<? extends com.google.api.MetricDescriptorOrBuilder> getMetricDescriptorsOrBuilderList()
The metric descriptors that are available to the project and that match the value of `filter`, if present.
repeated .google.api.MetricDescriptor metric_descriptors = 1;
-
getMetricDescriptorsOrBuilder
com.google.api.MetricDescriptorOrBuilder getMetricDescriptorsOrBuilder(int index)
The metric descriptors that are available to the project and that match the value of `filter`, if present.
repeated .google.api.MetricDescriptor metric_descriptors = 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.
-
-