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

ListDatabaseInstancesResponse

import type { ListDatabaseInstancesResponse } from "https://googleapis.deno.dev/v1/firebasedatabase:v1beta.ts";

The response from the ListDatabaseInstances method.

interface ListDatabaseInstancesResponse {
instances?: DatabaseInstance[];
nextPageToken?: string;
}

§Properties

§
instances?: DatabaseInstance[]
[src]

List of each DatabaseInstance that is in the parent Firebase project.

§
nextPageToken?: string
[src]

If the result list is too large to fit in a single response, then a token is returned. If the string is empty, then this response is the last page of results. This token can be used in a subsequent call to ListDatabaseInstances to find the next group of database instances. Page tokens are short-lived and should not be persisted.