check_provider_availability
Verify the operational status of specified cloud service providers like AWS, DigitalOcean, Vultr, or Alibaba to ensure their availability, returning detailed provider-specific information.
Instructions
检查特定云服务提供商的可用性
Args:
provider_name (str): 提供商名称 ('aws', 'digitalocean', 'vultr', 'alibaba')
Returns:
Dict: 提供商可用性信息
Input Schema
Name | Required | Description | Default |
---|---|---|---|
provider_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"provider_name": {
"title": "Provider Name",
"type": "string"
}
},
"required": [
"provider_name"
],
"title": "check_provider_availabilityArguments",
"type": "object"
}