Show / Hide Table of Contents

Class StorageUsage

This is the storage usage information of a tenancy in Logging Analytics application

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

Properties

ActiveDataSizeInBytes

Declaration
[Required(ErrorMessage = "ActiveDataSizeInBytes is required.")]
[JsonProperty(PropertyName = "activeDataSizeInBytes")]
public long? ActiveDataSizeInBytes { get; set; }
Property Value
Type Description
long?

This is the number of bytes of active data (non-archived)

Remarks

Required

ArchivedDataSizeInBytes

Declaration
[Required(ErrorMessage = "ArchivedDataSizeInBytes is required.")]
[JsonProperty(PropertyName = "archivedDataSizeInBytes")]
public long? ArchivedDataSizeInBytes { get; set; }
Property Value
Type Description
long?

This is the number of bytes of archived data in object storage

Remarks

Required

RecalledArchivedDataSizeInBytes

Declaration
[Required(ErrorMessage = "RecalledArchivedDataSizeInBytes is required.")]
[JsonProperty(PropertyName = "recalledArchivedDataSizeInBytes")]
public long? RecalledArchivedDataSizeInBytes { get; set; }
Property Value
Type Description
long?

This is the number of bytes of recalled data from archived in object store

Remarks

Required

In this article
Back to top