Show / Hide Table of Contents

Class CreateOracleConnectionDetails

The information about a new Oracle Database Connection.

Inheritance
object
CreateConnectionDetails
CreateOracleConnectionDetails
Inherited Members
CreateConnectionDetails.DisplayName
CreateConnectionDetails.Description
CreateConnectionDetails.CompartmentId
CreateConnectionDetails.FreeformTags
CreateConnectionDetails.DefinedTags
CreateConnectionDetails.VaultId
CreateConnectionDetails.KeyId
CreateConnectionDetails.SubnetId
CreateConnectionDetails.NsgIds
CreateConnectionDetails.Username
CreateConnectionDetails.Password
CreateConnectionDetails.ReplicationUsername
CreateConnectionDetails.ReplicationPassword
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 CreateOracleConnectionDetails : CreateConnectionDetails

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(StringEnumConverter))]
public OracleConnection.TechnologyTypeEnum? TechnologyType { get; set; }
Property Value
Type Description
OracleConnection.TechnologyTypeEnum?

The Oracle technology type.

Remarks

Required

Wallet

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

The wallet contents used to make connections to a database. This attribute is expected to be base64 encoded.

In this article
Back to top