Show / Hide Table of Contents

Class AvailableAuditVolumeSummary

Represents the audit data volume collected by Data Safe from the target database for the specified audit profile.

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

Properties

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

AuditTrailId

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

The OCID of the audit trail.

DatabaseUniqueName

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

Unique name of the database associated to the peer target database.

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 for which aggregated audit data volume available at the target is computed. 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

TrailLocation

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

Audit trail location on the target database from where the audit data is being collected by Data Safe.

Remarks

Required

Volume

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

Represents the aggregated audit data volume available in the audit trails on the target database which is yet to be collected by Data Safe for the specified month.

Remarks

Required

In this article
Back to top