Files
Parseurs_config_firewall/src/modèles/firewall-device.yang
Chevallier 0fd88fa934 add project
2025-12-22 16:00:40 +01:00

35 lines
816 B
YANG

module firewall-device {
yang-version 1.1;
namespace "urn:custom:firewall-device";
prefix fwd;
organization "Custom Network Automation";
contact "Julie Chevallier <julie@example.com>";
description
"Simple device info model exposing firewall vendor type.";
revision "2025-10-21" {
description
"Initial version of the firewall device type module.";
reference
"Internal reference FW-DEV-001.";
}
container firewall-device {
description
"Container representing the firewall vendor and type.";
leaf type {
type enumeration {
enum palo-alto {
description "Palo Alto Networks firewall.";
}
enum fortinet {
description "Fortinet firewall.";
}
}
description "Firewall vendor type.";
}
}
}