Values.QuotaUtilizationInfoSourceInformation about a quota's utilization, including the quota code, service information, current usage, and applied limits.
type nonrec t = {quotaCode : QuotaCode.t option;The quota identifier.
*)serviceCode : ServiceCode.t option;The service identifier.
*)quotaName : QuotaName.t option;The quota name.
*)namespace : QuotaMetricNamespace.t option;The namespace of the metric used to track quota usage.
*)utilization : UtilizationPct.t option;The utilization percentage of the quota, calculated as (current usage / applied value) × 100. Values range from 0.0 to 100.0 or higher if usage exceeds the quota limit.
*)defaultValue : DefaultValue.t option;The default value of the quota.
*)appliedValue : AppliedValue.t option;The applied value of the quota, which may be higher than the default value if a quota increase has been requested and approved.
*)serviceName : ServiceName.t option;The service name.
*)adjustable : QuotaAdjustable.t option;Indicates whether the quota value can be increased.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of QuotaAdjustable.t
| `Double of UtilizationPct.t
| `String of QuotaCode.t ])
list ]