Module Values.NetworkTrafficRuleSource

A rule that controls network traffic during penetration testing by allowing or denying traffic to specific URL patterns.

Sourcetype nonrec t = {
  1. effect_ : NetworkTrafficRuleEffect.t option;
    (*

    The effect of the rule. Valid values are ALLOW and DENY.

    *)
  2. pattern : String_.t option;
    (*

    The URL pattern to match for the rule.

    *)
  3. networkTrafficRuleType : NetworkTrafficRuleType.t option;
    (*

    The type of the network traffic rule. Currently, only URL is supported.

    *)
}
Sourceval make : ?effect_:??? -> ?pattern:??? -> ?networkTrafficRuleType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.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