Module Values.AssertionAttributesSource

A structure that defines which attributes in the IdP assertion are to be used to define information about the users authenticated by the IdP to use the workspace.

Sourcetype nonrec t = {
  1. name : AssertionAttribute.t option;
    (*

    The name of the attribute within the SAML assertion to use as the user full "friendly" names for SAML users.

    *)
  2. login : AssertionAttribute.t option;
    (*

    The name of the attribute within the SAML assertion to use as the login names for SAML users.

    *)
  3. email : AssertionAttribute.t option;
    (*

    The name of the attribute within the SAML assertion to use as the email names for SAML users.

    *)
  4. groups : AssertionAttribute.t option;
    (*

    The name of the attribute within the SAML assertion to use as the user full "friendly" names for user groups.

    *)
  5. role : AssertionAttribute.t option;
    (*

    The name of the attribute within the SAML assertion to use as the user roles.

    *)
  6. org : AssertionAttribute.t option;
    (*

    The name of the attribute within the SAML assertion to use as the user full "friendly" names for the users' organizations.

    *)
}
Sourceval make : ?name:??? -> ?login:??? -> ?email:??? -> ?groups:??? -> ?role:??? -> ?org:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AssertionAttribute.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