Module Values.CreationPermissionsSource

Specifies the permissions to set on newly created directories within the file system.

Sourcetype nonrec t = {
  1. ownerUid : OwnerUid.t;
    (*

    The POSIX user ID to assign to newly created directories.

    *)
  2. ownerGid : OwnerGid.t;
    (*

    The POSIX group ID to assign to newly created directories.

    *)
  3. permissions : Permissions.t;
    (*

    The octal permissions to assign to newly created directories.

    *)
}
Sourceval context_ : string
Sourceval make : ownerUid:OwnerUid.t -> ownerGid:OwnerGid.t -> permissions:Permissions.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of OwnerUid.t | `String of Permissions.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