Module Values.LicenseRecommendationOptionSource

Describes the recommendation options for licenses.

Sourcetype nonrec t = {
  1. rank : Rank.t option;
    (*

    The rank of the license recommendation option. The top recommendation option is ranked as 1.

    *)
  2. operatingSystem : OperatingSystem.t option;
    (*

    The operating system of a license recommendation option.

    *)
  3. licenseEdition : LicenseEdition.t option;
    (*

    The recommended edition of the license for the application that runs on the instance.

    *)
  4. licenseModel : LicenseModel.t option;
    (*

    The recommended license type associated with the instance.

    *)
  5. savingsOpportunity : SavingsOpportunity.t option;
}
Sourceval make : ?rank:??? -> ?operatingSystem:??? -> ?licenseEdition:??? -> ?licenseModel:??? -> ?savingsOpportunity:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Rank.t | `String of OperatingSystem.t | `Structure of (string * [> `Double of SavingsOpportunityPercentage.t | `Structure of (string * [> `Double of Value.t | `Enum of string ]) 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