Method: projects.locations.instances.backups.list

List backups of Looker instance.

HTTP request

GET https://looker.googleapis.com/v1/{parent=projects/*/locations/*/instances/*}/backups

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
parent

string

Required. Format: projects/{project}/locations/{location}/instances/{instance}.

Query parameters

Parameters
pageSize

integer

The maximum number of instances to return.

pageToken

string

A page token received from a previous ListInstances request.

orderBy

string

Sort results. Default order is "createTime desc". Other supported fields are "state" and "expireTime". https://google.aip.dev/132#ordering

Request body

The request body must be empty.

Response body

Response from listing Looker instance backups.

If successful, the response body contains data with the following structure:

JSON representation
{
  "instanceBackups": [
    {
      object (InstanceBackup)
    }
  ],
  "nextPageToken": string,
  "unreachable": [
    string
  ]
}
Fields
instanceBackups[]

object (InstanceBackup)

The list of instances matching the request filters, up to the requested pageSize.

nextPageToken

string

If provided, a page token that can look up the next pageSize results. If empty, the results list is exhausted.

unreachable[]

string

Locations that could not be reached.

Authorization scopes

Requires the following OAuth scope:

  • https://www.googleapis.com/auth/cloud-platform

For more information, see the Authentication Overview.

IAM Permissions

Requires the following IAM permission on the parent resource:

  • looker.googleapis.com/looker.backups.list

For more information, see the IAM documentation.