Module Values.VcenterClientSource

vCenter client.

Sourcetype nonrec t = {
  1. vcenterClientID : VcenterClientID.t option;
    (*

    ID of vCenter client.

    *)
  2. arn : ARN.t option;
    (*

    Arn of vCenter client.

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

    Hostname of vCenter client .

    *)
  4. vcenterUUID : BoundedString.t option;
    (*

    Vcenter UUID of vCenter client.

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

    Datacenter name of vCenter client.

    *)
  6. lastSeenDatetime : ISO8601DatetimeString.t option;
    (*

    Last seen time of vCenter client.

    *)
  7. sourceServerTags : TagsMap.t option;
    (*

    Tags for Source Server of vCenter client.

    *)
  8. tags : TagsMap.t option;
    (*

    Tags for vCenter client.

    *)
}
Sourceval make : ?vcenterClientID:??? -> ?arn:??? -> ?hostname:??? -> ?vcenterUUID:??? -> ?datacenterName:??? -> ?lastSeenDatetime:??? -> ?sourceServerTags:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of VcenterClientID.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