delete_lab_network
Permanently removes a specified network from a lab in EVE-NG, terminating all its connections. Requires lab path and network ID. This action is irreversible.
Instructions
Delete a network from a lab.
This tool permanently removes a network from the lab. All connections to this network will be lost. This action cannot be undone.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
arguments | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"DeleteNetworkArgs": {
"description": "Arguments for delete_network tool.",
"properties": {
"lab_path": {
"description": "Full path to the lab (e.g., /lab_name.unl)",
"title": "Lab Path",
"type": "string"
},
"network_id": {
"description": "Network ID to delete",
"title": "Network Id",
"type": "string"
}
},
"required": [
"lab_path",
"network_id"
],
"title": "DeleteNetworkArgs",
"type": "object"
}
},
"properties": {
"arguments": {
"$ref": "#/$defs/DeleteNetworkArgs"
}
},
"required": [
"arguments"
],
"title": "delete_lab_networkArguments",
"type": "object"
}