Show / Hide Table of Contents

Class CalculateAuditVolumeCollectedDetails

The details for calculating audit data volume collected by data safe.

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

Properties

TimeFromMonth

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

The date from which the audit volume collected by data safe has to be calculated, in the format defined by RFC3339.

Remarks

Required

TimeToMonth

Declaration
[JsonProperty(PropertyName = "timeToMonth")]
public DateTime? TimeToMonth { get; set; }
Property Value
Type Description
DateTime?

The date from which the audit volume collected by data safe has to be calculated, in the format defined by RFC3339. If not specified, this will default to the current date.

In this article
Back to top