Public/Operations/Show-EdenServiceInfrastructure.ps1
function Show-EdenServiceInfrastructure { <# .SYNOPSIS Showing service infrastructure. .DESCRIPTION Showing service infrastructure. by calling the local './Eden/Operations/Show-ServiceInfrastructure.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/Show-ServiceInfrastructure" ` -SettingsName $SettingsName ` -CommandGroup "Operations" ` -Message "Showing service infrastructure." ` -AdditionalArguments $AdditionalArguments } New-Alias ` -Name e-oi ` -Value Show-EdenServiceInfrastructure ` -Force |