Show / Hide Table of Contents

Class CollectedAuditVolumeSummary

The volume data point for audit data collected by datasafe.

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

Properties

ArchivedVolume

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

The audit data volume collected by Data Safe and is available in archive storage.

Remarks

Required

AuditProfileId

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

The OCID of the audit profile resource.

Remarks

Required

MonthInConsideration

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

Represents the month under consideration in which the aggregated audit data volume collected by Data Safe is displayed. This field will be the UTC start of the day of the first day of the month for which the aggregate count corresponds to, in the format defined by RFC3339.. For instance, the value of 01-01-2021T00:00:00Z represents Jan 2021.

Remarks

Required

OnlineVolume

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

The audit data volume collected by Data Safe and is available online in repository.

Remarks

Required

In this article
Back to top