Complete the code to set the routing method to prioritize the endpoint with the lowest latency.
az network traffic-manager profile create --name MyProfile --resource-group MyResourceGroup --routing-method [1]The Performance routing method directs traffic to the endpoint with the lowest latency.
Complete the code to create a Traffic Manager profile that distributes traffic based on assigned weights.
az network traffic-manager profile create --name MyProfile --resource-group MyResourceGroup --routing-method [1]The Weighted routing method distributes traffic based on weights assigned to each endpoint.
Fix the error in the code to use the routing method that sends traffic to the endpoint with the highest priority.
az network traffic-manager profile create --name MyProfile --resource-group MyResourceGroup --routing-method [1]The Priority routing method sends all traffic to the endpoint with the highest priority (lowest number).
Fill both blanks to create a Traffic Manager profile using Geographic routing and specify the resource group.
az network traffic-manager profile create --name MyProfile --resource-group [1] --routing-method [2]
Use MyResourceGroup for the resource group and Geographic routing to route traffic based on user location.
Fill all three blanks to create a Traffic Manager profile with Multivalue routing, specify the resource group, and name the profile.
az network traffic-manager profile create --name [1] --resource-group [2] --routing-method [3]
Set the profile name to MyProfile, resource group to MyResourceGroup, and routing method to Multivalue which returns multiple healthy endpoints.