Cisco (300-435-ENAUTO) Exam Questions And Answers page 8
Refer to the exhibit. Cisco SD-WAN deployment must be troubleshooted using vManage APIs. A call to vEdge Hardware Health API returns the data in the exhibit (only a portion is shown). If this JSON is converted to a Python dictionary and assigned to the variable d , how the status is accessed that is indicated on line 16?
d[ data ][ statusList ][ status ]
d{ data }[0]{ statusList }[0]{ status }
d[ data ][0][ statusList ][0][ status ]
Cisco SD-WAN Programmability
When the Cisco DNA Center Intent API is used as part of an automation process, what prompts receiving a HTTP 206 status code on a call?
The client authentication credentials that are included with the request are missing or invalid
The client made a request for partial content matching a range header
The client request was successful, but there is no content associated with the request
The client made a request that has been received but not yet acted upon
Automate APIs and Protocols
Network Device Programmability
The automation engineer must replace device configuration using RESTCONF. How is this configured using the Python library Requests?
delete()
post()
put()
patch()
Automate APIs and Protocols
Network Device Programmability
How does Cisco DNA Center manage third-party devices?
Single Choice
What does Cisco DNA Center use to manage third-party devices?
multivendor SDK
templates
device packages
command runners
Automate APIs and Protocols
Network Device Programmability
Refer to the exhibit. A Python script is used to configure a Cisco IOS XE device. The script must be updated to print the IP addresses of all the loopback interfaces. Which statement should be added before the loop?
interfaces = response.json()[ ietf-interfaces:interfaces ]
interface = response.json()[ ietf-interfaces:interfaces ]
interface = response.json()[ ietf-interfaces:interfaces ][ interface ]
interfaces = response.json()[ ietf-interfaces:interfaces ][ interface ]
Network Programmability Foundation
Network Device Programmability
A programmer is creating a Meraki webhook Python script to send a message to Webex Teams. Which two elements should be configured to create this script? (Choose two.)
gRPC credentials
Webex Teams access token
XML formatted request
user authentication count
webhook server secret
Automate APIs and Protocols
Cisco Meraki Programmability
Which two features are characteristics of software-defined networks when compared to traditional infrastructure? (Choose two.)
configured box-by-box
changed manually
use overlay networks
designed to change
require software development experience to manage
Network Programmability Foundation
Cisco SD-WAN Programmability
Which URI removes an administrator from a Meraki network using an API call?
DELETE https://api/meraki.com/api/v0/organizations//admins/
DELETE https://api/meraki.com/api/v0/admins/
PUT https://api/meraki.com/api/v0/organizations//admins/?delete=
DELETE https://api/meraki.com/api/v0/organizations//admins/
Automate APIs and Protocols
Cisco Meraki Programmability
Refer to the exhibit. A Python script has been created that calls the Cisco SD-WAN vManage Device Inventory API to get the list of vEdges. The JSON data that returns to a Python dictionary has been converted and assigned to a variable named d . A portion of the JSON is shown in the exhibit. Which code will complete the expression hostname= to access the hostname?
d[ data ][0][ host-name ]
d[data][0][host-name]
d( data )[0]( host-name )
d[ host-name ][ data ]{ 0 }
Cisco SD-WAN Programmability
FILL BLANK
Fill in the blank to complete the statement.
___________________ is a solution for automating the configuration of a device when it is first powered on, using DHCP and TFTP.
Fill in the blank to complete the statement.
___________________ is a solution for automating the configuration of a device when it is first powered on, using DHCP and TFTP.
Automate APIs and Protocols
Network Device Programmability
Comments