ACI Intf Policy L2: Update module to use new URL Method (#28633)

pull/27817/head
Jacob McGill 7 years ago committed by Dag Wieers
parent 25d1ef3493
commit f5f2a2fac2

@ -35,6 +35,16 @@ options:
description: description:
- The description of the Layer 2 interface policy. - The description of the Layer 2 interface policy.
aliases: [ descr ] aliases: [ descr ]
qinq:
description:
- Determines if QinQ is disabled or if the port should be considered a core or edge port.
choices: [ core, disabled, edge ]
default: disabled
vepa:
description:
- Determines if Virtual Ethernet Port Aggregator is disabled or enabled.
choices: [ disabled, enabled ]
default: disabled
vlan_scope: vlan_scope:
description: description:
- The scope of the VLAN. - The scope of the VLAN.
@ -67,7 +77,7 @@ from ansible.module_utils.aci import ACIModule, aci_argument_spec
from ansible.module_utils.basic import AnsibleModule from ansible.module_utils.basic import AnsibleModule
# Mapping dicts are used to normalize the proposed data to what the APIC expects, which will keep diffs accurate # Mapping dicts are used to normalize the proposed data to what the APIC expects, which will keep diffs accurate
QINQ_MAPPING = dict(core_port='corePort', disabled='disabled', edge_port='edgePort') QINQ_MAPPING = dict(core='corePort', disabled='disabled', edge='edgePort')
def main(): def main():
@ -76,7 +86,7 @@ def main():
l2_policy=dict(type='str', required=False, aliases=['name']), # Not required for querying all policies l2_policy=dict(type='str', required=False, aliases=['name']), # Not required for querying all policies
description=dict(type='str', aliases=['descr']), description=dict(type='str', aliases=['descr']),
vlan_scope=dict(type='str', choices=['global', 'portlocal']), # No default provided on purpose vlan_scope=dict(type='str', choices=['global', 'portlocal']), # No default provided on purpose
qinq=dict(type='str', choices=['core_port', 'disabled', 'edge_port']), qinq=dict(type='str', choices=['core', 'disabled', 'edge']),
vepa=dict(type='str', choices=['disabled', 'enabled']), vepa=dict(type='str', choices=['disabled', 'enabled']),
state=dict(type='str', default='present', choices=['absent', 'present', 'query']), state=dict(type='str', default='present', choices=['absent', 'present', 'query']),
method=dict(type='str', choices=['delete', 'get', 'post'], aliases=['action'], removed_in_version='2.6'), # Deprecated starting from v2.6 method=dict(type='str', choices=['delete', 'get', 'post'], aliases=['action'], removed_in_version='2.6'), # Deprecated starting from v2.6
@ -85,6 +95,10 @@ def main():
module = AnsibleModule( module = AnsibleModule(
argument_spec=argument_spec, argument_spec=argument_spec,
supports_check_mode=True, supports_check_mode=True,
required_if=[
['state', 'absent', ['l2_policy']],
['state', 'present', ['l2_policy']],
],
) )
l2_policy = module.params['l2_policy'] l2_policy = module.params['l2_policy']
@ -92,28 +106,25 @@ def main():
qinq = module.params['qinq'] qinq = module.params['qinq']
if qinq is not None: if qinq is not None:
qinq = QINQ_MAPPING[qinq] qinq = QINQ_MAPPING[qinq]
vepa = module.param['vepa'] vepa = module.params['vepa']
description = module.params['description'] description = module.params['description']
state = module.params['state'] state = module.params['state']
aci = ACIModule(module) aci = ACIModule(module)
aci.construct_url(root_class='l2_policy')
if l2_policy is not None:
# Work with a specific object
path = 'api/mo/uni/infra/l2IfP-%(l2_policy)s.json' % module.params
elif state == 'query':
# Query all objects
path = 'api/class/l2IfPol.json'
else:
module.fail_json(msg="Parameter 'l2_policy' is required for state 'absent' or 'present'")
aci.result['url'] = '%(protocol)s://%(hostname)s/' % aci.params + path
aci.get_existing() aci.get_existing()
if state == 'present': if state == 'present':
# Filter out module parameters with null values # Filter out module parameters with null values
aci.payload(aci_class='l2IfPol', class_config=dict(name=l2_policy, descr=description, vlanScope=vlan_scope, qinq=qinq, vepa=vepa)) aci.payload(
aci_class='l2IfPol',
class_config=dict(
name=l2_policy,
descr=description,
vlanScope=vlan_scope,
qinq=qinq, vepa=vepa,
),
)
# Generate config diff which will be used as POST request body # Generate config diff which will be used as POST request body
aci.get_diff(aci_class='l2IfPol') aci.get_diff(aci_class='l2IfPol')

Loading…
Cancel
Save