Public/Get-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 42 43 44 45 46 47 48 49 50 51 52 53 |
Function Get-bConnectJob() { <# .Synopsis Get specified job or all jobs in given OrgUnit. .Parameter JobGuid Valid GUID of a job. .Parameter OrgUnitGuid Valid GUID of a Orgunit. .Parameter Username Valid Username. .Outputs Array of Job (see bConnect documentation for more details). #> Param ( [string]$JobGuid, [string]$OrgUnitGuid, [string]$Username, [switch]$Steps ) $_connectVersion = Get-bConnectVersion If($_connectVersion -ge "1.0") { If($JobGuid) { $_body = @{ Id = $JobGuid } } If($OrgUnitGuid) { $_body = @{ OrgUnit = $OrgUnitGuid } } If($Username) { $_body = @{ User = $Username } } If($Steps) { $_body += @{ Steps = $true } } return Invoke-bConnectGet -Controller "Jobs" -Version $_connectVersion -Data $_body } else { return $false } } |