autonomous_database_versions
Creates, updates, deletes, gets or lists an autonomous_database_versions resource.
Overview
| Name | autonomous_database_versions |
| Type | Resource |
| Id | aws.odb.autonomous_database_versions |
Fields
The following fields are returned by SELECT queries:
- list_autonomous_database_versions
| Name | Datatype | Description |
|---|---|---|
db_workload | string | The intended use of the Autonomous Database that the version supports, such as transaction processing, data warehouse, JSON database, or APEX. (OLTP, AJD, APEX, LH) |
details | string | Additional details about the Autonomous Database software version. |
version | string | The Oracle Database software version. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_autonomous_database_versions | select | region | Lists 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_autonomous_database_versions
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
;