functions/Set-DrmmAlertUnmute.ps1
function Set-DrmmAlertUnmute { <# .SYNOPSIS Unmutes the alert identified by the given alert Uid. .DESCRIPTION Resume alert providing the alert Uid. .PARAMETER alertUid Provide alert Uid to unmute the alert. #> # Function Parameters Param ( [Parameter(Mandatory=$True)] $alertUid ) # Declare Variables $apiMethod = 'POST' # Unmute Alert New-ApiRequest -apiMethod $apiMethod -apiRequest "/v2/alert/$alertUid/unmute" } |