CoreOps/System/Get-SDPSystemCapacityPolicy.ps1

function Get-SDPSystemCapacityPolicy {
    param(
        [parameter()]
        [string] $k2context = 'k2rfconnection'
    )

    Begin {
        $endpoint = "system/capacity_policy"
    }

    Process {
        if ($PSBoundParameters.Keys.Contains('Verbose')) {
            $results = Invoke-SDPRestCall -endpoint $endpoint -method GET -parameterList $PSBoundParameters -Verbose -k2context $k2context
        } else {
            $results = Invoke-SDPRestCall -endpoint $endpoint -method GET -parameterList $PSBoundParameters -k2context $k2context
        }
        return $results
    }
}