Module Values.UpdateEnvironmentRequestSource

Update your FinSpace environment.

Sourcetype nonrec t = {
  1. environmentId : IdType.t;
    (*

    The identifier of the FinSpace environment.

    *)
  2. name : EnvironmentName.t option;
    (*

    The name of the environment.

    *)
  3. description : Description.t option;
    (*

    The description of the environment.

    *)
  4. federationMode : FederationMode.t option;
    (*

    Authentication mode for the environment. FEDERATED - Users access FinSpace through Single Sign On (SSO) via your Identity provider. LOCAL - Users access FinSpace via email and password managed within the FinSpace environment.

    *)
  5. federationParameters : FederationParameters.t option;
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?description:??? -> ?federationMode:??? -> ?federationParameters:??? -> environmentId:IdType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of IdType.t | `Structure of (string * [> `Map of ([> `String of FederationAttributeKey.t ] * [> `String of FederationAttributeValue.t ]) list | `String of SamlMetadataDocument.t ]) 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