Skip to main content

system_versions

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

Overview

Namesystem_versions
TypeResource
Idazure_isv.oracledatabase.system_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.
systemVersionstringA valid Oracle System Version. Required.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectlocation, systemversionname, subscription_idGet a SystemVersion.
list_by_locationselectlocation, subscription_idList SystemVersion 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
locationstringThe name of the Azure region. Required.
subscription_idstring
systemversionnamestringSystemVersion name. Required.

SELECT examples

Get a SystemVersion.

SELECT
id,
name,
systemData,
systemVersion,
type
FROM azure_isv.oracledatabase.system_versions
WHERE location = '{{ location }}' -- required
AND systemversionname = '{{ systemversionname }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;