Public/Stop-bConnectJobInstance.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 |
Function Stop-bConnectJobInstance() { <# .Synopsis Stop the specified jobinstance. .Parameter JobInstanceGuid Valid GUID of a jobinstance. .Outputs Bool #> [CmdletBinding(SupportsShouldProcess, ConfirmImpact = 'Medium')] [OutputType("System.Boolean")] Param ( [string]$JobInstanceGuid ) $_connectVersion = Get-bConnectVersion If($_connectVersion -ge "1.0") { $_body = @{ Id = $JobInstanceGuid; Cmd = "stop" } if($PSCmdlet.ShouldProcess($_body.Id, "Stop job instance.")){ return Invoke-bConnectGet -Controller "JobInstances" -Version $_connectVersion -Data $_body } else { return $false } } else { return $false } } |