ACI Intf Policy LLDP: Update module to use new URL Method (#28634)

pull/27817/head
Jacob McGill 7 years ago committed by Dag Wieers
parent 6109a6c093
commit fa6da960db

@ -89,6 +89,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', ['lldp_policy']],
['state', 'present', ['lldp_policy']],
],
) )
lldp_policy = module.params['lldp_policy'] lldp_policy = module.params['lldp_policy']
@ -98,23 +102,20 @@ def main():
state = module.params['state'] state = module.params['state']
aci = ACIModule(module) aci = ACIModule(module)
aci.construct_url(root_class='lldp_policy')
if lldp_policy is not None:
# Work with a specific object
path = 'api/mo/uni/infra/lldpIfP-%(lldp_policy)s.json' % module.params
elif state == 'query':
# Query all objects
path = 'api/node/class/lldpIfPol.json'
else:
module.fail_json(msg="Parameter 'lldp_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='lldpIfPol', class_config=dict(name=lldp_policy, descr=description, adminRxSt=receive_state, adminTxSt=transmit_state)) aci.payload(
aci_class='lldpIfPol',
class_config=dict(
name=lldp_policy,
descr=description,
adminRxSt=receive_state,
adminTxSt=transmit_state,
),
)
# 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='lldpIfPol') aci.get_diff(aci_class='lldpIfPol')

Loading…
Cancel
Save