Skip to main content

autonomous_database_versions

Creates, updates, deletes, gets or lists an autonomous_database_versions resource.

Overview

Nameautonomous_database_versions
TypeResource
Idaws.odb.autonomous_database_versions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
db_workloadstringThe intended use of the Autonomous Database that the version supports, such as transaction processing, data warehouse, JSON database, or APEX. (OLTP, AJD, APEX, LH)
detailsstringAdditional details about the Autonomous Database software version.
versionstringThe Oracle Database software version.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_autonomous_database_versionsselectregionLists the available Oracle Database software versions for Autonomous Databases.

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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Lists the available Oracle Database software versions for Autonomous Databases.

SELECT
db_workload,
details,
version
FROM aws.odb.autonomous_database_versions
WHERE region = '{{ region }}' -- required
;