Module Values.DeviceProxySource

Represents the http/s proxy configuration that will be applied to a device during a run.

Sourcetype nonrec t = {
  1. host : DeviceProxyHost.t;
    (*

    Hostname or IPv4 address of the proxy.

    *)
  2. port : DeviceProxyPort.t;
    (*

    The port number on which the http/s proxy is listening.

    *)
}
Sourceval context_ : string
Sourceval make : host:DeviceProxyHost.t -> port:DeviceProxyPort.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of DeviceProxyPort.t | `String of DeviceProxyHost.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