Module Values.VirtualNodeConnectionPoolSource

An object that represents the type of virtual node connection pool. Only one protocol is used at a time and should be the same protocol as the one chosen under port mapping. If not present the default value for maxPendingRequests is 2147483647.

Sourcetype nonrec t = {
  1. grpc : VirtualNodeGrpcConnectionPool.t option;
    (*

    An object that represents a type of connection pool.

    *)
  2. http : VirtualNodeHttpConnectionPool.t option;
    (*

    An object that represents a type of connection pool.

    *)
  3. http2 : VirtualNodeHttp2ConnectionPool.t option;
    (*

    An object that represents a type of connection pool.

    *)
  4. tcp : VirtualNodeTcpConnectionPool.t option;
    (*

    An object that represents a type of connection pool.

    *)
}
Sourceval make : ?grpc:??? -> ?http:??? -> ?http2:??? -> ?tcp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Integer of MaxRequests.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