Show / Hide Table of Contents

Class BackupDestinationProperties

The properties of the backup destination associated with the Autonomous Container Database.

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

Properties

BackupDestinationAttachHistory

Declaration
[JsonProperty(PropertyName = "backupDestinationAttachHistory")]
public List<DateTime> BackupDestinationAttachHistory { get; set; }
Property Value
Type Description
List<DateTime>

The timestamps at which this backup destination is used as the preferred destination to host the Autonomous Container Database backups.

SpaceUtilizedInGBs

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

The total space utilized (in GBs) by this Autonomous Container Database on this backup destination, rounded to the nearest integer.

TimeAtWhichStorageDetailsAreUpdated

Declaration
[JsonProperty(PropertyName = "timeAtWhichStorageDetailsAreUpdated")]
public DateTime? TimeAtWhichStorageDetailsAreUpdated { get; set; }
Property Value
Type Description
DateTime?

The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.

In this article
Back to top