db_servers_by_cloud_exadata_infrastructures
Creates, updates, deletes, gets or lists a db_servers_by_cloud_exadata_infrastructures resource.
Overview
| Name | db_servers_by_cloud_exadata_infrastructures |
| Type | Resource |
| Id | azure_isv.oracle.db_servers_by_cloud_exadata_infrastructures |
Fields
The following fields are returned by SELECT queries:
- list
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 |
|---|---|---|---|---|
list | select | subscriptionId, resourceGroupName, cloudexadatainfrastructurename | List DbServer resources by CloudExadataInfrastructure |
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 |
|---|---|---|
cloudexadatainfrastructurename | string | CloudExadataInfrastructure name |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT examples
- list
List DbServer resources by CloudExadataInfrastructure
SELECT
properties
FROM azure_isv.oracle.db_servers_by_cloud_exadata_infrastructures
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND cloudexadatainfrastructurename = '{{ cloudexadatainfrastructurename }}' -- required
;