Skip to main content

analyzable_servers

Creates, updates, deletes, gets or lists an analyzable_servers resource.

Overview

Nameanalyzable_servers
TypeResource
Idaws.migrationhubstrategy.analyzable_servers

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
hostnamestringThe host name of the analyzable server. (pattern: <code>.\S.</code>)
ip_addressstringThe ip address of the analyzable server. (pattern: <code>.\S.</code>)
sourcestringThe data source of the analyzable server. (pattern: <code>.\S.</code>)
vm_idstringThe virtual machine id of the analyzable server. (pattern: <code>.\S.</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_analyzable_serversselectregionRetrieves a list of all the servers fetched from customer vCenter using Strategy Recommendation Collector.

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 list of all the servers fetched from customer vCenter using Strategy Recommendation Collector.

SELECT
hostname,
ip_address,
source,
vm_id
FROM aws.migrationhubstrategy.analyzable_servers
WHERE region = '{{ region }}' -- required
;