functions/Get-S1Connection.ps1
<#
.SYNOPSIS Short description .DESCRIPTION Long description .EXAMPLE PS C:\> <example usage> Explanation of what the example does .INPUTS Inputs (if any) .OUTPUTS Output (if any) .NOTES General notes #> function Get-S1Connection { [CmdletBinding()] param ($type ) Begin{ write-host $type } process { Get-S1Object -Type Connection | ConvertFrom-S1ConnectionList } } |