Show / Hide Table of Contents

Class DiscoveredExternalDbNode

The details of an Oracle DB node discovered in an external DB system discovery run.

Inheritance
object
DiscoveredExternalDbSystemComponent
DiscoveredExternalDbNode
Inherited Members
DiscoveredExternalDbSystemComponent.ComponentId
DiscoveredExternalDbSystemComponent.DisplayName
DiscoveredExternalDbSystemComponent.ComponentName
DiscoveredExternalDbSystemComponent.ResourceId
DiscoveredExternalDbSystemComponent.IsSelectedForMonitoring
DiscoveredExternalDbSystemComponent.Status
DiscoveredExternalDbSystemComponent.AssociatedComponents
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatabasemanagementService.Models
Assembly: OCI.DotNetSDK.Databasemanagement.dll
Syntax
public class DiscoveredExternalDbNode : DiscoveredExternalDbSystemComponent

Properties

Connector

Declaration
[JsonProperty(PropertyName = "connector")]
public ExternalDbSystemDiscoveryConnector Connector { get; set; }
Property Value
Type Description
ExternalDbSystemDiscoveryConnector

CpuCoreCount

Declaration
[JsonProperty(PropertyName = "cpuCoreCount")]
public float? CpuCoreCount { get; set; }
Property Value
Type Description
float?

The number of CPU cores available on the DB node.

HostName

Declaration
[Required(ErrorMessage = "HostName is required.")]
[JsonProperty(PropertyName = "hostName")]
public string HostName { get; set; }
Property Value
Type Description
string

The name of the host on which the ASM instance is running.

Remarks

Required

MemorySizeInGBs

Declaration
[JsonProperty(PropertyName = "memorySizeInGBs")]
public float? MemorySizeInGBs { get; set; }
Property Value
Type Description
float?

The total memory in gigabytes (GB) on the DB node.

In this article
Back to top