Module Values_0.UpdateAuditSuppressionRequestSource

Updates a Device Defender audit suppression.

Sourcetype nonrec t = {
  1. checkName : AuditCheckName.t;
  2. resourceIdentifier : ResourceIdentifier.t;
  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 context_ : string
Sourceval make : ?expirationDate:??? -> ?suppressIndefinitely:??? -> ?description:??? -> checkName:AuditCheckName.t -> resourceIdentifier:ResourceIdentifier.t -> 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