Module Values_0.VCpuCountRangeSource

The minimum and maximum number of vCPUs.

Sourcetype nonrec t = {
  1. min : Integer.t option;
    (*

    The minimum number of vCPUs. If the value is 0, there is no minimum limit.

    *)
  2. max : Integer.t option;
    (*

    The maximum number of vCPUs. If this parameter is not specified, there is no maximum limit.

    *)
}
Sourceval make : ?min:??? -> ?max:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.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