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