Show / Hide Table of Contents

Class BackupValidationDetails

Backup validation details.

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

Properties

BackupPreparationStatus

Declaration
[JsonProperty(PropertyName = "backupPreparationStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public BackupValidationDetails.BackupPreparationStatusEnum? BackupPreparationStatus { get; set; }
Property Value
Type Description
BackupValidationDetails.BackupPreparationStatusEnum?

Indicates whether the backup has been prepared successfully. PREPARED: The backup is prepared one. NOT_PREPARED: The backup is not prepared.

ErrorMessage

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

Error message if the backup validation has failed.

EstimatedRestoreDuration

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

The estimated restore duration of the backup.

PreparedBackupDetails

Declaration
[JsonProperty(PropertyName = "preparedBackupDetails")]
public PreparedBackupDetails PreparedBackupDetails { get; set; }
Property Value
Type Description
PreparedBackupDetails

TimeLastValidated

Declaration
[JsonProperty(PropertyName = "timeLastValidated")]
public DateTime? TimeLastValidated { get; set; }
Property Value
Type Description
DateTime?

The date and time of the most recent validation performed on the backup.

ValidationStatus

Declaration
[JsonProperty(PropertyName = "validationStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public BackupValidationDetails.ValidationStatusEnum? ValidationStatus { get; set; }
Property Value
Type Description
BackupValidationDetails.ValidationStatusEnum?

The status of backup validation: NOT_VALIDATED (Default): The backup has not been validated. VALIDATED: The backup has been validated successfully. NEEDS_ATTENTION: The backup validation failed due to a transient issue. Validation should be retried. FAILED: The backup cannot be restored.

In this article
Back to top