Module Values_0.PrincipalPermissionsSource

Permissions granted to a principal.

Sourcetype nonrec t = {
  1. principal : DataLakePrincipal.t option;
    (*

    The principal who is granted permissions.

    *)
  2. permissions : PermissionList.t option;
    (*

    The permissions that are granted to the principal.

    *)
}
Sourceval make : ?principal:??? -> ?permissions:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Enum of string ] list | `Structure of (string * [> `String of DataLakePrincipalString.t ]) list ]) 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