VPS_createNewFirewallV1
Set up new firewall configurations to enhance VPS security. Use this tool to define firewall rules and protect hosting infrastructure effectively.
Instructions
Create a new firewall.
Use this endpoint to set up new firewall configurations for VPS security.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | name parameter |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "name parameter",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
Implementation Reference
- types.d.ts:1465-1473 (schema)Schema definition for the VPS_createNewFirewallV1 tool in the APITools interface. It specifies a single input parameter 'name' of type string and a generic 'any' response type."VPS_createNewFirewallV1": { params: { /** * name parameter */ name: string; }; response: any; // Response structure will depend on the API };