mso_sta_epg_subnet: Manage EPG subnets in templates (#51278)

A new module to manage EPG subnets in MSO schema templates.
This commit is contained in:
Dag Wieers
2019-01-24 15:43:43 +01:00
committed by GitHub
parent 73ed1a8269
commit e72bb42e21
2 changed files with 264 additions and 1 deletions

View File

@@ -99,7 +99,7 @@ def mso_subnet_spec():
return dict(
ip=dict(type='str', required=True),
description=dict(type='str'),
scope=dict(type='str'),
scope=dict(type='str', choices=['private', 'public']),
shared=dict(type='bool'),
no_default_gateway=dict(type='bool'),
)