Module Values.RuleGroupSourceStatefulRulesDetailsSource

A Suricata rule specification.

Sourcetype nonrec t = {
  1. action : NonEmptyString.t option;
    (*

    Defines what Network Firewall should do with the packets in a traffic flow when the flow matches the stateful rule criteria.

    *)
  2. header : RuleGroupSourceStatefulRulesHeaderDetails.t option;
    (*

    The stateful inspection criteria for the rule.

    *)
  3. ruleOptions : RuleGroupSourceStatefulRulesOptionsList.t option;
    (*

    Additional options for the rule.

    *)
}
Sourceval make : ?action:??? -> ?header:??? -> ?ruleOptions:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `String of NonEmptyString.t ] list | `String of NonEmptyString.t ]) list ] list | `String of NonEmptyString.t | `Structure of (string * [> `String of NonEmptyString.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