get_instance_info
Retrieve instance details from cloud service providers using a public IP address. Identify provider and access instance information without manual configuration.
Instructions
根据IP地址自动检测云服务提供商并获取实例信息
Args:
ip_address (str): 公网IP地址
provider (str, optional): 明确指定的云服务提供商 ('aws', 'digitalocean', 'vultr', 'alibaba')
Returns:
Dict: 实例信息,包含提供商信息和实例详情
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ip_address | Yes | ||
provider | No |
Input Schema (JSON Schema)
{
"properties": {
"ip_address": {
"title": "Ip Address",
"type": "string"
},
"provider": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Provider"
}
},
"required": [
"ip_address"
],
"title": "get_instance_infoArguments",
"type": "object"
}