public/Get-D4IOTDeviceVulnerabilities.ps1


function Get-D4IOTDeviceVulnerabilities {

    [CmdletBinding(SupportsShouldProcess, ConfirmImpact = 'High')]
    param (
        [Parameter(Mandatory)]
        [ValidateNotNullOrEmpty()]
        [string] $HostName,

        [Parameter(Mandatory)]
        [ValidateNotNullOrEmpty()]
        [string]$APIKey,

        [Parameter(Mandatory = $false,
        ValueFromPipeline)]
        [ValidateNotNullOrEmpty()]
        [bool]$IgnoreSSL
    )

    begin {
    }

    process {

        Write-Verbose -Message "Starting Get-D4IOTDeviceVulnerabilities Method"

            try {
                
                Write-Verbose -Message "Header Formation Started..."

                $headers = New-Object "System.Collections.Generic.Dictionary[[String],[String]]"
                $headers.Add("Authorization", "$APIKey")


                Write-Debug -Message "$APIKey"
                Write-Debug -Message "$HostName"

                Write-Verbose -Message "URI Formation Started..."
                $BaseUri=[System.Uri]"https://$HostName//api//v1//reports//vulnerabilities//security";

                Write-Verbose -Message "Parameters Formation Started...";

                $bodyContent =@{};

                if($IgnoreSSL)
                {
                    $jsonresponse = Invoke-RestMethod $BaseUri -Method 'GET' -Headers $headers -Body $bodyContent -SkipCertificateCheck
                }
                else
                {
                    $jsonresponse = Invoke-RestMethod $BaseUri -Method 'GET' -Headers $headers -Body $bodyContent
                }

                $jsonresponse = $jsonresponse | ConvertTo-Json
                return $jsonresponse;
            }
            catch {
                $return = $_.Exception.Message;
                Write-Verbose $_;
                Write-Error "Error in Get-D4IOTDeviceAlerts $return";
                return $return ;
            }
    }
}