autonomous_database_versions
Creates, updates, deletes, gets or lists an autonomous_database_versions resource.
Overview
| Name | autonomous_database_versions |
| Type | Resource |
| Id | azure_isv.oracle.autonomous_database_versions |
Fields
The following fields are returned by SELECT queries:
- get
- list_by_location
Azure operation completed successfully.
| Name | Datatype | Description |
|---|---|---|
properties | object | The resource-specific properties for this resource. |
Azure operation completed successfully.
| Name | Datatype | Description |
|---|---|---|
properties | object | The resource-specific properties for this resource. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | subscriptionId, location, autonomousdbversionsname | Get a AutonomousDbVersion | |
list_by_location | select | subscriptionId, location | List 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.
| Name | Datatype | Description |
|---|---|---|
autonomousdbversionsname | string | AutonomousDbVersion name |
location | string | The name of the Azure region. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT examples
- get
- list_by_location
Get a AutonomousDbVersion
SELECT
properties
FROM azure_isv.oracle.autonomous_database_versions
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
AND autonomousdbversionsname = '{{ autonomousdbversionsname }}' -- required
;
List AutonomousDbVersion resources by Location
SELECT
properties
FROM azure_isv.oracle.autonomous_database_versions
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
;