Module Values.AssessmentReportSource

Contains the results of validation tests performed against a specific domain controller during a directory assessment.

Sourcetype nonrec t = {
  1. domainControllerIp : IpAddr.t option;
    (*

    The IP address of the domain controller that was tested during the assessment.

    *)
  2. validations : AssessmentValidations.t option;
    (*

    A list of validation results for different test categories performed against this domain controller.

    *)
}
Sourceval make : ?domainControllerIp:??? -> ?validations:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of AssessmentValidationCategory.t | `Timestamp of AssessmentValidationTimeStamp.t ]) list ] list | `String of IpAddr.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