Show / Hide Table of Contents

Class ExternalDatabaseConnectionInfo

The details required to connect to an external Oracle Database. It takes either connectionCredentials or databaseCredential. It's recommended to provide databaseCredential

Inheritance
object
ExternalDbSystemConnectionInfo
ExternalDatabaseConnectionInfo
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
public class ExternalDatabaseConnectionInfo : ExternalDbSystemConnectionInfo

Properties

ConnectionCredentials

Declaration
[JsonProperty(PropertyName = "connectionCredentials")]
public DatabaseConnectionCredentials ConnectionCredentials { get; set; }
Property Value
Type Description
DatabaseConnectionCredentials

ConnectionString

Declaration
[Required(ErrorMessage = "ConnectionString is required.")]
[JsonProperty(PropertyName = "connectionString")]
public DatabaseConnectionString ConnectionString { get; set; }
Property Value
Type Description
DatabaseConnectionString
Remarks

Required

DatabaseCredential

Declaration
[JsonProperty(PropertyName = "databaseCredential")]
public DatabaseCredentialDetails DatabaseCredential { get; set; }
Property Value
Type Description
DatabaseCredentialDetails
In this article
Back to top