Scripts/New-UDGaugeData.ps1

function New-UDGaugeData {
    param(
        [Parameter(Mandatory = $true)]
        [string]$Label,
        [Parameter(Mandatory = $true)]
        [string]$Value
    )
    End {
        [PSCustomObject]@{
            Label = $Label
            Value = $Value
        }
    }
}