Public/Get/Devices/Get-NinjaOneDeviceOSPatchInstalls.ps1
#Requires -Version 7 function Get-NinjaOneDeviceOSPatchInstalls { <# .SYNOPSIS Gets device OS patch installs from the NinjaOne API. .DESCRIPTION Retrieves device OS patch installs from the NinjaOne v2 API. .OUTPUTS A powershell object containing the response. #> [CmdletBinding()] [OutputType([Object])] [Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSReviewUnusedParameter', '', Justification = 'Uses dynamic parameter parsing.')] Param( # Device ID [Parameter(ValueFromPipelineByPropertyName, Mandatory)] [Alias('id')] [Int]$deviceID, # Filter patches by patch status. [ValidateSet('FAILED', 'INSTALLED')] [String]$status, # Filter patches to those installed before this date. [DateTime]$installedBefore, # Filter patches to those installed after this date. [DateTime]$installedAfter ) $CommandName = $MyInvocation.InvocationName $Parameters = (Get-Command -Name $CommandName).Parameters # Workaround to prevent the query string processor from adding an 'deviceid=' parameter by removing it from the set parameters. if ($deviceID) { $Parameters.Remove('deviceID') | Out-Null } try { $QSCollection = New-NinjaOneQuery -CommandName $CommandName -Parameters $Parameters if ($deviceID) { Write-Verbose 'Getting device from NinjaOne API.' $Device = Get-NinjaOneDevices -deviceID $deviceID if ($Device) { Write-Verbose "Retrieving OS patch installs for $($Device.SystemName)." $Resource = "v2/device/$($deviceID)/os-patch-installs" } } $RequestParams = @{ Method = 'GET' Resource = $Resource QSCollection = $QSCollection } $DeviceOSPatchIntallResults = New-NinjaOneGETRequest @RequestParams Return $DeviceOSPatchIntallResults } catch { New-NinjaOneError -ErrorRecord $_ } } |