Module Values.AppSource

An individual Firewall Manager application.

Sourcetype nonrec t = {
  1. appName : ResourceName.t;
    (*

    The application's name.

    *)
  2. protocol : Protocol.t;
    (*

    The IP protocol name or number. The name can be one of tcp, udp, or icmp. For information on possible numbers, see Protocol Numbers.

    *)
  3. port : IPPortNumber.t;
    (*

    The application's port number, for example 80.

    *)
}
Sourceval context_ : string
Sourceval make : appName:ResourceName.t -> protocol:Protocol.t -> port:IPPortNumber.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of IPPortNumber.t | `String of ResourceName.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