Skip to main content

gi_versions

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

Overview

Namegi_versions
TypeResource
Idazure_isv.oracledatabase.gi_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.
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, subscription_idGet a GiVersion.
list_by_locationselectlocation, subscription_idshape, zone, shapeAttributeList GiVersion resources by SubscriptionLocationResource.

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
giversionnamestringGiVersion name. Required.
locationstringThe name of the Azure region. Required.
subscription_idstring
shapestringIf provided, filters the results for the given shape. Known values are: "Exadata.X9M", "Exadata.X11M", and "ExaDbXS". Default value is None.
shapeAttributestringFilters the result for the given Shape Attribute, such as BLOCK_STORAGE or SMART_STORAGE. Default value is None.
zonestringFilters the result for the given Azure Availability Zone. Default value is None.

SELECT examples

Get a GiVersion.

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