Class StorageUsage
This is the storage usage information of a tenancy in Logging Analytics application
Inherited Members
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