Skip to main content

discovery_summaries

Creates, updates, deletes, gets or lists a discovery_summaries resource.

Overview

Namediscovery_summaries
TypeResource
Idaws.discovery.discovery_summaries

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
agent_summaryobjectDetails about discovered agents, including agent status and health.
agentless_collector_summaryobjectDetails about Agentless Collector collectors, including status.
applicationsinteger (int64)The number of applications discovered.
connector_summaryobjectDetails about discovered connectors, including connector status and health.
me_collector_summaryobjectDetails about Migration Evaluator collectors, including collector status and health.
serversinteger (int64)The number of servers discovered.
servers_mapped_to_applicationsinteger (int64)The number of servers mapped to applications.
servers_mappedto_tagsinteger (int64)The number of servers mapped to tags.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_discovery_summaryselectregionRetrieves 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.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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.

SELECT
agent_summary,
agentless_collector_summary,
applications,
connector_summary,
me_collector_summary,
servers,
servers_mapped_to_applications,
servers_mappedto_tags
FROM aws.discovery.discovery_summaries
WHERE region = '{{ region }}' -- required
;