Show / Hide Table of Contents

Class UpdateOracleConnectionDetails

The information to update an Oracle Database Connection.

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

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.

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