autonomous_database_backups
Creates, updates, deletes, gets or lists an autonomous_database_backups
resource.
Overview
Name | autonomous_database_backups |
Type | Resource |
Id | google.oracledatabase.autonomous_database_backups |
Fields
The following fields are returned by SELECT
queries:
- list
Successful response
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 | Optional. Various properties of the backup. (id: AutonomousDatabaseBackupProperties) |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | projectsId , locationsId | filter , pageSize , pageToken | Lists the long-term and automatic backups of an Autonomous Database. |
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 |
---|---|---|
locationsId | string | |
projectsId | string | |
filter | string | |
pageSize | integer (int32) | |
pageToken | string |
SELECT
examples
- list
Lists the long-term and automatic backups of an Autonomous Database.
SELECT
name,
autonomousDatabase,
displayName,
labels,
properties
FROM google.oracledatabase.autonomous_database_backups
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND filter = '{{ filter }}'
AND pageSize = '{{ pageSize }}'
AND pageToken = '{{ pageToken }}';