37 lines
555 B
Python
37 lines
555 B
Python
"""
|
|
YANG module for Fabric Orchestrator.
|
|
|
|
This module provides YANG path constants and utilities for
|
|
managing Arista EVPN-VXLAN fabrics via gNMI.
|
|
"""
|
|
|
|
from .paths import (
|
|
Interfaces,
|
|
Loopbacks,
|
|
VLANs,
|
|
BGP,
|
|
AfiSafi,
|
|
VXLAN,
|
|
MLAG,
|
|
EVPN,
|
|
PortChannel,
|
|
System,
|
|
SubscriptionPath,
|
|
FabricSubscriptions,
|
|
)
|
|
|
|
__all__ = [
|
|
"Interfaces",
|
|
"Loopbacks",
|
|
"VLANs",
|
|
"BGP",
|
|
"AfiSafi",
|
|
"VXLAN",
|
|
"MLAG",
|
|
"EVPN",
|
|
"PortChannel",
|
|
"System",
|
|
"SubscriptionPath",
|
|
"FabricSubscriptions",
|
|
]
|