Public/Invoke-SfExecuteApex.ps1
<# .SYNOPSIS Execute anonoymous apex in the configured Salesforce org .DESCRIPTION Execute anonoymous apex in the configured Salesforce org .INPUTS None. You cannot pipe objects to Invoke-SfExecuteApex. .OUTPUTS None. Throws error if the apex either fails to compile or the result is not 'success' .PARAMETER Apex The anonymous apex to execute. .EXAMPLE PS> Invoke-SfExecuteApex "phecc.TriggerHandlers.setEnabled(false, new List<String> {'ObservationBD' });" .LINK Set-Config .NOTES Assumes config is initialized for org access. #> function Invoke-SfExecuteApex { [CmdletBinding()] [OutputType([System.Void])] param( [Parameter(Mandatory = $true, Position = 0, ValueFromPipeline)] [ValidateNotNullOrEmpty()] [String] $Apex ) begin { Write-Verbose "[$($MyInvocation.MyCommand.Name)] Function started" } end { Write-Verbose "[$($MyInvocation.MyCommand.Name)] Complete" } process { Write-Debug "[$($MyInvocation.MyCommand.Name)] PSBoundParameters: $($PSBoundParameters | Out-String)" $encodedURL = [System.Web.HttpUtility]::UrlEncode($Apex) $result = (Invoke-SfApi "/tooling/executeAnonymous/?anonymousBody=$($encodedURL)") if ($result.compiled -ne 'True') { throw "Apex compile failed: $($result.compileProblem)-$($result.exceptionMessage) line:$($result.line), column: $($result.column)" } if ($result.success -ne 'True') { throw "Apex execution failed: $($result.exceptionMessage)-$($result.exceptionMessage)" } } } |