Skip to main content

gi_minor_versions

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

Overview

Namegi_minor_versions
TypeResource
Idaws.odb.gi_minor_versions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
grid_image_idstringThe Grid Infrastructure software image ID for this minor version.
versionstringThe GI minor version.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_gi_minor_versionsselectregionReturns a list of the Oracle Grid Infrastructure (GI) minor versions for the specified major version.

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 a list of the Oracle Grid Infrastructure (GI) minor versions for the specified major version.

SELECT
grid_image_id,
version
FROM aws.odb.gi_minor_versions
WHERE region = '{{ region }}' -- required
;