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