300-435 Question 213
Select 2You are tasked with automating the configuration of a Cisco SD-WAN environment to apply a specific QoS policy to multiple branch offices. Using the vManage REST API, which HTTP methods and endpoints would you use to achieve this task?
- A
POST /policy/vsmart
- B
GET /template/device
- C
PUT /policy/vsmart
- D
DELETE /policy/vsmart
- E
POST /template/policy/qos
Show answer and explanation
Correct answers: A, C
Explanation
To automate the application of QoS policies in a Cisco SD-WAN environment using the vManage REST API, you must use the POST /policy/vsmart endpoint to create a new policy and the PUT /policy/vsmart endpoint to update an existing policy. These endpoints enable you to define or modify QoS configurations centrally on the vSmart controller. Other endpoints like GET /template/device and POST /template/policy/qos are either unrelated or invalid for this purpose.
- A. Correct.
Correct. The POST /policy/vsmart endpoint is used to create a new policy in the vSmart controller, which can include QoS policies.
- B. Incorrect.
Incorrect. GET /template/device is used to retrieve device templates, not to apply or configure QoS policies.
- C. Correct.
Correct. The PUT /policy/vsmart endpoint is used to update an existing QoS policy in the vSmart controller.
- D. Incorrect.
Incorrect. DELETE /policy/vsmart is used to remove an existing policy, not apply or configure it.
- E. Incorrect.
Incorrect. POST /template/policy/qos is not a valid vManage API endpoint for configuring QoS policies.