Show / Hide Table of Contents

Class BackupCopyDetails

Backup Copy details

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

Properties

CompartmentId

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

target compartment to place a new backup

Remarks

Required

Regions

Declaration
[Required(ErrorMessage = "Regions is required.")]
[JsonProperty(PropertyName = "regions")]
public List<string> Regions { get; set; }
Property Value
Type Description
List<string>

List of region names of the remote region

Remarks

Required

RetentionPeriod

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

Retention period in days of the backup copy.

In this article
Back to top