uptime_check_ips
Creates, updates, deletes, gets or lists a uptime_check_ips resource.
Overview
| Name | uptime_check_ips |
| Type | Resource |
| Id | google.monitoring.uptime_check_ips |
Fields
The following fields are returned by SELECT queries:
- uptime_check_ips_list
| Name | Datatype | Description |
|---|---|---|
ipAddress | string | The IP address from which the Uptime check originates. This is a fully specified IP address (not an IP address range). Most IP addresses, as of this publication, are in IPv4 format; however, one should not rely on the IP addresses being in IPv4 format indefinitely, and should support interpreting this field in either IPv4 or IPv6 format. |
location | string | A more specific location within the region that typically encodes a particular city/town/metro (and its containing state/province or country) within the broader umbrella region category. |
region | string | A broad region category in which the IP address is located. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
uptime_check_ips_list | select | pageSize, pageToken | Returns the list of IP addresses that checkers run from. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
pageSize | integer (int32) | |
pageToken | string |
SELECT examples
- uptime_check_ips_list
Returns the list of IP addresses that checkers run from.
SELECT
ipAddress,
location,
region
FROM google.monitoring.uptime_check_ips
WHERE pageSize = '{{ pageSize }}'
AND pageToken = '{{ pageToken }}'
;