Module Values.DescribeADAssessmentResultSource

Retrieves detailed information about a directory assessment, including its current status, validation results, and configuration details. Use this operation to monitor assessment progress and review results.

Sourcetype nonrec t = {
  1. assessment : Assessment.t option;
    (*

    Detailed information about the self-managed instance settings (IDs and DNS IPs).

    *)
  2. assessmentReports : AssessmentReports.t option;
    (*

    A list of assessment reports containing validation results for each domain controller and test category. Each report includes specific validation details and outcomes.

    *)
}
Sourcetype nonrec error = [
  1. | `ClientException of ClientException.t
  2. | `EntityDoesNotExistException of EntityDoesNotExistException.t
  3. | `InvalidParameterException of InvalidParameterException.t
  4. | `ServiceException of ServiceException.t
  5. | `UnsupportedOperationException of UnsupportedOperationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?assessment:??? -> ?assessmentReports:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ClientException of ClientException.t | `EntityDoesNotExistException of EntityDoesNotExistException.t | `InvalidParameterException of InvalidParameterException.t | `ServiceException of ServiceException.t | `Unknown_operation_error of string * string option | `UnsupportedOperationException of UnsupportedOperationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ClientException of ClientException.t | `EntityDoesNotExistException of EntityDoesNotExistException.t | `InvalidParameterException of InvalidParameterException.t | `ServiceException of ServiceException.t | `Unknown_operation_error of string * string option | `UnsupportedOperationException of UnsupportedOperationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of AssessmentValidationCategory.t | `Timestamp of AssessmentValidationTimeStamp.t ]) list ] list | `String of IpAddr.t ]) list ] list | `Structure of (string * [> `List of [> `String of IpAddr.t ] list | `String of AssessmentId.t | `Timestamp of AssessmentStartTime.t ]) list ]) 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