Module Values.NetworkInterfaceSource

Network interface.

Sourcetype nonrec t = {
  1. macAddress : BoundedString.t option;
    (*

    Network interface Mac address.

    *)
  2. ips : IPsList.t option;
    (*

    Network interface IPs.

    *)
  3. isPrimary : Boolean.t option;
    (*

    Network interface primary IP.

    *)
}
Sourceval make : ?macAddress:??? -> ?ips:??? -> ?isPrimary:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of BoundedString.t ] list | `String of BoundedString.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