Module Values.AssessmentSummarySource

Contains summary information about a directory assessment, providing a high-level overview without detailed validation results.

Sourcetype nonrec t = {
  1. assessmentId : AssessmentId.t option;
    (*

    The unique identifier of the directory assessment.

    *)
  2. directoryId : DirectoryId.t option;
    (*

    The identifier of the directory associated with this assessment.

    *)
  3. dnsName : DirectoryName.t option;
    (*

    The fully qualified domain name (FQDN) of the Active Directory domain being assessed.

    *)
  4. startTime : AssessmentStartTime.t option;
    (*

    The date and time when the assessment was initiated.

    *)
  5. lastUpdateDateTime : LastUpdateDateTime.t option;
    (*

    The date and time when the assessment status was last updated.

    *)
  6. status : AssessmentStatus.t option;
    (*

    The current status of the assessment. Valid values include SUCCESS, FAILED, PENDING, and IN_PROGRESS.

    *)
  7. customerDnsIps : CustomerDnsIps.t option;
    (*

    The IP addresses of the DNS servers or domain controllers in your self-managed AD environment.

    *)
  8. reportType : AssessmentReportType.t option;
    (*

    The type of assessment report generated. Valid values include CUSTOMER and SYSTEM.

    *)
}
Sourceval make : ?assessmentId:??? -> ?directoryId:??? -> ?dnsName:??? -> ?startTime:??? -> ?lastUpdateDateTime:??? -> ?status:??? -> ?customerDnsIps:??? -> ?reportType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of IpAddr.t ] list | `String of AssessmentId.t | `Timestamp of AssessmentStartTime.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