Module Values.ComputerSource

Contains information about a computer account in a directory.

Sourcetype nonrec t = {
  1. computerId : SID.t option;
    (*

    The identifier of the computer.

    *)
  2. computerName : ComputerName.t option;
    (*

    The computer name.

    *)
  3. computerAttributes : Attributes.t option;
    (*

    An array of Attribute objects containing the LDAP attributes that belong to the computer account.

    *)
}
Sourceval make : ?computerId:??? -> ?computerName:??? -> ?computerAttributes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of AttributeName.t ]) list ] list | `String of SID.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