Module Values.RuleGroupSourceStatelessRuleMatchAttributesSource

Criteria for the stateless rule.

Sourcetype nonrec t = {
  1. destinationPorts : RuleGroupSourceStatelessRuleMatchAttributesDestinationPortsList.t option;
    (*

    A list of port ranges to specify the destination ports to inspect for.

    *)
  2. destinations : RuleGroupSourceStatelessRuleMatchAttributesDestinationsList.t option;
    (*

    The destination IP addresses and address ranges to inspect for, in CIDR notation.

    *)
  3. protocols : RuleGroupSourceStatelessRuleMatchAttributesProtocolsList.t option;
    (*

    The protocols to inspect for.

    *)
  4. sourcePorts : RuleGroupSourceStatelessRuleMatchAttributesSourcePortsList.t option;
    (*

    A list of port ranges to specify the source ports to inspect for.

    *)
  5. sources : RuleGroupSourceStatelessRuleMatchAttributesSourcesList.t option;
    (*

    The source IP addresses and address ranges to inspect for, in CIDR notation.

    *)
  6. tcpFlags : RuleGroupSourceStatelessRuleMatchAttributesTcpFlagsList.t option;
    (*

    The TCP flags and masks to inspect for.

    *)
}
Sourceval make : ?destinationPorts:??? -> ?destinations:??? -> ?protocols:??? -> ?sourcePorts:??? -> ?sources:??? -> ?tcpFlags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Integer of Integer.t | `Structure of (string * [> `Integer of Integer.t | `List of [> `String of NonEmptyString.t ] list | `String of NonEmptyString.t ]) list ] 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