Module Values.IngressIpv6ExpressionSource

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

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

    The left hand side argument of an IPv6 condition expression.

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

    The matching operator for an IPv6 condition expression.

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

    The right hand side argument of an IPv6 condition expression.

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