Module Values.SystemInfoSource

Information about the server that hosts application components.

Sourcetype nonrec t = {
  1. cpuArchitecture : String_.t option;
    (*

    CPU architecture type for the server.

    *)
  2. fileSystemType : String_.t option;
    (*

    File system type for the server.

    *)
  3. networkInfoList : NetworkInfoList.t option;
    (*

    Networking information related to a server.

    *)
  4. osInfo : OSInfo.t option;
    (*

    Operating system corresponding to a server.

    *)
}
Sourceval make : ?cpuArchitecture:??? -> ?fileSystemType:??? -> ?networkInfoList:??? -> ?osInfo:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of InterfaceName.t ]) list ] list | `String of String_.t | `Structure of (string * [> `Enum of string | `String of OSVersion.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