Module Values_0.AuditSuppressionSource

Filters out specific findings of a Device Defender audit.

Sourcetype nonrec t = {
  1. checkName : AuditCheckName.t option;
  2. resourceIdentifier : ResourceIdentifier.t option;
  3. expirationDate : Timestamp.t option;
    (*

    The expiration date (epoch timestamp in seconds) that you want the suppression to adhere to.

    *)
  4. suppressIndefinitely : SuppressIndefinitely.t option;
    (*

    Indicates whether a suppression should exist indefinitely or not.

    *)
  5. description : AuditDescription.t option;
    (*

    The description of the audit suppression.

    *)
}
Sourceval make : ?checkName:??? -> ?resourceIdentifier:??? -> ?expirationDate:??? -> ?suppressIndefinitely:??? -> ?description:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of SuppressIndefinitely.t | `String of AuditCheckName.t | `Structure of (string * [> `String of CertificateId.t | `Structure of (string * [> `String of PolicyName.t ]) list ]) list | `Timestamp of Timestamp.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t