Module Values.ResourceBudgetEstimateSource

Describes the estimated cost or usage that a budget tracks.

Sourcetype nonrec t = {
  1. resourceName : ResourceName.t option;
    (*

    The resource name.

    *)
  2. resourceType : ResourceType.t option;
    (*

    The type of resource the budget will track.

    *)
  3. costEstimates : CostEstimates.t option;
    (*

    The cost estimate for the specified budget.

    *)
  4. startTime : IsoDate.t option;
    (*

    The estimate start time.

    *)
  5. endTime : IsoDate.t option;
    (*

    The estimate end time.

    *)
}
Sourceval make : ?resourceName:??? -> ?resourceType:??? -> ?costEstimates:??? -> ?startTime:??? -> ?endTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `List of [> `Structure of (string * [> `Double of Double.t | `Enum of string | `Structure of (string * [> `Timestamp of IsoDate.t ]) list ]) list ] list | `String of NonEmptyString.t ]) list ] list | `String of ResourceName.t | `Timestamp of IsoDate.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