Show / Hide Table of Contents

Class ExternalDbSystemDiscoveryConnector

The connector details used to connect to the external DB system component.

Inheritance
object
ExternalDbSystemDiscoveryConnector
ExternalDbSystemDiscoveryMacsConnector
Inherited Members
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
[JsonConverter(typeof(ExternalDbSystemDiscoveryConnectorModelConverter))]
public class ExternalDbSystemDiscoveryConnector

Properties

ConnectionFailureMessage

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

The error message indicating the reason for connection failure or null if the connection was successful.

ConnectionStatus

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

The status of connectivity to the external DB system component.

DisplayName

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

The user-friendly name for the external connector. The name does not have to be unique.

Remarks

Required

TimeConnectionStatusLastUpdated

Declaration
[JsonProperty(PropertyName = "timeConnectionStatusLastUpdated")]
public DateTime? TimeConnectionStatusLastUpdated { get; set; }
Property Value
Type Description
DateTime?

The date and time the connectionStatus of the external DB system connector was last updated.

In this article
Back to top