Module Values.DomainJoinInfoSource

Describes the configuration information required to join fleets and image builders to Microsoft Active Directory domains.

Sourcetype nonrec t = {
  1. directoryName : DirectoryName.t option;
    (*

    The fully qualified name of the directory (for example, corp.example.com).

    *)
  2. organizationalUnitDistinguishedName : OrganizationalUnitDistinguishedName.t option;
    (*

    The distinguished name of the organizational unit for computer accounts.

    *)
}
Sourceval make : ?directoryName:??? -> ?organizationalUnitDistinguishedName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of DirectoryName.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