AZ-400 • Practice Exam 58
Free AZ-400 practice exam — 20 questions with explanations. Set 58. No signup required.
You are configuring a branch policy for the main branch using the Azure DevOps REST API. The JSON above is the policy configuration. A developer pushes a new commit to an existing pull request. What happens to the existing approvals?
Refer to the exhibit.
```json
{
"policies": [
{
"policy": {
"name": "Require Pull Request Review",
"isEnabled": true,
"blocking": true,
"settings": {
"minimumApproverCount": 2,
"creatorVoteCounts": false,
"allowDownvotes": true,
"resetOnPush": false
}
}
}
]
}
```