Functions/Get-DSCPullServerIdNode.ps1
<# .SYNOPSIS Returns all ConfigurationID nodes from a DSC Pull Server. .DESCRIPTION The Get-DSCPullServerIdNode cmdlet uses the Invoke-RestMethod to get the ConfigurationID nodes from a DSC Pull Server. The DSC Pull Server Web API must be deployed on the target DSC Pull Server. .INPUTS None. .OUTPUTS DSCPullServerWeb.IdNode. .EXAMPLE PS C:\> Get-DSCPullServerIdNode -Uri 'http://localhost:8081/api' Return all ConfigurationID nodes on the local DSC Pull Server instance. .EXAMPLE PS C:\> Get-DSCPullServerIdNode -Uri 'http://localhost:8081/api' -Credential 'DOMAIN\user' Invoke the cmdlet with alternative credentials to return all ConfigurationID nodes. .NOTES Author : Claudio Spizzi License : MIT License .LINK https://github.com/claudiospizzi/DSCPullServerWeb #> function Get-DSCPullServerIdNode { [CmdletBinding()] [OutputType([PSObject])] param ( # Base uri to the DSC Pull Server including the relative '/api' path. [Parameter(Mandatory = $true)] [System.String] $Uri, # Optionally specify credentials for the request. [Parameter(Mandatory = $false)] [System.Management.Automation.PSCredential] [System.Management.Automation.Credential()] $Credential ) # Use splatting to prepare the parameters. $restMethodParam = @{ Method = 'Get' Uri = "$Uri/v1/nodes/id" } # Depending on the credential input, add the default or specfic credentials. if ($null -eq $Credential) { $restMethodParam.UseDefaultCredentials = $true } else { $restMethodParam.Credential = $Credential } try { Update-SystemNetServicePointManager $nodes = Invoke-RestMethod @restMethodParam -ErrorAction Stop foreach ($node in $nodes) { $node.LastHeartbeatTime = [DateTime] $node.LastHeartbeatTime $node.LastComplianceTime = [DateTime] $node.LastComplianceTime $node.PSTypeNames.Insert(0, 'DSCPullServerWeb.IdNode') Write-Output $node } } catch { $target = $restMethodParam.Method.ToUpper() + ' ' + $restMethodParam.Uri Write-Error -Message 'Unable to get the ConfigurationID node(s).' -Exception $_.Exception -Category ConnectionError -TargetObject $target } } |