Skip to main content

autonomous_db_versions

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

Overview

Nameautonomous_db_versions
TypeResource
Idgoogle.oracledatabase.autonomous_db_versions

Fields

NameDatatypeDescription
namestringIdentifier. The name of the Autonomous Database Version resource with the format: projects/{project}/locations/{region}/autonomousDbVersions/{autonomous_db_version}
dbWorkloadstringOutput only. The Autonomous Database workload type.
versionstringOutput only. An Oracle Database version for Autonomous Database.
workloadUristringOutput only. A URL that points to a detailed description of the Autonomous Database version.

Methods

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