Module Values.TargetNetworkUpdateSource

Updated configuration for the target network topology and addressing.

Sourcetype nonrec t = {
  1. topology : TargetNetworkTopology.t option;
    (*

    The updated network topology type.

    *)
  2. inboundCidr : Cidr.t option;
    (*

    The updated CIDR block for inbound traffic.

    *)
  3. outboundCidr : Cidr.t option;
    (*

    The updated CIDR block for outbound traffic.

    *)
  4. inspectionCidr : Cidr.t option;
    (*

    The updated CIDR block for inspection traffic.

    *)
}
Sourceval make : ?topology:??? -> ?inboundCidr:??? -> ?outboundCidr:??? -> ?inspectionCidr:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Cidr.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