gi_minor_versions
Creates, updates, deletes, gets or lists a gi_minor_versions resource.
Overview
| Name | gi_minor_versions |
| Type | Resource |
| Id | aws.odb.gi_minor_versions |
Fields
The following fields are returned by SELECT queries:
- list_gi_minor_versions
| Name | Datatype | Description |
|---|---|---|
grid_image_id | string | The Grid Infrastructure software image ID for this minor version. |
version | string | The GI minor version. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_gi_minor_versions | select | region | Returns 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_gi_minor_versions
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
;