autonomous_database_backups
Creates, updates, deletes, gets or lists a autonomous_database_backups
resource.
Overview
Name | autonomous_database_backups |
Type | Resource |
Id | google.oracledatabase.autonomous_database_backups |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Identifier. The name of the Autonomous Database Backup resource with the format: projects/{project}/locations/{region}/autonomousDatabaseBackups/{autonomous_database_backup} |
autonomousDatabase | string | Required. The name of the Autonomous Database resource for which the backup is being created. Format: projects/{project}/locations/{region}/autonomousDatabases/{autonomous_database} |
displayName | string | Optional. User friendly name for the Backup. The name does not have to be unique. |
labels | object | Optional. labels or tags associated with the resource. |
properties | object | Properties of the Autonomous Database Backup resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | locationsId, projectsId | Lists the long term and automatic backups of an Autonomous Database. |
SELECT
examples
Lists the long term and automatic backups of an Autonomous Database.
SELECT
name,
autonomousDatabase,
displayName,
labels,
properties
FROM google.oracledatabase.autonomous_database_backups
WHERE locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';