Module Values.UpdateRoleMappingsSource

Updates to RBAC role mappings for an Argo CD capability. You can add, update, or remove role mappings in a single operation.

Sourcetype nonrec t = {
  1. addOrUpdateRoleMappings : ArgoCdRoleMappingList.t option;
    (*

    A list of role mappings to add or update. If a mapping for the specified role already exists, it will be updated with the new identities. If it doesn't exist, a new mapping will be created.

    *)
  2. removeRoleMappings : ArgoCdRoleMappingList.t option;
    (*

    A list of role mappings to remove from the RBAC configuration. Each mapping specifies an Argo CD role (ADMIN, EDITOR, or VIEWER) and the identities to remove from that role.

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