Package com.google.monitoring.v3
Interface ListUptimeCheckIpsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListUptimeCheckIpsResponse
,ListUptimeCheckIpsResponse.Builder
public interface ListUptimeCheckIpsResponseOrBuilder 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.UptimeCheckIp
getUptimeCheckIps(int index)
The returned list of IP addresses (including region and location) that the checkers run from.int
getUptimeCheckIpsCount()
The returned list of IP addresses (including region and location) that the checkers run from.List<UptimeCheckIp>
getUptimeCheckIpsList()
The returned list of IP addresses (including region and location) that the checkers run from.UptimeCheckIpOrBuilder
getUptimeCheckIpsOrBuilder(int index)
The returned list of IP addresses (including region and location) that the checkers run from.List<? extends UptimeCheckIpOrBuilder>
getUptimeCheckIpsOrBuilderList()
The returned list of IP addresses (including region and location) that the checkers run from.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getUptimeCheckIpsList
List<UptimeCheckIp> getUptimeCheckIpsList()
The returned list of IP addresses (including region and location) that the checkers run from.
repeated .google.monitoring.v3.UptimeCheckIp uptime_check_ips = 1;
-
getUptimeCheckIps
UptimeCheckIp getUptimeCheckIps(int index)
The returned list of IP addresses (including region and location) that the checkers run from.
repeated .google.monitoring.v3.UptimeCheckIp uptime_check_ips = 1;
-
getUptimeCheckIpsCount
int getUptimeCheckIpsCount()
The returned list of IP addresses (including region and location) that the checkers run from.
repeated .google.monitoring.v3.UptimeCheckIp uptime_check_ips = 1;
-
getUptimeCheckIpsOrBuilderList
List<? extends UptimeCheckIpOrBuilder> getUptimeCheckIpsOrBuilderList()
The returned list of IP addresses (including region and location) that the checkers run from.
repeated .google.monitoring.v3.UptimeCheckIp uptime_check_ips = 1;
-
getUptimeCheckIpsOrBuilder
UptimeCheckIpOrBuilder getUptimeCheckIpsOrBuilder(int index)
The returned list of IP addresses (including region and location) that the checkers run from.
repeated .google.monitoring.v3.UptimeCheckIp uptime_check_ips = 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). NOTE: this field is not yet implemented
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). NOTE: this field is not yet implemented
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-