Skip to main content

system_versions

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

Overview

Namesystem_versions
TypeResource
Idaws.odb.system_versions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
gi_versionstringThe version of GI software.
shapestringThe Exadata hardware model.
system_versionsarrayThe Exadata system versions that are compatible with the specified Exadata shape and GI version.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_system_versionsselectregionReturns 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.

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

SELECT examples

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
;