Show / Hide Table of Contents

Class DiscoveredCloudListener

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

Inheritance
object
DiscoveredCloudDbSystemComponent
DiscoveredCloudListener
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 DiscoveredCloudListener : DiscoveredCloudDbSystemComponent

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 CloudDbSystemDiscoveryConnector Connector { get; set; }
Property Value
Type Description
CloudDbSystemDiscoveryConnector

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<CloudListenerEndpoint> Endpoints { get; set; }
Property Value
Type Description
List<CloudListenerEndpoint>

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 cloud 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 DiscoveredCloudListener.ListenerTypeEnum? ListenerType { get; set; }
Property Value
Type Description
DiscoveredCloudListener.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