Show / Hide Table of Contents

Class CompleteExternalBackupJobDetails

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

Properties

CfBackupHandle

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

The handle of the control file backup.

DataSize

Declaration
[JsonProperty(PropertyName = "dataSize")]
public long? DataSize { get; set; }
Property Value
Type Description
long?

The size of the data in the database, in megabytes.

RedoSize

Declaration
[JsonProperty(PropertyName = "redoSize")]
public long? RedoSize { get; set; }
Property Value
Type Description
long?

The size of the redo in the database, in megabytes.

SpfBackupHandle

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

The handle of the spfile backup.

SqlPatches

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

The list of SQL patches that need to be applied to the backup during the restore.

TdeWalletPath

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

If the database being backed up is TDE enabled, this will be the path to the associated TDE wallet in Object Storage.

In this article
Back to top