Module Values.LicenseConversionContextSource

Information about a license type conversion task.

Sourcetype nonrec t = {
  1. usageOperation : UsageOperation.t option;
    (*

    The Usage operation value that corresponds to the license type you are converting your resource from. For more information about which platforms correspond to which usage operation values see Sample data: usage operation by platform

    *)
  2. productCodes : ProductCodeList.t option;
    (*

    Product codes referred to in the license conversion process.

    *)
}
Sourceval make : ?usageOperation:??? -> ?productCodes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of ProductCodeId.t ]) list ] list | `String of UsageOperation.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