multi_move_clone_configuration
Move or clone multiple firewall configurations to new locations in Palo Alto Networks environments to manage security policies and system settings.
Instructions
Multi-Move or Multi-Clone the configuration of the Palo Alto firewall
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| config_paths | Yes | Paths to the configurations to move or clone | |
| new_location | Yes | New location for the configurations | |
| action | Yes | Action to perform |
Input Schema (JSON Schema)
{
"properties": {
"action": {
"description": "Action to perform",
"enum": [
"move",
"clone"
],
"type": "string"
},
"config_paths": {
"description": "Paths to the configurations to move or clone",
"items": {
"type": "string"
},
"type": "array"
},
"new_location": {
"description": "New location for the configurations",
"type": "string"
}
},
"required": [
"config_paths",
"new_location",
"action"
],
"type": "object"
}