MigrationHubStrategyRecommendations.Paginator.
ListCollectors
¶paginator = client.get_paginator('list_collectors')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from MigrationHubStrategyRecommendations.Client.list_collectors()
.
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
A dictionary that provides parameters to control pagination.
The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken
will be provided in the output that you can use to resume pagination.
The size of each page.
A token to specify where to start paginating. This is the NextToken
from a previous response.
{
'Collectors': [
{
'collectorHealth': 'COLLECTOR_HEALTHY'|'COLLECTOR_UNHEALTHY',
'collectorId': 'string',
'collectorVersion': 'string',
'configurationSummary': {
'ipAddressBasedRemoteInfoList': [
{
'authType': 'NTLM'|'SSH'|'CERT',
'ipAddressConfigurationTimeStamp': 'string',
'osType': 'LINUX'|'WINDOWS'
},
],
'pipelineInfoList': [
{
'pipelineConfigurationTimeStamp': 'string',
'pipelineType': 'AZURE_DEVOPS'
},
],
'remoteSourceCodeAnalysisServerInfo': {
'remoteSourceCodeAnalysisServerConfigurationTimestamp': 'string'
},
'vcenterBasedRemoteInfoList': [
{
'osType': 'LINUX'|'WINDOWS',
'vcenterConfigurationTimeStamp': 'string'
},
],
'versionControlInfoList': [
{
'versionControlConfigurationTimeStamp': 'string',
'versionControlType': 'GITHUB'|'GITHUB_ENTERPRISE'|'AZURE_DEVOPS_GIT'
},
]
},
'hostName': 'string',
'ipAddress': 'string',
'lastActivityTimeStamp': 'string',
'registeredTimeStamp': 'string'
},
],
'NextToken': 'string'
}
Response Structure
The list of all the installed collectors.
Process data collector that runs in the environment that you specify.
Indicates the health of a collector.
The ID of the collector.
Current version of the collector that is running in the environment that you specify.
Summary of the collector configuration.
IP address based configurations.
IP address based configurations.
The type of authorization.
The time stamp of the configuration.
The type of the operating system.
The list of pipeline info configurations.
Detailed information of the pipeline.
The time when the pipeline info was configured.
The type of pipeline.
Info about the remote server source code configuration.
The time when the remote source code server was configured.
The list of vCenter configurations.
Details about the server in vCenter.
The type of the operating system.
The time when the remote server based on vCenter was last configured.
The list of the version control configurations.
Details about the version control configuration.
The time when the version control system was last configured.
The type of version control.
Hostname of the server that is hosting the collector.
IP address of the server that is hosting the collector.
Time when the collector last pinged the service.
Time when the collector registered with the service.
A token to resume pagination.