Skip to main content

db_nodes

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

Overview

Namedb_nodes
TypeResource
Idazure_isv.oracle.db_nodes

Fields

NameDatatypeDescription
additional_detailstextfield from the properties object
backup_ip_idtextfield from the properties object
backup_vnic2_idtextfield from the properties object
backup_vnic_idtextfield from the properties object
cloudvmclusternametextfield from the properties object
cpu_core_counttextfield from the properties object
db_node_storage_size_in_gbstextfield from the properties object
db_server_idtextfield from the properties object
db_system_idtextfield from the properties object
dbnodeocidtextfield from the properties object
fault_domaintextfield from the properties object
host_ip_idtextfield from the properties object
hostnametextfield from the properties object
lifecycle_detailstextfield from the properties object
lifecycle_statetextfield from the properties object
maintenance_typetextfield from the properties object
memory_size_in_gbstextfield from the properties object
ocidtextfield from the properties object
provisioning_statetextfield from the properties object
resourceGroupNametextfield from the properties object
software_storage_size_in_gbtextfield from the properties object
subscriptionIdtextfield from the properties object
time_createdtextfield from the properties object
time_maintenance_window_endtextfield from the properties object
time_maintenance_window_starttextfield from the properties object
vnic2_idtextfield from the properties object
vnic_idtextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTcloudvmclustername, dbnodeocid, resourceGroupName, subscriptionIdGet a DbNode
list_by_cloud_vm_clusterSELECTcloudvmclustername, resourceGroupName, subscriptionIdList DbNode resources by CloudVmCluster
actionEXECcloudvmclustername, dbnodeocid, resourceGroupName, subscriptionId, data__actionVM actions on DbNode of VM Cluster by the provided filter

SELECT examples

List DbNode resources by CloudVmCluster

SELECT
additional_details,
backup_ip_id,
backup_vnic2_id,
backup_vnic_id,
cloudvmclustername,
cpu_core_count,
db_node_storage_size_in_gbs,
db_server_id,
db_system_id,
dbnodeocid,
fault_domain,
host_ip_id,
hostname,
lifecycle_details,
lifecycle_state,
maintenance_type,
memory_size_in_gbs,
ocid,
provisioning_state,
resourceGroupName,
software_storage_size_in_gb,
subscriptionId,
time_created,
time_maintenance_window_end,
time_maintenance_window_start,
vnic2_id,
vnic_id
FROM azure_isv.oracle.vw_db_nodes
WHERE cloudvmclustername = '{{ cloudvmclustername }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';