Show / Hide Table of Contents

Class ArchivingConfiguration

This is the configuration for data archiving in object storage

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

Properties

ActiveStorageDuration

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

This is the duration data in active storage before data is archived, as described in https://en.wikipedia.org/wiki/ISO_8601#Durations. The largest supported unit is D, e.g. P365D (not P1Y) or P14D (not P2W).

ArchivalStorageDuration

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

This is the duration before archived data is deleted from object storage, as described in https://en.wikipedia.org/wiki/ISO_8601#Durations The largest supported unit is D, e.g. P365D (not P1Y) or P14D (not P2W).

In this article
Back to top