autonomous_db_versions
Creates, updates, deletes, gets or lists a autonomous_db_versions
resource.
Overview
Name | autonomous_db_versions |
Type | Resource |
Id | google.oracledatabase.autonomous_db_versions |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Identifier. The name of the Autonomous Database Version resource with the format: projects/{project}/locations/{region}/autonomousDbVersions/{autonomous_db_version} |
dbWorkload | string | Output only. The Autonomous Database workload type. |
version | string | Output only. An Oracle Database version for Autonomous Database. |
workloadUri | string | Output only. A URL that points to a detailed description of the Autonomous Database version. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | locationsId, projectsId | Lists all the available Autonomous Database versions for a project and location. |
SELECT
examples
Lists all the available Autonomous Database versions for a project and location.
SELECT
name,
dbWorkload,
version,
workloadUri
FROM google.oracledatabase.autonomous_db_versions
WHERE locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';