functions/Remove-FMAddress.ps1
function Remove-FMAddress { <# .SYNOPSIS Removes a firewall address by name. .DESCRIPTION Removes a firewall address by name. .PARAMETER Connection The API connection object. .PARAMETER ADOM The (non-default) ADOM for the requests. .PARAMETER Name Name of the address to be removed. .EXAMPLE $testAddresses = Get-FMAddress -Connection $Connection -Filter "comment -like %API Test%" |select -first 3 Lock-FMAdom -Connection $connection try { $testAddresses | remove-fmaddress -connection $connection Publish-FMAdomChange -Connection $connection } catch { Write-PSFMessage -Level Warning "$_" } finally { UnLock-FMAdom -Connection $connection } Query addresses by comment and removes them .NOTES General notes #> [CmdletBinding(SupportsShouldProcess = $true, ConfirmImpact = 'Medium')] param ( [parameter(Mandatory=$false)] $Connection = (Get-FMLastConnection), [string]$ADOM, [bool]$EnableException = $true, [parameter(Mandatory = $true, ValueFromPipeline = $true, ValueFromPipelineByPropertyName = $true)] [string[]]$Name ) begin { $explicitADOM = Resolve-FMAdom -Connection $Connection -Adom $ADOM Write-PSFMessage "`$explicitADOM=$explicitADOM" if ($Commit) { Publish-FMAdomChange -Connection $Connection -Adom $explicitADOM -EnableException $EnableException } $apiCallParameter = @{ EnableException = $EnableException Connection = $Connection LoggingAction = "Remove-FMAddress" LoggingActionValues = $explicitADOM method = "delete" } $addressList = @() } process { $addressList += $Name #-replace '/', '\/' } end { # Removing potential Null values $addressList = $addressList | Where-Object { $_ } | ConvertTo-FMUrlPart foreach ($addrName in $addressList) { $apiCallParameter.Path = "/pm/config/adom/$explicitADOM/obj/firewall/address/$addrName" $apiCallParameter.LoggingActionValues = $addrName $result = Invoke-FMAPI @apiCallParameter } # # If EnableException an exception would have be thrown, otherwise the function returns true for success or false for failure # if (-not $EnableException) { # return ($null -ne $result) # } } } |