Skip to main content

gi_minor_versions

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

Overview

Namegi_minor_versions
TypeResource
Idazure_isv.oracledatabase.gi_minor_versions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
namestringThe name of the resource.
gridImageOcidstringGrid Infrastructure Image Id.
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".
versionstringA valid Oracle Grid Infrastructure (GI) software version. Required.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectlocation, giversionname, gi_minor_version_name, subscription_idGet a GiMinorVersion.
list_by_parentselectlocation, giversionname, subscription_idshapeFamily, zoneList GiMinorVersion resources by GiVersion.

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
gi_minor_version_namestringThe name of the GiMinorVersion. Required.
giversionnamestringGiVersion name. Required.
locationstringThe name of the Azure region. Required.
subscription_idstring
shapeFamilystringIf provided, filters the results to the set of database versions which are supported for the given shape family. Known values are: "EXADATA" and "EXADB_XS". Default value is None.
zonestringFilters the result for the given Azure Availability Zone. Default value is None.

SELECT examples

Get a GiMinorVersion.

SELECT
id,
name,
gridImageOcid,
systemData,
type,
version
FROM azure_isv.oracledatabase.gi_minor_versions
WHERE location = '{{ location }}' -- required
AND giversionname = '{{ giversionname }}' -- required
AND gi_minor_version_name = '{{ gi_minor_version_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;