gi_minor_versions
Creates, updates, deletes, gets or lists a gi_minor_versions resource.
Overview
| Name | gi_minor_versions |
| Type | Resource |
| Id | azure_isv.oracledatabase.gi_minor_versions |
Fields
The following fields are returned by SELECT queries:
- get
- list_by_parent
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
gridImageOcid | string | Grid Infrastructure Image Id. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
version | string | A valid Oracle Grid Infrastructure (GI) software version. Required. |
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
gridImageOcid | string | Grid Infrastructure Image Id. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
version | string | A valid Oracle Grid Infrastructure (GI) software version. Required. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | location, giversionname, gi_minor_version_name, subscription_id | Get a GiMinorVersion. | |
list_by_parent | select | location, giversionname, subscription_id | shapeFamily, zone | List 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.
| Name | Datatype | Description |
|---|---|---|
gi_minor_version_name | string | The name of the GiMinorVersion. Required. |
giversionname | string | GiVersion name. Required. |
location | string | The name of the Azure region. Required. |
subscription_id | string | |
shapeFamily | string | If 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. |
zone | string | Filters the result for the given Azure Availability Zone. Default value is None. |
SELECT examples
- get
- list_by_parent
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
;
List GiMinorVersion resources by GiVersion.
SELECT
id,
name,
gridImageOcid,
systemData,
type,
version
FROM azure_isv.oracledatabase.gi_minor_versions
WHERE location = '{{ location }}' -- required
AND giversionname = '{{ giversionname }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
AND shapeFamily = '{{ shapeFamily }}'
AND zone = '{{ zone }}'
;