Functions/EventSecurity/Add-PASPTAExcludedTarget.ps1
# .ExternalHelp psPAS-help.xml Function Add-PASPTAExcludedTarget { [CmdletBinding(SupportsShouldProcess = $true)] param( [parameter( Mandatory = $true, ValueFromPipelinebyPropertyName = $true )] [string]$cidr ) BEGIN { Assert-VersionRequirement -SelfHosted Assert-VersionRequirement -RequiredVersion 14.0 }#begin PROCESS { #Create request URL $URI = "$($psPASSession.BaseURI)/api/pta/API/Administration/properties/CidrExclusionList" #Create body of request $Body = $PSBoundParameters | Get-PASParameter | ConvertTo-Json if ($PSCmdlet.ShouldProcess($cidr, 'Add PTA Excluded Monitored Target')) { #send request to web service Invoke-PASRestMethod -Uri $URI -Method PATCH -Body $Body } }#process END { }#end } |