Public/Remove-bConnectJob.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
Function Remove-bConnectJob() { <# .Synopsis Remove specified job. .Parameter EndpointGuid Valid GUID of a job. .Outputs Bool #> [CmdletBinding(SupportsShouldProcess, ConfirmImpact = 'Medium')] [OutputType("System.Boolean")] Param ( [string]$JobGuid, [PSCustomObject]$Job ) $_connectVersion = Get-bConnectVersion If($_connectVersion -ge "1.0") { If(![string]::IsNullOrEmpty($JobGuid)) { $_body = @{ Id = $JobGuid } } elseif (![string]::IsNullOrEmpty($Job.Id)) { $_body = @{ Id = $Job.Id } } else { return $false } if($PSCmdlet.ShouldProcess($_body.Id, "Remove job and all associated data from the database.")){ return Invoke-bConnectDelete -Controller "Jobs" -Version $_connectVersion -Data $_body } else { return $false } } else { return $false } } |