Show / Hide Table of Contents

Class DiscoveredCloudDbNode

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

Inheritance
object
DiscoveredCloudDbSystemComponent
DiscoveredCloudDbNode
Inherited Members
DiscoveredCloudDbSystemComponent.ComponentId
DiscoveredCloudDbSystemComponent.DisplayName
DiscoveredCloudDbSystemComponent.ComponentName
DiscoveredCloudDbSystemComponent.ResourceId
DiscoveredCloudDbSystemComponent.DbaasId
DiscoveredCloudDbSystemComponent.IsSelectedForMonitoring
DiscoveredCloudDbSystemComponent.Status
DiscoveredCloudDbSystemComponent.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 DiscoveredCloudDbNode : DiscoveredCloudDbSystemComponent

Properties

Connector

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

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