Module Values.PosixUserSource

The full POSIX identity, including the user ID, group ID, and any secondary group IDs, on the access point that is used for all file system operations performed by NFS clients using the access point.

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

    The POSIX user ID used for all file system operations using this access point.

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

    The POSIX group ID used for all file system operations using this access point.

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

    Secondary POSIX group IDs used for all file system operations using this access point.

    *)
}
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