Skip to main content

db_nodes

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

Overview

Namedb_nodes
TypeResource
Idgoogle.oracledatabase.db_nodes

Fields

NameDatatypeDescription
namestringIdentifier. The name of the database node resource in the following format: projects/{project}/locations/{location}/cloudVmClusters/{cloud_vm_cluster}/dbNodes/{db_node}
propertiesobjectVarious properties and settings associated with Db node.

Methods

NameAccessible byRequired ParamsDescription
listSELECTcloudVmClustersId, locationsId, projectsIdLists the database nodes of a VM Cluster.

SELECT examples

Lists the database nodes of a VM Cluster.

SELECT
name,
properties
FROM google.oracledatabase.db_nodes
WHERE cloudVmClustersId = '{{ cloudVmClustersId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';