Show / Hide Table of Contents

Class CreatePluggableDatabaseDetails

Parameters for creating a pluggable database in a specified container database (CDB). Additional option pdbCreationTypeDetails can be used for creating Pluggable Database using different operations, e.g. LocalClone, Remote Clone, Relocate. Warning: Oracle recommends that you avoid using any confidential information when you supply string values using the API.

Inheritance
object
CreatePluggableDatabaseDetails
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 CreatePluggableDatabaseDetails

Properties

ContainerDatabaseAdminPassword

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

The DB system administrator password of the Container Database.

ContainerDatabaseId

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

The OCID of the CDB

Remarks

Required

DefinedTags

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

Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.

FreeformTags

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

Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags.
Example: {"Department": "Finance"}

PdbAdminPassword

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

A strong password for PDB Admin. The password must be at least nine characters and contain at least two uppercase, two lowercase, two numbers, and two special characters. The special characters must be _, \#, or -.

PdbCreationTypeDetails

Declaration
[JsonProperty(PropertyName = "pdbCreationTypeDetails")]
public CreatePluggableDatabaseCreationTypeDetails PdbCreationTypeDetails { get; set; }
Property Value
Type Description
CreatePluggableDatabaseCreationTypeDetails

PdbName

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

The name for the pluggable database (PDB). The name is unique in the context of a {@link Database}. The name must begin with an alphabetic character and can contain a maximum of thirty alphanumeric characters. Special characters are not permitted. The pluggable database name should not be same as the container database name.

Remarks

Required

ShouldCreatePdbBackup

Declaration
[JsonProperty(PropertyName = "shouldCreatePdbBackup")]
public bool? ShouldCreatePdbBackup { get; set; }
Property Value
Type Description
bool?

Indicates whether to take Pluggable Database Backup after the operation.

ShouldPdbAdminAccountBeLocked

Declaration
[JsonProperty(PropertyName = "shouldPdbAdminAccountBeLocked")]
public bool? ShouldPdbAdminAccountBeLocked { get; set; }
Property Value
Type Description
bool?

The locked mode of the pluggable database admin account. If false, the user needs to provide the PDB Admin Password to connect to it. If true, the pluggable database will be locked and user cannot login to it.

TdeWalletPassword

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

The existing TDE wallet password of the CDB.

In this article
Back to top