Show / Hide Table of Contents

Class DiscoveredExternalListener

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

Inheritance
object
DiscoveredExternalDbSystemComponent
DiscoveredExternalListener
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 DiscoveredExternalListener : DiscoveredExternalDbSystemComponent

Properties

AdrHomeDirectory

Declaration
[JsonProperty(PropertyName = "adrHomeDirectory")]
public string AdrHomeDirectory { get; set; }
Property Value
Type Description
string

The directory that stores tracing and logging incidents when Automatic Diagnostic Repository (ADR) is enabled.

Connector

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

DbNodeName

Declaration
[JsonProperty(PropertyName = "dbNodeName")]
public string DbNodeName { get; set; }
Property Value
Type Description
string

The name of the DB node.

Endpoints

Declaration
[JsonProperty(PropertyName = "endpoints")]
public List<ExternalListenerEndpoint> Endpoints { get; set; }
Property Value
Type Description
List<ExternalListenerEndpoint>

The list of protocol addresses the listener is configured to listen on.

HostName

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

The name of the host on which the external listener is running.

ListenerAlias

Declaration
[JsonProperty(PropertyName = "listenerAlias")]
public string ListenerAlias { get; set; }
Property Value
Type Description
string

The listener alias.

ListenerType

Declaration
[JsonProperty(PropertyName = "listenerType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DiscoveredExternalListener.ListenerTypeEnum? ListenerType { get; set; }
Property Value
Type Description
DiscoveredExternalListener.ListenerTypeEnum?

The type of listener.

LogDirectory

Declaration
[JsonProperty(PropertyName = "logDirectory")]
public string LogDirectory { get; set; }
Property Value
Type Description
string

The destination directory of the listener log file.

OracleHome

Declaration
[JsonProperty(PropertyName = "oracleHome")]
public string OracleHome { get; set; }
Property Value
Type Description
string

The Oracle home location of the listener.

TraceDirectory

Declaration
[JsonProperty(PropertyName = "traceDirectory")]
public string TraceDirectory { get; set; }
Property Value
Type Description
string

The destination directory of the listener trace file.

Version

Declaration
[JsonProperty(PropertyName = "version")]
public string Version { get; set; }
Property Value
Type Description
string

The listener version.

In this article
Back to top