backups_backup_index_download_url
Creates, updates, deletes, gets or lists a backups_backup_index_download_url resource.
Overview
| Name | backups_backup_index_download_url |
| Type | Resource |
| Id | google.gkebackup.backups_backup_index_download_url |
Fields
The following fields are returned by SELECT queries:
- get_backup_index_download_url
| Name | Datatype | Description |
|---|---|---|
signedUrl | string | Required. The signed URL for downloading the backup index. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_backup_index_download_url | select | projectsId, locationsId, backupPlansId, backupsId | Retrieve 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.
| Name | Datatype | Description |
|---|---|---|
backupPlansId | string | |
backupsId | string | |
locationsId | string | |
projectsId | string |
SELECT examples
- get_backup_index_download_url
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
;