< Back

Remove-AzureRmActivityLogAlert

Tue Jan 29, 2019 9:49 pm

NAME Remove-AzureRmActivityLogAlert



SYNOPSIS

Removes an activity log alert.





SYNTAX

Remove-AzureRmActivityLogAlert [-DefaultProfile <IAzureContextContainer>] -InputObject <PSActivityLogAlertResource> [-Confirm] [-WhatIf]

[<CommonParameters>]



Remove-AzureRmActivityLogAlert [-DefaultProfile <IAzureContextContainer>] -Name <String> -ResourceGroupName <String> [-Confirm] [-WhatIf]

[<CommonParameters>]



Remove-AzureRmActivityLogAlert [-DefaultProfile <IAzureContextContainer>] -ResourceId <String> [-Confirm] [-WhatIf] [<CommonParameters>]





DESCRIPTION

The Remove-AzureRmActivityLogAlert cmdlet removes an activity log alert. This cmdlet implements the ShouldProcess pattern, i.e. it might request

confirmation from the user before actually patching the resource.



This cmdlet implements the ShouldProcess pattern, i.e. it might request confirmation from the user before actually creating, modifying, or

removing the resource.





PARAMETERS

-DefaultProfile <IAzureContextContainer>

The credentials, account, tenant, and subscription used for communication with azure



Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-InputObject <PSActivityLogAlertResource>

Sets the InputObject tags property of the call to extract the required name, and resource group name properties.



Required? true

Position? named

Default value None

Accept pipeline input? True (ByValue)

Accept wildcard characters? false



-Name <String>

The name of the activity log alert.



Required? true

Position? named

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-ResourceGroupName <String>

The name of the resource group where the alert resource exists.



Required? true

Position? named

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-ResourceId <String>

Sets the ResourceId tags property of the call to extract the required name, resource group name properties.



Required? true

Position? named

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-Confirm [<SwitchParameter>]

Prompts you for confirmation before running the cmdlet.



Required? false

Position? named

Default value False

Accept pipeline input? False

Accept wildcard characters? false



-WhatIf [<SwitchParameter>]

Shows what would happen if the cmdlet runs. The cmdlet is not run.



Required? false

Position? named

Default value False

Accept pipeline input? False

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).



INPUTS

None

This cmdlet does not accept any input.





OUTPUTS

Microsoft.Azure.AzureOperationResponse







NOTES









Example 1: Remove an activity log alert



PS C:\\>Remove-AzureRmActivityLogAlert -ResourceGroup "Default-Web-CentralUS" -Name "myalert"

RequestId StatusCode

--------- ----------

2c6c159b-0e73-4a01-a67b-c32c1a0008a3 OK



Removes an activity log alert using name and resource group name as inputs.





Example 2: Remove an activity log alert using a PSActivityLogAlertResource as input



PS C:\\>Get-AzureRmActivityLogAlert -ResourceGroup "Default-activityLogAlerts" -Name "alert1" | Remove-AzureRmActivityLogAlert

RequestId StatusCode

--------- ----------

5c371547-80b0-4185-9b95-700b129de9d4 OK



Removes an activity log alert using a PSActivityLogAlertResource as input.





Example 3: Remove the ActivityLogAlert using the ResourceId parameter



PS C:\\>Find-AzureRmResource -ResourceGroupEquals "myResourceGroup" -ResourceNameEquals "myLogAlert" | Remove-AzureRmActivityLogAlert



This command removes the ActivityLogAlert using the ResourceId parameter from the pipe.







RELATED LINKS

Online Version: https://docs.microsoft.com/en-us/powers ... tylogalert

Enable-AzureRmActivityLogAlert

Disable-AzureRmActivityLogAlert

Set-AzureRmActivityLogAlert

Get-AzureRmActivityLogAlert

New-AzureRmActionGroup

New-AzureRmActivityLogAlertCondition