system_versions
Creates, updates, deletes, gets or lists a system_versions resource.
Overview
| Name | system_versions |
| Type | Resource |
| Id | aws.odb.system_versions |
Fields
The following fields are returned by SELECT queries:
- list_system_versions
| Name | Datatype | Description |
|---|---|---|
gi_version | string | The version of GI software. |
shape | string | The Exadata hardware model. |
system_versions | array | The Exadata system versions that are compatible with the specified Exadata shape and GI version. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_system_versions | select | region | Returns information about the system versions that are available for a VM cluster for the specified giVersion and shape. |
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_system_versions
Returns information about the system versions that are available for a VM cluster for the specified giVersion and shape.
SELECT
gi_version,
shape,
system_versions
FROM aws.odb.system_versions
WHERE region = '{{ region }}' -- required
;