Package com.google.monitoring.v3
Interface ListUptimeCheckConfigsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListUptimeCheckConfigsResponse
,ListUptimeCheckConfigsResponse.Builder
public interface ListUptimeCheckConfigsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getNextPageToken()
This field represents the pagination token to retrieve the next page of results.com.google.protobuf.ByteString
getNextPageTokenBytes()
This field represents the pagination token to retrieve the next page of results.int
getTotalSize()
The total number of Uptime check configurations for the project, irrespective of any pagination.UptimeCheckConfig
getUptimeCheckConfigs(int index)
The returned Uptime check configurations.int
getUptimeCheckConfigsCount()
The returned Uptime check configurations.List<UptimeCheckConfig>
getUptimeCheckConfigsList()
The returned Uptime check configurations.UptimeCheckConfigOrBuilder
getUptimeCheckConfigsOrBuilder(int index)
The returned Uptime check configurations.List<? extends UptimeCheckConfigOrBuilder>
getUptimeCheckConfigsOrBuilderList()
The returned Uptime check configurations.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getUptimeCheckConfigsList
List<UptimeCheckConfig> getUptimeCheckConfigsList()
The returned Uptime check configurations.
repeated .google.monitoring.v3.UptimeCheckConfig uptime_check_configs = 1;
-
getUptimeCheckConfigs
UptimeCheckConfig getUptimeCheckConfigs(int index)
The returned Uptime check configurations.
repeated .google.monitoring.v3.UptimeCheckConfig uptime_check_configs = 1;
-
getUptimeCheckConfigsCount
int getUptimeCheckConfigsCount()
The returned Uptime check configurations.
repeated .google.monitoring.v3.UptimeCheckConfig uptime_check_configs = 1;
-
getUptimeCheckConfigsOrBuilderList
List<? extends UptimeCheckConfigOrBuilder> getUptimeCheckConfigsOrBuilderList()
The returned Uptime check configurations.
repeated .google.monitoring.v3.UptimeCheckConfig uptime_check_configs = 1;
-
getUptimeCheckConfigsOrBuilder
UptimeCheckConfigOrBuilder getUptimeCheckConfigsOrBuilder(int index)
The returned Uptime check configurations.
repeated .google.monitoring.v3.UptimeCheckConfig uptime_check_configs = 1;
-
getNextPageToken
String getNextPageToken()
This field represents the pagination token to retrieve the next page of results. If the value is empty, it means no further results for the request. To retrieve the next page of results, the value of the next_page_token is passed to the subsequent List method call (in the request message's page_token field).
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
This field represents the pagination token to retrieve the next page of results. If the value is empty, it means no further results for the request. To retrieve the next page of results, the value of the next_page_token is passed to the subsequent List method call (in the request message's page_token field).
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
getTotalSize
int getTotalSize()
The total number of Uptime check configurations for the project, irrespective of any pagination.
int32 total_size = 3;
- Returns:
- The totalSize.
-
-