Module Values.ServerStrategySource

Contains information about a strategy recommendation for a server.

Sourcetype nonrec t = {
  1. isPreferred : Boolean.t option;
    (*

    Set to true if the recommendation is set as preferred.

    *)
  2. numberOfApplicationComponents : Integer.t option;
    (*

    The number of application components with this strategy recommendation running on the server.

    *)
  3. recommendation : RecommendationSet.t option;
    (*

    Strategy recommendation for the server.

    *)
  4. status : StrategyRecommendation.t option;
    (*

    The recommendation status of the strategy for the server.

    *)
}
Sourceval make : ?isPreferred:??? -> ?numberOfApplicationComponents:??? -> ?recommendation:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of Integer.t | `Structure of (string * [> `Enum of string | `Structure of (string * [> `Enum of string | `String of TranformationToolDescription.t ]) list ]) 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