Skip to main content

backups_backup_index_download_url

Creates, updates, deletes, gets or lists a backups_backup_index_download_url resource.

Overview

Namebackups_backup_index_download_url
TypeResource
Idgoogle.gkebackup.backups_backup_index_download_url

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
signedUrlstringRequired. The signed URL for downloading the backup index.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_backup_index_download_urlselectprojectsId, locationsId, backupPlansId, backupsIdRetrieve the link to the backupIndex.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
backupPlansIdstring
backupsIdstring
locationsIdstring
projectsIdstring

SELECT examples

Retrieve the link to the backupIndex.

SELECT
signedUrl
FROM google.gkebackup.backups_backup_index_download_url
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND backupPlansId = '{{ backupPlansId }}' -- required
AND backupsId = '{{ backupsId }}' -- required;