Public/Pipeline/New-EdenServicePipeline.ps1
function New-EdenServicePipeline { <# .SYNOPSIS Creating pipeline. .DESCRIPTION Creating pipeline. by calling the local './Eden/Pipeline/New-ServicePipeline.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 "Pipeline/New-ServicePipeline" ` -SettingsName $SettingsName ` -CommandGroup "Pipeline" ` -Message "Creating pipeline." ` -AdditionalArguments $AdditionalArguments } New-Alias ` -Name e-pln ` -Value New-EdenServicePipeline ` -Force |