Module Values.QuotaShareCapacityUtilizationSource

The capacity utilization for a specific quota share, including the quota share name and its current usage.

Sourcetype nonrec t = {
  1. quotaShareName : String_.t option;
    (*

    The name of the quota share.

    *)
  2. capacityUsage : QuotaShareCapacityUsageList.t option;
    (*

    The capacity usage information for this quota share, including the units of compute capacity and quantity being used.

    *)
}
Sourceval make : ?quotaShareName:??? -> ?capacityUsage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Double of Double.t | `String of String_.t ]) list ] list | `String of String_.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