Module Values.KubernetesRoleBindingDetailsSource

Contains information about the role binding that grants the permission defined in a Kubernetes role.

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

    The kind of the role. For role binding, this value will be RoleBinding.

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

    The name of the RoleBinding.

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

    The unique identifier of the role binding.

    *)
  4. roleRefName : String_.t option;
    (*

    The name of the role being referenced. This must match the name of the Role or ClusterRole that you want to bind to.

    *)
  5. roleRefKind : String_.t option;
    (*

    The type of the role being referenced. This could be either Role or ClusterRole.

    *)
}
Sourceval make : ?kind:??? -> ?name:??? -> ?uid:??? -> ?roleRefName:??? -> ?roleRefKind:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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