public/Get-NexposeVulnerabilityCheckType.ps1

Function Get-NexposeVulnerabilityCheckType {
<#
    .SYNOPSIS
        Returns the vulnerability check types. The type groups related vulnerability checks by their purpose, property, or related characteristic.
 
    .DESCRIPTION
        Returns the vulnerability check types. The type groups related vulnerability checks by their purpose, property, or related characteristic.
 
    .EXAMPLE
        Get-NexposeVulnerabilityCheckType
 
    .NOTES
        For additional information please see my GitHub wiki page
 
    .FUNCTIONALITY
        GET: vulnerability_checks_types
 
    .LINK
        https://github.com/My-Random-Thoughts/Rapid7Nexpose
#>


    Write-Output (Invoke-NexposeQuery -UrlFunction 'vulnerability_checks_types' -RestMethod Get)
}