Module Values.UpdateFarmRequestSource

Updates a farm.

Sourcetype nonrec t = {
  1. farmId : FarmId.t;
    (*

    The farm ID to update.

    *)
  2. displayName : ResourceName.t option;
    (*

    The display name of the farm to update. This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.

    *)
  3. description : Description.t option;
    (*

    The description of the farm to update. This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.

    *)
  4. costScaleFactor : CostScaleFactor.t option;
    (*

    A multiplier applied to the farm's calculated costs for usage data and budget tracking. A value less than 1 represents a discount, a value greater than 1 represents a premium, and a value of 1 represents no adjustment.

    *)
}
Sourceval context_ : string
Sourceval make : ?displayName:??? -> ?description:??? -> ?costScaleFactor:??? -> farmId:FarmId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Float of CostScaleFactor.t | `String of FarmId.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