Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

UptimeCheckIp

import type { UptimeCheckIp } from "https://googleapis.deno.dev/v1/monitoring:v3.ts";

Contains the region, location, and list of IP addresses where checkers in the location run from.

interface UptimeCheckIp {
ipAddress?: string;
location?: string;
region?:
| "REGION_UNSPECIFIED"
| "USA"
| "EUROPE"
| "SOUTH_AMERICA"
| "ASIA_PACIFIC"
| "USA_OREGON"
| "USA_IOWA"
| "USA_VIRGINIA";
}

§Properties

§
ipAddress?: string
[src]

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
[src]

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?: "REGION_UNSPECIFIED" | "USA" | "EUROPE" | "SOUTH_AMERICA" | "ASIA_PACIFIC" | "USA_OREGON" | "USA_IOWA" | "USA_VIRGINIA"
[src]

A broad region category in which the IP address is located.