db_nodes
Creates, updates, deletes, gets or lists a db_nodes
resource.
Overview
Name | db_nodes |
Type | Resource |
Id | google.oracledatabase.db_nodes |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Identifier. The name of the database node resource in the following format: projects/{project}/locations/{location}/cloudVmClusters/{cloud_vm_cluster}/dbNodes/{db_node} |
properties | object | Various properties and settings associated with Db node. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | cloudVmClustersId, locationsId, projectsId | Lists 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 }}';