DRAG DROP
Drag and drop the correct code snippets into the Python code to create a new application profile "WebApp" using the ACI REST API. Not all options are used.
Select and Place:
DRAG DROP
After a Cisco Nexus switch interface is enabled and in the up state, an engineer must automate the configuration of the interface descriptions using the EEM Python Module.
Drag and drop the steps the engineer must take from the left into the correct order on the right.
Select and Place:
Which Python code creates a VRF in an ACI tenant using the Cobra SDK?
A. Vrf(fvTenant(uniMo, 'CustA'), 'CustA_VRF')
B. Ctx(Tenant(uniMo, 'CustA'), 'CustA_VRF')
C. Vrf(Tenant(uniMo, 'CustA'), 'CustA_VRF')
D. Ctx(fvTenant(uniMo, 'CustA'), 'CustA_VRF')
Refer to the exhibit.
Which two actions does this Python code perform with the Cisco ACI? (Choose two.)
A. It creates a subnet "DevNet_Subnet" inside VRF "DevNet_VRF" located in ACI tenant "DevNet_Tenant" and sets the scope to "private".
B. It creates a subnet "DevNet_Subnet" inside AppProfile "DevNet_App" located in ACI tenant "DevNet_Tenant" and sets the network address to "10.10.10.1/24".
C. It creates an EPG "DevNet_EPG" inside AppProfile "DevNet_App" located in ACI tenant "DevNet_Tenant" and link the EPG with BridgeDomain "DevNet_BD".
D. It creates a subnet "DevNet_Subnet" inside VRF "DevNet_VRF" located in ACI tenant "DevNet_Tenant" and sets the network address to "10.10.10.1/24".
E. It creates an EPG "DevNet_EPG" inside VRF "DevNet_VRF" located in ACI tenant "DevNet_Tenant" and link the EPG with BridgeDomain "DevNet_BD".
What is a feature of model-driven telemetry?
A. randomizes the data out of the network
B. continuously streams data out of the network
C. randomizes the data coming to the network
D. continuously pulls data out of the network
What are two capabilities of the DCNM REST API? (Choose two.)
A. uses the dcnm-token header for requests authentication after initial basic authentication
B. uses basic authentication without encoding for username and password
C. supports HTTP until release 11.0(1)
D. uses bearer key authorization
E. is separated into Classic LAN, LAN Fabric, Media Controller, and SAN Management categories
Which Cisco UCS PowerTool commands initiate a Cisco UCS Manager connection?
A. Option A
B. Option B
C. Option C
D. Option D
Refer to the exhibit.
Which change allows the code to configure VLAN 10 in the Cisco UCS?
A. Lines 8 and 9 should have a line continuation \ at the end.
B. Line 13 should include "handle.commit()".
C. Line 4 should include transport 443 option.
D. Line 3 should add an import for query_dn.
A server profile with the string "WEST15" in its name must have the string "WEST15" changed to "LXT14". For example, server profile "VMHOST-WEST15-01" would need to be changed to "VMHOST-LXT14-01".
Using the Cisco Intersight REST API in a Python script, which two GET API requests are used to retrieve just the server profile with the string "WEST15" in the name and the correct body for the API request to update the name? Assume the variable "sp_name" contains the name of the retrieved server profile. (Choose two.)
A. GET https://intersight.com/api/v1/server/Profiles?$select=Nameand$filter=contains(Name, 'WEST15')
B. GET https://intersight.com/api/v1/server/Profiles?$select=Nameand$filter=Name in('WEST15')
C. BODY = { "Name": sp_name.format('WEST15', 'LXT14') }
D. GET https://intersight.com/api/v1/server/Profiles?$select=Nameand$filter=startswith(Name, 'WEST15')
E. BODY = { "Name": sp_name.replace('WEST15','LXT14') }
Which two network protocols does Cisco NX-OS iPXE support? (Choose two.)
A. IPv6
B. SFTP
C. SSH
D. IPv4
E. UNFS