Module Values_1.TrafficPatternSource

Defines the traffic pattern of the load test.

Sourcetype nonrec t = {
  1. trafficType : TrafficType.t option;
    (*

    Defines the traffic patterns. Choose either PHASES or STAIRS.

    *)
  2. phases : Phases.t option;
    (*

    Defines the phases traffic specification.

    *)
  3. stairs : Stairs.t option;
    (*

    Defines the stairs traffic pattern.

    *)
}
Sourceval make : ?trafficType:??? -> ?phases:??? -> ?stairs:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Integer of InitialNumberOfUsers.t ]) list ] list | `Structure of (string * [> `Integer of TrafficDurationInSeconds.t ]) list ]) 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