Module Values.IdpMetadataSource

A structure containing the identity provider (IdP) metadata used to integrate the identity provider with this workspace. You can specify the metadata either by providing a URL to its location in the url parameter, or by specifying the full metadata in XML format in the xml parameter. Specifying both will cause an error.

Sourcetype nonrec t = {
  1. url : IdpMetadataUrl.t option;
    (*

    The URL of the location containing the IdP metadata.

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

    The full IdP metadata, in XML format.

    *)
}
Sourceval make : ?url:??? -> ?xml:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of IdpMetadataUrl.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