Show / Hide Table of Contents

Class PluggableDatabaseConnectionStrings

Connection strings to connect to an Oracle Pluggable Database.

Inheritance
object
PluggableDatabaseConnectionStrings
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatabaseService.Models
Assembly: OCI.DotNetSDK.Database.dll
Syntax
public class PluggableDatabaseConnectionStrings

Properties

AllConnectionStrings

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

All connection strings to use to connect to the pluggable database.

PdbDefault

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

A host name-based PDB connection string.

PdbIpDefault

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

An IP-based PDB connection string.

In this article
Back to top