Module Values.EnableSsoRequestSource

Contains the inputs for the EnableSso operation.

Sourcetype nonrec t = {
  1. directoryId : DirectoryId.t;
    (*

    The identifier of the directory for which to enable single-sign on.

    *)
  2. userName : UserName.t option;
    (*

    The username of an alternate account to use to enable single-sign on. This is only used for AD Connector directories. This account must have privileges to add a service principal name. If the AD Connector service account does not have privileges to add a service principal name, you can specify an alternate account with the UserName and Password parameters. These credentials are only used to enable single sign-on and are not stored by the service. The AD Connector service account is not changed.

    *)
  3. password : ConnectPassword.t option;
    (*

    The password of an alternate account to use to enable single-sign on. This is only used for AD Connector directories. For more information, see the UserName parameter.

    *)
}
Sourceval context_ : string
Sourceval make : ?userName:??? -> ?password:??? -> directoryId:DirectoryId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of DirectoryId.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