Show / Hide Table of Contents

Class UpdateDatabaseToolsConnectionOracleDatabaseDetails

The update details for a Database Tools Oracle Database connection.

Inheritance
object
UpdateDatabaseToolsConnectionDetails
UpdateDatabaseToolsConnectionOracleDatabaseDetails
Inherited Members
UpdateDatabaseToolsConnectionDetails.DisplayName
UpdateDatabaseToolsConnectionDetails.DefinedTags
UpdateDatabaseToolsConnectionDetails.FreeformTags
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatabasetoolsService.Models
Assembly: OCI.DotNetSDK.Databasetools.dll
Syntax
public class UpdateDatabaseToolsConnectionOracleDatabaseDetails : UpdateDatabaseToolsConnectionDetails

Properties

AdvancedProperties

Declaration
[JsonProperty(PropertyName = "advancedProperties")]
public Dictionary<string, string> AdvancedProperties { get; set; }
Property Value
Type Description
Dictionary<string, string>

The advanced connection properties key-value pair (e.g., oracle.net.ssl_server_dn_match).

ConnectionString

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

The connect descriptor or Easy Connect Naming method used to connect to the database.

KeyStores

Declaration
[JsonProperty(PropertyName = "keyStores")]
public List<DatabaseToolsKeyStoreDetails> KeyStores { get; set; }
Property Value
Type Description
List<DatabaseToolsKeyStoreDetails>

Oracle wallet or Java Keystores containing trusted certificates for authenticating the server's public certificate and the client private key and associated certificates required for client authentication.

PrivateEndpointId

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

The OCID of the DatabaseToolsPrivateEndpoint used to access the database in the Customer VCN.

ProxyClient

Declaration
[JsonProperty(PropertyName = "proxyClient")]
public DatabaseToolsConnectionOracleDatabaseProxyClientDetails ProxyClient { get; set; }
Property Value
Type Description
DatabaseToolsConnectionOracleDatabaseProxyClientDetails

RelatedResource

Declaration
[JsonProperty(PropertyName = "relatedResource")]
public UpdateDatabaseToolsRelatedResourceDetails RelatedResource { get; set; }
Property Value
Type Description
UpdateDatabaseToolsRelatedResourceDetails

UserName

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

The database user name.

UserPassword

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