Public/Deploying/Show-EdenServiceDeploymentsList.ps1

function Show-EdenServiceDeploymentsList {
    <#
        .SYNOPSIS
        Showing deployments.

        .DESCRIPTION
        Showing deployments. by calling the local './Eden/Deploying/Show-ServiceDeploymentsList.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 "Deploying/Show-ServiceDeploymentsList" `
        -SettingsName $SettingsName `
        -CommandGroup "Deploying" `
        -Message "Showing deployments." `
        -AdditionalArguments $AdditionalArguments
}
New-Alias `
    -Name e-dpl `
    -Value Show-EdenServiceDeploymentsList `
    -Force