Module Values.IpAddressesSource

The IP addresses for a host.

Sourcetype nonrec t = {
  1. ipV4Addresses : IpV4Addresses.t option;
    (*

    The IpV4 address of the network.

    *)
  2. ipV6Addresses : IpV6Addresses.t option;
    (*

    The IpV6 address for the network and node component.

    *)
}
Sourceval make : ?ipV4Addresses:??? -> ?ipV6Addresses:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of IpV4Address.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