Show / Hide Table of Contents

Class DatabaseToolsConnectionGenericJdbc

Database Tools connection of a Generic JDBC database system.

Inheritance
object
DatabaseToolsConnection
DatabaseToolsConnectionGenericJdbc
Inherited Members
DatabaseToolsConnection.Id
DatabaseToolsConnection.DisplayName
DatabaseToolsConnection.CompartmentId
DatabaseToolsConnection.LifecycleState
DatabaseToolsConnection.LifecycleDetails
DatabaseToolsConnection.TimeCreated
DatabaseToolsConnection.TimeUpdated
DatabaseToolsConnection.DefinedTags
DatabaseToolsConnection.FreeformTags
DatabaseToolsConnection.SystemTags
DatabaseToolsConnection.Locks
DatabaseToolsConnection.RuntimeSupport
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 DatabaseToolsConnectionGenericJdbc : DatabaseToolsConnection

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.

KeyStores

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

The CA certificate to verify the server's certificate and the client private key and associated certificate required for client authentication.

Url

Declaration
[Required(ErrorMessage = "Url is required.")]
[JsonProperty(PropertyName = "url")]
public string Url { get; set; }
Property Value
Type Description
string

The JDBC URL used to connect to the Generic JDBC database system.

Remarks

Required

UserName

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

The user name.

UserPassword

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