DP-300 • Practice Test 34
Free DP-300 practice test — 15 questions with explanations. Set 34. No signup required.
Refer to the exhibit. A Logic App is configured to pause an Azure SQL Database named AdventureWorks every Friday at 8 PM. However, the database is not pausing. What is the most likely reason?
Refer to the exhibit.
{
"name": "start-stop-database",
"type": "Microsoft.Logic/workflows",
"location": "eastus",
"properties": {
"definition": {
"$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#",
"actions": {
"Pause_Database": {
"type": "ApiConnection",
"inputs": {
"host": {
"connection": {
"name": "@parameters('$connections')['sql']['connectionId']"
}
},
"method": "post",
"path": "/databases/@{encodeURIComponent('AdventureWorks')}/pause",
"queries": {
"api-version": "2023-08-01-preview"
}
}
}
},
"triggers": {
"Recurrence": {
"recurrence": {
"frequency": "Week",
"interval": 1,
"schedule": {
"hours": [20],
"minutes": [0],
"weekDays": ["Friday"]
}
},
"type": "Recurrence"
}
}
}
}
}