public/api-v1/long-task/Invoke-ConfluenceGetLongRunningTasks.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 |
#https://developer.atlassian.com/cloud/confluence/rest/#api-longtask-get function Invoke-ConfluenceGetLongRunningTasks { [CmdletBinding()] param ( # The index of the first item to return in the page of results (page offset). The base index is 0. [Parameter(Position=0,ValueFromPipelineByPropertyName)] [int32] $StartAt=0, # The maximum number of items to return per page. The default is 100 and the maximum is 100. [Parameter(Position=1,ValueFromPipelineByPropertyName)] [ValidateRange(1,100)] [int32] $MaxResults=100, # The AtlassianContext object to use for the request (use New-AtlassianContext) [Parameter()] [object] $RequestContext ) begin { $results = @() } process { $functionPath = "/wiki/rest/api/longtask" $verb = "GET" $query = New-PACRestMethodQueryParams @{ start = $StartAt limit = $MaxResults } $method = New-PACRestMethod $functionPath $verb $query $results += $method.Invoke($RequestContext) } end { $results } } |