ACI Module: Update modules to provide match criteria; allows more complex matching (#33756)

This commit is contained in:
Jacob McGill 2017-12-11 13:43:11 -05:00 committed by John R Barker
parent c2b4fd7f1e
commit c26a528b21
32 changed files with 69 additions and 69 deletions

View file

@ -130,13 +130,13 @@ def main():
root_class=dict(
aci_class='fvTenant',
aci_rn='tn-{}'.format(tenant),
filter_target='(fvTenant.name, "{}")'.format(tenant),
filter_target='eq(fvTenant.name, "{}")'.format(tenant),
module_object=tenant,
),
subclass_1=dict(
aci_class='vzBrCP',
aci_rn='brc-{}'.format(contract),
filter_target='(vzBrCP.name, "{}")'.format(contract),
filter_target='eq(vzBrCP.name, "{}")'.format(contract),
module_object=contract,
),
)