Module Values.HealthStatusSource

Provides information about the current operational state of a billing view resource, including its ability to access and update based on its associated billing view.

Sourcetype nonrec t = {
  1. status : HealthStatusValue.t option;
    (*

    The current status of the billing view resource.

    *)
  2. statusReason : HealthStatusReason.t option;
    (*

    The reason for the current status. BILLING_VIEW_NO_ACCESS: The billing view resource does not grant billing:GetBillingViewData permission to this account. BILLING_VIEW_UNHEALTHY: The billing view associated with the budget is unhealthy. FILTER_INVALID: The filter contains reference to an account you do not have access to. MULTI_YEAR_HISTORICAL_DATA_DISABLED: The budget is not being updated. Enable multi-year historical data in your Cost Management preferences.

    *)
  3. lastUpdatedTime : GenericTimestamp.t option;
}
Sourceval make : ?status:??? -> ?statusReason:??? -> ?lastUpdatedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Timestamp of GenericTimestamp.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