public/inventory/Get-MachineProcess.ps1
Function Get-MachineProcess { [cmdletBinding( SupportsShouldProcess = $true, ConfirmImpact = 'low' )] param( [Parameter( Position = 0, ValueFromPipeline, ValueFromPipelineByPropertyName )] [Alias('ProcessId')] [int] $Id, [Parameter()] [ValidatePattern("^\?")] [string] $QueryParameters ) Begin { } Process { $Endpoint = '/api/inventory/processes' If ($Id) { $Endpoint = "/api/inventory/processes/{0}" -f $Id } If ($PSCmdlet.ShouldProcess($Server, "GET $Endpoint")) { $newApiGETRequestSplat = @{ QueryParameters = $QueryParameters Endpoint = $Endpoint } $Result = New-ApiGETRequest @newApiGETRequestSplat } } End { $Result.Processes } } |