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

ResourcesListResponse

import type { ResourcesListResponse } from "https://googleapis.deno.dev/v1/deploymentmanager:v2.ts";

A response containing a partial list of resources and a page token used to build the next request if the request has been truncated.

interface ResourcesListResponse {
nextPageToken?: string;
resources?: Resource[];
}

§Properties

§
nextPageToken?: string
[src]

A token used to continue a truncated list request.

§
resources?: Resource[]
[src]

Resources contained in this list response.