Module Values.AnalyzableServerSummarySource

Summary information about an analyzable server.

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

    The host name of the analyzable server.

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

    The ip address of the analyzable server.

    *)
  3. source : String_.t option;
    (*

    The data source of the analyzable server.

    *)
  4. vmId : String_.t option;
    (*

    The virtual machine id of the analyzable server.

    *)
}
Sourceval make : ?hostname:??? -> ?ipAddress:??? -> ?source:??? -> ?vmId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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