Module Values.KubernetesUserDetailsSource

Details about the Kubernetes user involved in a Kubernetes finding.

Sourcetype nonrec t = {
  1. username : String_.t option;
    (*

    The username of the user who called the Kubernetes API.

    *)
  2. uid : String_.t option;
    (*

    The user ID of the user who called the Kubernetes API.

    *)
  3. groups : Groups.t option;
    (*

    The groups that include the user who called the Kubernetes API.

    *)
  4. sessionName : SessionNameList.t option;
    (*

    Entity that assumes the IAM role when Kubernetes RBAC permissions are assigned to that role.

    *)
  5. impersonatedUser : ImpersonatedUser.t option;
    (*

    Information about the impersonated user.

    *)
}
Sourceval make : ?username:??? -> ?uid:??? -> ?groups:??? -> ?sessionName:??? -> ?impersonatedUser:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] list | `String of String_.t | `Structure of (string * [> `List of [> `String of String_.t ] list | `String of String_.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