Module Values.ConsumedLicenseSummarySource

Details about license consumption.

Sourcetype nonrec t = {
  1. resourceType : ResourceType.t option;
    (*

    Resource type of the resource consuming a license.

    *)
  2. consumedLicenses : BoxLong.t option;
    (*

    Number of licenses consumed by the resource.

    *)
}
Sourceval make : ?resourceType:??? -> ?consumedLicenses:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of BoxLong.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