Add first approximation of vxlan_tunnels
This commit is contained in:
		@@ -1,7 +1,14 @@
 | 
			
		||||
interfaces: map(include('interface'),key=str(matches='.*GigabitEthernet[0-9]+/[0-9]+/[0-9]+|BondEthernet[0-9]+'),required=False)
 | 
			
		||||
interfaces: map(include('interface'),key=str(matches='.*GigabitEthernet[0-9]+/[0-9]+/[0-9]+|BondEthernet[0-9]+|vxlan_tunnel[0-9]+'),required=False)
 | 
			
		||||
bondethernets: map(include('bondethernet'),key=str(matches='BondEthernet[0-9]+'),required=False)
 | 
			
		||||
loopbacks: map(include('loopback'),key=str(matches='loop[0-9]+'),required=False)
 | 
			
		||||
bridgedomains: map(include('bridgedomain'),key=str(matches='bd[0-9]+'),required=False)
 | 
			
		||||
vxlan_tunnels: map(include('vxlan'),key=str(matches='vxlan_tunnel[0-9]+'),required=False)
 | 
			
		||||
---
 | 
			
		||||
vxlan:
 | 
			
		||||
  description: str(exclude='\'"',required=False)
 | 
			
		||||
  local: ip()
 | 
			
		||||
  remote: ip()
 | 
			
		||||
  vni: int(min=1,max=16777215)
 | 
			
		||||
---
 | 
			
		||||
bridgedomain:
 | 
			
		||||
  description: str(exclude='\'"',required=False)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user