An Azure analytics service that brings together data integration, enterprise data warehousing, and big data analytics. Previously known as Azure SQL Data Warehouse.
Hello @Follow,
Welcome to the MS Q&A platform.
The product group has confirmed that this is a bug currently being fixed with priority.
As a workaround, you may use REST API.
Here is the REST API code for your reference:
# Get token for data plane
$token = Get-AzAccessToken -ResourceUrl https://dev.azuresynapse.net
$authHeader = @{
'Content-Type' = 'application/octet-stream'
'Authorization' = 'Bearer ' + $token.Token
}
$workspaceName = "<your-worksapce-name>"
$triggerName = "<your-trigger-name>"
# start trigger
Invoke-WebRequest -Method POST -Uri "https://${workspaceName}.dev.azuresynapse.net/triggers/${triggerName}/stop?api-version=2020-12-01" -Headers $authHeader
I hope this helps. Please let us know if you have any further questions.