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

ListUptimeCheckConfigsResponse

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

The protocol for the ListUptimeCheckConfigs response.

interface ListUptimeCheckConfigsResponse {
nextPageToken?: string;
totalSize?: number;
uptimeCheckConfigs?: UptimeCheckConfig[];
}

§Properties

§
nextPageToken?: string
[src]

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).

§
totalSize?: number
[src]

The total number of Uptime check configurations for the project, irrespective of any pagination.

§
uptimeCheckConfigs?: UptimeCheckConfig[]
[src]

The returned Uptime check configurations.