Show / Hide Table of Contents

Class CreateDatabaseFromBackupDetails

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

Properties

AdminPassword

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

A strong password for SYS, SYSTEM, PDB Admin and TDE Wallet. 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 -.

Remarks

Required

BackupId

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

The backup OCID.

Remarks

Required

BackupTDEPassword

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

The password to open the TDE wallet.

DbName

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

The display name of the database to be created from the backup. It must begin with an alphabetic character and can contain a maximum of eight alphanumeric characters. Special characters are not permitted.

DbUniqueName

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

The DB_UNIQUE_NAME of the Oracle Database being backed up.

PluggableDatabases

Declaration
[JsonProperty(PropertyName = "pluggableDatabases")]
public List<string> PluggableDatabases { get; set; }
Property Value
Type Description
List<string>

The list of pluggable databases that needs to be restored into new database.

SidPrefix

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

Specifies a prefix for the Oracle SID of the database to be created.

SourceEncryptionKeyLocationDetails

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