Module Values.GetDiscoverySummaryResponseSource

Retrieves a short summary of discovered assets. This API operation takes no request parameters and is called as is at the command prompt as shown in the example.

Sourcetype nonrec t = {
  1. servers : Long.t option;
    (*

    The number of servers discovered.

    *)
  2. applications : Long.t option;
    (*

    The number of applications discovered.

    *)
  3. serversMappedToApplications : Long.t option;
    (*

    The number of servers mapped to applications.

    *)
  4. serversMappedtoTags : Long.t option;
    (*

    The number of servers mapped to tags.

    *)
  5. agentSummary : CustomerAgentInfo.t option;
    (*

    Details about discovered agents, including agent status and health.

    *)
  6. connectorSummary : CustomerConnectorInfo.t option;
    (*

    Details about discovered connectors, including connector status and health.

    *)
  7. meCollectorSummary : CustomerMeCollectorInfo.t option;
    (*

    Details about Migration Evaluator collectors, including collector status and health.

    *)
  8. agentlessCollectorSummary : CustomerAgentlessCollectorInfo.t option;
    (*

    Details about Agentless Collector collectors, including status.

    *)
}
Sourcetype nonrec error = [
  1. | `AuthorizationErrorException of AuthorizationErrorException.t
  2. | `HomeRegionNotSetException of HomeRegionNotSetException.t
  3. | `InvalidParameterException of InvalidParameterException.t
  4. | `InvalidParameterValueException of InvalidParameterValueException.t
  5. | `ServerInternalErrorException of ServerInternalErrorException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?servers:??? -> ?applications:??? -> ?serversMappedToApplications:??? -> ?serversMappedtoTags:??? -> ?agentSummary:??? -> ?connectorSummary:??? -> ?meCollectorSummary:??? -> ?agentlessCollectorSummary:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AuthorizationErrorException of AuthorizationErrorException.t | `HomeRegionNotSetException of HomeRegionNotSetException.t | `InvalidParameterException of InvalidParameterException.t | `InvalidParameterValueException of InvalidParameterValueException.t | `ServerInternalErrorException of ServerInternalErrorException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AuthorizationErrorException of AuthorizationErrorException.t | `HomeRegionNotSetException of HomeRegionNotSetException.t | `InvalidParameterException of InvalidParameterException.t | `InvalidParameterValueException of InvalidParameterValueException.t | `ServerInternalErrorException of ServerInternalErrorException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Long.t | `Structure of (string * [> `Integer of Integer.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