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
commit e72bb42e21
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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'),
)