Class DatabaseBackupSummary
The summary of the High Availability (HA) and backup for a database.
Inherited Members
Namespace: Oci.DatabasemanagementService.Models
Assembly: OCI.DotNetSDK.Databasemanagement.dll
Syntax
public class DatabaseBackupSummary
Properties
BackupDestination
Declaration
[Required(ErrorMessage = "BackupDestination is required.")]
[JsonProperty(PropertyName = "backupDestination")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DatabaseBackupSummary.BackupDestinationEnum? BackupDestination { get; set; }
Property Value
Type | Description |
---|---|
DatabaseBackupSummary.BackupDestinationEnum? | The backup destination of the database. |
Remarks
Required
BackupDurationInSeconds
Declaration
[Required(ErrorMessage = "BackupDurationInSeconds is required.")]
[JsonProperty(PropertyName = "backupDurationInSeconds")]
public int? BackupDurationInSeconds { get; set; }
Property Value
Type | Description |
---|---|
int? | The backup duration of the database in seconds. |
Remarks
Required
BackupSizeInGBs
Declaration
[Required(ErrorMessage = "BackupSizeInGBs is required.")]
[JsonProperty(PropertyName = "backupSizeInGBs")]
public float? BackupSizeInGBs { get; set; }
Property Value
Type | Description |
---|---|
float? | The backup size of the database. |
Remarks
Required
BackupStatus
Declaration
[Required(ErrorMessage = "BackupStatus is required.")]
[JsonProperty(PropertyName = "backupStatus")]
public string BackupStatus { get; set; }
Property Value
Type | Description |
---|---|
string | The backup status of the database. |
Remarks
Required
BackupType
Declaration
[Required(ErrorMessage = "BackupType is required.")]
[JsonProperty(PropertyName = "backupType")]
public string BackupType { get; set; }
Property Value
Type | Description |
---|---|
string | The backup type of the database (FULL/INCREMENTAL). |
Remarks
Required
TimeBackupCompleted
Declaration
[Required(ErrorMessage = "TimeBackupCompleted is required.")]
[JsonProperty(PropertyName = "timeBackupCompleted")]
public DateTime? TimeBackupCompleted { get; set; }
Property Value
Type | Description |
---|---|
DateTime? | The database backup completion date and time in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'". |
Remarks
Required