Module Values.NetworkInfoSource

Information about the server's network for which the assessment was run.

Sourcetype nonrec t = {
  1. interfaceName : InterfaceName.t option;
    (*

    Information about the name of the interface of the server for which the assessment was run.

    *)
  2. ipAddress : IPAddress.t option;
    (*

    Information about the IP address of the server for which the assessment was run.

    *)
  3. macAddress : MacAddress.t option;
    (*

    Information about the MAC address of the server for which the assessment was run.

    *)
  4. netMask : NetMask.t option;
    (*

    Information about the subnet mask of the server for which the assessment was run.

    *)
}
Sourceval make : ?interfaceName:??? -> ?ipAddress:??? -> ?macAddress:??? -> ?netMask:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of InterfaceName.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