Show / Hide Table of Contents

Class ValidateBackupDetails

Details required to validate backup.

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

Properties

IsPreparedBackupRequired

Declaration
[Required(ErrorMessage = "IsPreparedBackupRequired is required.")]
[JsonProperty(PropertyName = "isPreparedBackupRequired")]
public bool? IsPreparedBackupRequired { get; set; }
Property Value
Type Description
bool?

Specifies whether the backup needs to be prepared for fast restore or not.
Set to true to prepare the backup, set to false (default) if not required. Note: The prepared backup will replace the original backup and will not generate a new backup copy. The cost associated with the backup may vary, as the prepared backup will consistently be a full backup, it may also change the storage size of the original backup.

Remarks

Required

In this article
Back to top