db_servers
Creates, updates, deletes, gets or lists a db_servers
resource.
Overview
Name | db_servers |
Type | Resource |
Id | google.oracledatabase.db_servers |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Identifier. The name of the database server resource with the format: projects/{project}/locations/{location}/cloudExadataInfrastructures/{cloud_exadata_infrastructure}/dbServers/{db_server} |
displayName | string | Optional. User friendly name for this resource. |
properties | object | Various properties and settings associated with Exadata database server. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | cloudExadataInfrastructuresId, locationsId, projectsId | Lists the database servers of an Exadata Infrastructure instance. |
SELECT
examples
Lists the database servers of an Exadata Infrastructure instance.
SELECT
name,
displayName,
properties
FROM google.oracledatabase.db_servers
WHERE cloudExadataInfrastructuresId = '{{ cloudExadataInfrastructuresId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';