Skip to main content

autonomous_database_versions

Creates, updates, deletes, gets or lists an autonomous_database_versions resource.

Overview

Nameautonomous_database_versions
TypeResource
Idazure_isv.oracle.autonomous_database_versions

Fields

The following fields are returned by SELECT queries:

Azure operation completed successfully.

NameDatatypeDescription
propertiesobjectThe resource-specific properties for this resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, location, autonomousdbversionsnameGet a AutonomousDbVersion
list_by_locationselectsubscriptionId, locationList AutonomousDbVersion resources by Location

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
autonomousdbversionsnamestringAutonomousDbVersion name
locationstringThe name of the Azure region.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Get a AutonomousDbVersion

SELECT
properties
FROM azure_isv.oracle.autonomous_database_versions
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
AND autonomousdbversionsname = '{{ autonomousdbversionsname }}' -- required
;