Show / Hide Table of Contents

Class CreateAutonomousDatabaseBackupDetails

Details to create an Oracle Autonomous Database backup.
Warning: Oracle recommends that you avoid using any confidential information when you supply string values using the API.

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

Properties

AutonomousDatabaseId

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

The OCID of the Autonomous Database backup.

Remarks

Required

BackupDestinationDetails

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

DisplayName

Declaration
[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.

IsLongTermBackup

Declaration
[JsonProperty(PropertyName = "isLongTermBackup")]
public bool? IsLongTermBackup { get; set; }
Property Value
Type Description
bool?

Indicates whether the backup is long-term

RetentionPeriodInDays

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

Retention period, in days, for long-term backups

In this article
Back to top