Module Values.IdentificationHintsSource

Identification hints.

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

    FQDN address identification hint.

    *)
  2. hostname : BoundedString.t option;
    (*

    Hostname identification hint.

    *)
  3. vmWareUuid : BoundedString.t option;
    (*

    vmWare UUID identification hint.

    *)
  4. awsInstanceID : EC2InstanceID.t option;
    (*

    AWS Instance ID identification hint.

    *)
  5. vmPath : BoundedString.t option;
    (*

    vCenter VM path identification hint.

    *)
}
Sourceval make : ?fqdn:??? -> ?hostname:??? -> ?vmWareUuid:??? -> ?awsInstanceID:??? -> ?vmPath:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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