Show / Hide Table of Contents

Class ExternalDbSystemConnector

The details of an external DB system connector.

Inheritance
object
ExternalDbSystemConnector
ExternalDbSystemMacsConnector
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(ExternalDbSystemConnectorModelConverter))]
public class ExternalDbSystemConnector

Properties

CompartmentId

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

The OCID of the compartment.

Remarks

Required

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

ExternalDbSystemId

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

The OCID of the external DB system that the connector is a part of.

Remarks

Required

Id

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

The OCID of the external DB system connector.

Remarks

Required

LifecycleDetails

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

Additional information about the current lifecycle state.

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ExternalDbSystemConnector.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
ExternalDbSystemConnector.LifecycleStateEnum?

The current lifecycle state of the external DB system connector.

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.

TimeCreated

Declaration
[Required(ErrorMessage = "TimeCreated is required.")]
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

The date and time the external DB system connector was created.

Remarks

Required

TimeUpdated

Declaration
[Required(ErrorMessage = "TimeUpdated is required.")]
[JsonProperty(PropertyName = "timeUpdated")]
public DateTime? TimeUpdated { get; set; }
Property Value
Type Description
DateTime?

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

Remarks

Required

In this article
Back to top