backup_vaults_usable
Creates, updates, deletes, gets or lists a backup_vaults_usable
resource.
Overview
Name | backup_vaults_usable |
Type | Resource |
Id | google.backupdr.backup_vaults_usable |
Fields
Name | Datatype | Description |
---|---|---|
backupVaults | array | The list of BackupVault instances in the project for the specified location. If the '{location}' value in the request is "-", the response contains a list of instances from all locations. In case any location is unreachable, the response will only return backup vaults in reachable locations and the 'unreachable' field will be populated with a list of unreachable locations. |
nextPageToken | string | A token identifying a page of results the server should return. |
unreachable | array | Locations that could not be reached. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
fetch_usable | SELECT | locationsId, projectsId | FetchUsableBackupVaults lists usable BackupVaults in a given project and location. Usable BackupVault are the ones that user has backupdr.backupVaults.get permission. |
SELECT
examples
FetchUsableBackupVaults lists usable BackupVaults in a given project and location. Usable BackupVault are the ones that user has backupdr.backupVaults.get permission.
SELECT
backupVaults,
nextPageToken,
unreachable
FROM google.backupdr.backup_vaults_usable
WHERE locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';