Show / Hide Table of Contents

Class OracleConnection

Represents the metadata of an Oracle Database Connection.

Inheritance
object
Connection
OracleConnection
Inherited Members
Connection.Id
Connection.DisplayName
Connection.Description
Connection.CompartmentId
Connection.FreeformTags
Connection.DefinedTags
Connection.SystemTags
Connection.LifecycleState
Connection.LifecycleDetails
Connection.TimeCreated
Connection.TimeUpdated
Connection.VaultId
Connection.KeyId
Connection.SubnetId
Connection.IngressIps
Connection.NsgIds
Connection.Username
Connection.Password
Connection.ReplicationUsername
Connection.ReplicationPassword
Connection.SecretId
Connection.PrivateEndpointId
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatabasemigrationService.Models
Assembly: OCI.DotNetSDK.Databasemigration.dll
Syntax
public class OracleConnection : Connection

Properties

ConnectionString

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

Connect descriptor or Easy Connect Naming method used to connect to a database.

DatabaseId

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

The OCID of the database being referenced.

SshHost

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

Name of the host the SSH key is valid for.

SshKey

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

Private SSH key string.

SshSudoLocation

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

Sudo location

SshUser

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

The username (credential) used when creating or updating this resource.

TechnologyType

Declaration
[Required(ErrorMessage = "TechnologyType is required.")]
[JsonProperty(PropertyName = "technologyType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public OracleConnection.TechnologyTypeEnum? TechnologyType { get; set; }
Property Value
Type Description
OracleConnection.TechnologyTypeEnum?

The Oracle technology type.

Remarks

Required

In this article
Back to top