Skip to main content

db_servers

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

Overview

Namedb_servers
TypeResource
Idazure_isv.oracle.db_servers

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, resourceGroupName, cloudexadatainfrastructurename, dbserverocidGet a DbServer

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
cloudexadatainfrastructurenamestringCloudExadataInfrastructure name
dbserverocidstringDbServer OCID.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Get a DbServer

SELECT
properties
FROM azure_isv.oracle.db_servers
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND cloudexadatainfrastructurename = '{{ cloudexadatainfrastructurename }}' -- required
AND dbserverocid = '{{ dbserverocid }}' -- required
;