Module Values.ArgoCdRoleMappingSource

A mapping between an Argo CD role and IAM Identity CenterIAM; Identity Center identities. This defines which users or groups have specific permissions in Argo CD.

Sourcetype nonrec t = {
  1. role : ArgoCdRole.t;
    (*

    The Argo CD role to assign. Valid values are: ADMIN – Full administrative access to Argo CD. EDITOR – Edit access to Argo CD resources. VIEWER – Read-only access to Argo CD resources.

    *)
  2. identities : SsoIdentityList.t;
    (*

    A list of IAM Identity CenterIAM; Identity Center identities (users or groups) that should be assigned this Argo CD role.

    *)
}
Sourceval context_ : string
Sourceval make : role:ArgoCdRole.t -> identities:SsoIdentityList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of String_.t ]) 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