Module Values.CustomerMeCollectorInfoSource

The inventory data for installed Migration Evaluator collectors.

Sourcetype nonrec t = {
  1. activeMeCollectors : Integer.t option;
    (*

    The number of active Migration Evaluator collectors.

    *)
  2. healthyMeCollectors : Integer.t option;
    (*

    The number of healthy Migration Evaluator collectors.

    *)
  3. denyListedMeCollectors : Integer.t option;
    (*

    The number of deny-listed Migration Evaluator collectors.

    *)
  4. shutdownMeCollectors : Integer.t option;
    (*

    The number of Migration Evaluator collectors with SHUTDOWN status.

    *)
  5. unhealthyMeCollectors : Integer.t option;
    (*

    The number of unhealthy Migration Evaluator collectors.

    *)
  6. totalMeCollectors : Integer.t option;
    (*

    The total number of Migration Evaluator collectors.

    *)
  7. unknownMeCollectors : Integer.t option;
    (*

    The number of unknown Migration Evaluator collectors.

    *)
}
Sourceval make : ?activeMeCollectors:??? -> ?healthyMeCollectors:??? -> ?denyListedMeCollectors:??? -> ?shutdownMeCollectors:??? -> ?unhealthyMeCollectors:??? -> ?totalMeCollectors:??? -> ?unknownMeCollectors:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.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