Module Values.IngressIpv4ExpressionSource

The union type representing the allowed types for the left hand side of an IP condition.

Sourcetype nonrec t = {
  1. evaluate : IngressIpToEvaluate.t;
    (*

    The left hand side argument of an IP condition expression.

    *)
  2. operator : IngressIpOperator.t;
    (*

    The matching operator for an IP condition expression.

    *)
  3. values : Ipv4Cidrs.t;
    (*

    The right hand side argument of an IP condition expression.

    *)
}
Sourceval context_ : string
Sourceval make : evaluate:IngressIpToEvaluate.t -> operator:IngressIpOperator.t -> values:Ipv4Cidrs.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of Ipv4Cidr.t ] list | `Structure of (string * [> `Enum of string ]) 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