Public/Get-UnifiSiteWirelessNetwork.ps1
function Get-UnifiSiteWirelessNetwork { [CmdletBinding()] param ( [Parameter(Position = 0, Mandatory = $true, ValueFromPipeline = $true)][string]$name ) $URI = "$controller/api/s/$name/rest/wlanconf" (Invoke-GetRestAPICall $URI).data <# .SYNOPSIS List wireless network configuration. .DESCRIPTION List wireless network configuration. .PARAMETER Name Short name for the site. This is the 'name' value from the Get-UnifiSite command. .INPUTS System.String. Can take value from pipeline. .OUTPUTS System.Object. #> } |