Show / Hide Table of Contents

Class CopyBackupDetails

Details required to copy a DB system backup from its source region to a destination region.

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

Properties

BackupCopyRetentionInDays

Declaration
[JsonProperty(PropertyName = "backupCopyRetentionInDays")]
public int? BackupCopyRetentionInDays { get; set; }
Property Value
Type Description
int?

Number of days to retain the copied DB system backup.
Note: The maximum value for an automatic backup is 35, and the maximum value for a manual backup is 365.

CompartmentId

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

The OCID of the compartment the DB system backup is to be copied to.
Note: The compartment must be the same as the compartment of the DB system backup in the source region.

Remarks

Required

Description

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

A user-supplied description for the DB system backup. By default, the source backup description will be used.

DisplayName

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

A user-supplied display name for the DB system backup. By default, the source backup display name will be used.

SourceBackupId

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

The OCID of DB system backup to be copied.

Remarks

Required

SourceRegion

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

The region identifier of the source region where the DB system backup exists. For more information, please see Regions and Availability Domains.

Remarks

Required

In this article
Back to top