Module Values.PosixUserSource

Specifies the POSIX identity with uid, gid, and secondary group IDs for user enforcement.

Sourcetype nonrec t = {
  1. uid : Uid.t;
    (*

    The POSIX user ID.

    *)
  2. gid : Gid.t;
    (*

    The POSIX group ID.

    *)
  3. secondaryGids : SecondaryGids.t option;
    (*

    An array of secondary POSIX group IDs.

    *)
}
Sourceval context_ : string
Sourceval make : ?secondaryGids:??? -> uid:Uid.t -> gid:Gid.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Long of Gid.t ] list | `Long of Uid.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