While designing an automated compliance-checking system for a data center running both standalone NX-OS and ACI, an engineer wants a single Python framework that can compare
"desired configuration" (from a Git-stored source of truth) against "actual configuration" (queried live) and generate a structured drift report across both platform types. Which architectural approach is most appropriate?
Which two HTTP methods are supported by the Cisco Nexus REST API? (Choose two )
Using the NX-API CLI JSON-RPC interface, which two Python data structure and requests call create an SVI? (Choose two.)
Which iteration creates three EPGs in Cisco ACI using an Ansible task? Some required aci_epg task attributes have been omitted for brevity.
The following Python snippet attempts to bulk-create multiple EPGs via the ACI APIC REST API, submitting one EPG object per POST request. After running, only some EPGs were actually created, with no obvious errors surfaced. What is the most likely cause of this "silent partial failure"?
python
for epg in epg_list:
payload = build_epg_payload(epg)
resp = requests.post(url, json=payload, cookies=cookies, verify=False)
# status code and response body are never checked
Which of the following best describes the typical Kafka-based streaming telemetry integration architecture for Cisco Nexus Dashboard / ACI?