Module Values.RadiusSettingsSource

Contains information about a Remote Authentication Dial In User Service (RADIUS) server.

Sourcetype nonrec t = {
  1. radiusServers : Servers.t option;
    (*

    The fully qualified domain name (FQDN) or IP addresses of the RADIUS server endpoints, or the FQDN or IP addresses of your RADIUS server load balancer.

    *)
  2. radiusServersIpv6 : Servers.t option;
    (*

    The IPv6 addresses of the RADIUS server endpoints or RADIUS server load balancer.

    *)
  3. radiusPort : PortNumber.t option;
    (*

    The port that your RADIUS server is using for communications. Your self-managed network must allow inbound traffic over this port from the Directory Service servers.

    *)
  4. radiusTimeout : RadiusTimeout.t option;
    (*

    The amount of time, in seconds, to wait for the RADIUS server to respond.

    *)
  5. radiusRetries : RadiusRetries.t option;
    (*

    The maximum number of times that communication with the RADIUS server is retried after the initial attempt.

    *)
  6. sharedSecret : RadiusSharedSecret.t option;
    (*

    Required for enabling RADIUS on the directory.

    *)
  7. authenticationProtocol : RadiusAuthenticationProtocol.t option;
    (*

    The protocol specified for your RADIUS endpoints.

    *)
  8. displayLabel : RadiusDisplayLabel.t option;
    (*

    Not currently used.

    *)
  9. useSameUsername : UseSameUsername.t option;
    (*

    Not currently used.

    *)
}
Sourceval make : ?radiusServers:??? -> ?radiusServersIpv6:??? -> ?radiusPort:??? -> ?radiusTimeout:??? -> ?radiusRetries:??? -> ?sharedSecret:??? -> ?authenticationProtocol:??? -> ?displayLabel:??? -> ?useSameUsername:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of UseSameUsername.t | `Enum of string | `Integer of PortNumber.t | `List of [> `String of Server.t ] list | `String of RadiusSharedSecret.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