getHostInfo
Retrieve configuration details for a specified SSH host using its alias or hostname, facilitating secure and informed interactions with remote systems.
Instructions
Returns all configuration details for an SSH host
Input Schema
Name | Required | Description | Default |
---|---|---|---|
hostAlias | Yes | Alias or hostname of the SSH host |
Input Schema (JSON Schema)
{
"properties": {
"hostAlias": {
"description": "Alias or hostname of the SSH host",
"type": "string"
}
},
"required": [
"hostAlias"
],
"type": "object"
}