db_servers
Creates, updates, deletes, gets or lists a db_servers
resource.
Overview
Name | db_servers |
Type | Resource |
Id | google.oracledatabase.db_servers |
Fields
The following fields are returned by SELECT
queries:
- list
Successful response
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 | Optional. Various properties of the database server. (id: DbServerProperties) |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | projectsId , locationsId , cloudExadataInfrastructuresId | pageSize , pageToken | Lists the database servers of an Exadata Infrastructure instance. |
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 |
---|---|---|
cloudExadataInfrastructuresId | string | |
locationsId | string | |
projectsId | string | |
pageSize | integer (int32) | |
pageToken | string |
SELECT
examples
- list
Lists the database servers of an Exadata Infrastructure instance.
SELECT
name,
displayName,
properties
FROM google.oracledatabase.db_servers
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND cloudExadataInfrastructuresId = '{{ cloudExadataInfrastructuresId }}' -- required
AND pageSize = '{{ pageSize }}'
AND pageToken = '{{ pageToken }}';