Skip to main content

autonomous_database_backups

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

Overview

Nameautonomous_database_backups
TypeResource
Idgoogle.oracledatabase.autonomous_database_backups

Fields

NameDatatypeDescription
namestringIdentifier. The name of the Autonomous Database Backup resource with the format: projects/{project}/locations/{region}/autonomousDatabaseBackups/{autonomous_database_backup}
autonomousDatabasestringRequired. The name of the Autonomous Database resource for which the backup is being created. Format: projects/{project}/locations/{region}/autonomousDatabases/{autonomous_database}
displayNamestringOptional. User friendly name for the Backup. The name does not have to be unique.
labelsobjectOptional. labels or tags associated with the resource.
propertiesobjectProperties of the Autonomous Database Backup resource.

Methods

NameAccessible byRequired ParamsDescription
listSELECTlocationsId, projectsIdLists 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 }}';