Public/Deploying/Deploy-EdenServiceApplicationStaging.ps1

function Deploy-EdenServiceApplicationStaging {
    <#
        .SYNOPSIS
        Deploying staging application(s).

        .DESCRIPTION
        Deploying staging application(s). by calling the local './Eden/Deploying/Deploy-ServiceApplicationStaging.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/Deploy-ServiceApplicationStaging" `
        -SettingsName $SettingsName `
        -CommandGroup "Deploying" `
        -Message "Deploying staging application(s)." `
        -AdditionalArguments $AdditionalArguments
}
New-Alias `
    -Name e-dpas `
    -Value Deploy-EdenServiceApplicationStaging `
    -Force