Public/Get/Reports/Get-NinjaRMMOSPatchInstallsReport.ps1
using namespace System.Management.Automation #Requires -Version 7 function Get-NinjaRMMOSPatchInstallsReport { <# .SYNOPSIS Gets the OS patch installs report from the NinjaRMM API. .DESCRIPTION Retrieves the OS patch installs report from the NinjaRMM v2 API. .OUTPUTS A powershell object containing the response. #> [CmdletBinding()] [OutputType([Object])] [Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSReviewUnusedParameter', '', Justification = 'Uses dynamic parameter parsing.')] Param( # Filter devices. [Alias('df')] [String]$deviceFilter, # Monitoring timestamp filter. [Alias('ts')] [string]$timeStamp, # Filter patches by patch status. [String]$status, # Filter patches to those installed before this date. [DateTime]$installedBefore, # Filter patches to those installed after this date. [DateTime]$installedAfter, # Cursor name. [String]$cursor, # Number of results per page. [Int]$pageSize ) $CommandName = $MyInvocation.InvocationName $Parameters = (Get-Command -Name $CommandName).Parameters try { $QSCollection = New-NinjaRMMQuery -CommandName $CommandName -Parameters $Parameters $Resource = 'v2/queries/os-patch-installs' $RequestParams = @{ Method = 'GET' Resource = $Resource QSCollection = $QSCollection } $OSPatchInstallsReport = New-NinjaRMMGETRequest @RequestParams Return $OSPatchInstallsReport } catch { $CommandFailedError = [ErrorRecord]::New( [System.Exception]::New( 'Failed to get the OS patch installs report from NinjaRMM. You can use "Get-Error" for detailed error information.', $_.Exception ), 'NinjaCommandFailed', 'ReadError', $TargetObject ) $PSCmdlet.ThrowTerminatingError($CommandFailedError) } } |