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

ListBackupsResponse

import type { ListBackupsResponse } from "https://googleapis.deno.dev/v1/file:v1.ts";

ListBackupsResponse is the result of ListBackupsRequest.

interface ListBackupsResponse {
backups?: Backup[];
nextPageToken?: string;
unreachable?: string[];
}

§Properties

§
backups?: Backup[]
[src]

A list of backups in the project for the specified location. If the {location} value in the request is "-", the response contains a list of backups from all locations. If any location is unreachable, the response will only return backups in reachable locations and the "unreachable" field will be populated with a list of unreachable locations.

§
nextPageToken?: string
[src]

The token you can use to retrieve the next page of results. Not returned if there are no more results in the list.

§
unreachable?: string[]
[src]

Locations that could not be reached.