Public/Operations/Get-EdenServiceHealth.ps1

function Get-EdenServiceHealth {
    <#
        .SYNOPSIS
        Getting service health.

        .DESCRIPTION
        Getting service health. by calling the local './Eden/Operations/Get-ServiceHealth.ps1' script.
    #>

    [CmdletBinding()]
    param(
        # The name of the local or global settins file to pass to the Eden script.
        [Alias("sn")]
        [String] $SettingsName,
        # The additional arguments to pass to the Eden script.
        [Alias("aa")]
        [HashTable] $AdditionalArguments
    )

    Invoke-EdenCommandStandardFlow `
        -LocalCommandPath "Operations/Get-ServiceHealth" `
        -SettingsName $SettingsName `
        -CommandGroup "Operations" `
        -Message "Getting service health." `
        -AdditionalArguments $AdditionalArguments
}
New-Alias `
    -Name e-oh `
    -Value Get-EdenServiceHealth `
    -Force