tcp_proxy_list
Retrieve and manage TCP proxy configurations for a service in a specific environment. Use this tool to audit endpoints, ensure external access control, and prepare for proxy setup.
Instructions
[API] List all TCP proxies for a service in a specific environment
⚡️ Best for: ✓ Viewing TCP proxy configurations ✓ Managing external access ✓ Auditing service endpoints
→ Prerequisites: service_list
→ Next steps: tcp_proxy_create
→ Related: domain_list, service_info
Input Schema
Name | Required | Description | Default |
---|---|---|---|
environmentId | Yes | ID of the environment containing the service | |
serviceId | Yes | ID of the service to list TCP proxies for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"environmentId": {
"description": "ID of the environment containing the service",
"type": "string"
},
"serviceId": {
"description": "ID of the service to list TCP proxies for",
"type": "string"
}
},
"required": [
"environmentId",
"serviceId"
],
"type": "object"
}