Show / Hide Table of Contents

Class CreateBackupDetails

Details for creating a database backup.
Warning: Oracle recommends that you avoid using any confidential information when you supply string values using the API.

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

Properties

DatabaseId

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

The OCID of the database.

Remarks

Required

DisplayName

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

The user-friendly name for the backup. The name does not have to be unique.

Remarks

Required

RetentionPeriodInDays

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

The retention period of the long term backup in days.

RetentionPeriodInYears

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

The retention period of the long term backup in years.

In this article
Back to top