Skip to main content

db_servers

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

Overview

Namedb_servers
TypeResource
Idgoogle.oracledatabase.db_servers

Fields

NameDatatypeDescription
namestringIdentifier. The name of the database server resource with the format: projects/{project}/locations/{location}/cloudExadataInfrastructures/{cloud_exadata_infrastructure}/dbServers/{db_server}
displayNamestringOptional. User friendly name for this resource.
propertiesobjectVarious properties and settings associated with Exadata database server.

Methods

NameAccessible byRequired ParamsDescription
listSELECTcloudExadataInfrastructuresId, locationsId, projectsIdLists 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 }}';