Module Values.GroupSource

A group object that contains identifying information and attributes for a specified group.

Sourcetype nonrec t = {
  1. distinguishedName : DistinguishedName.t option;
    (*

    The distinguished name of the object.

    *)
  2. groupScope : GroupScope.t option;
    (*

    The scope of the AD group. For details, see Active Directory security groups

    *)
  3. groupType : GroupType.t option;
    (*

    The AD group type. For details, see Active Directory security group type.

    *)
  4. otherAttributes : Attributes.t option;
    (*

    An expression of one or more attributes, data types, and the values of a group.

    *)
  5. sAMAccountName : GroupName.t option;
    (*

    The name of the group.

    *)
  6. sID : SID.t option;
    (*

    The unique security identifier (SID) of the group.

    *)
}
Sourceval make : ?distinguishedName:??? -> ?groupScope:??? -> ?groupType:??? -> ?otherAttributes:??? -> ?sAMAccountName:??? -> ?sID:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of LdapDisplayName.t ] * [> `Structure of (string * [> `Boolean of BooleanAttributeValue.t | `List of [> `String of StringAttributeValue.t ] list | `Long of NumberAttributeValue.t | `String of StringAttributeValue.t ]) list ]) list | `String of DistinguishedName.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