Module Values_1.RecommendationJobResourceLimitSource

Specifies the maximum number of jobs that can run in parallel and the maximum number of jobs that can run.

Sourcetype nonrec t = {
  1. maxNumberOfTests : MaxNumberOfTests.t option;
    (*

    Defines the maximum number of load tests.

    *)
  2. maxParallelOfTests : MaxParallelOfTests.t option;
    (*

    Defines the maximum number of parallel load tests.

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