-
Notifications
You must be signed in to change notification settings - Fork 4
Get UnifiFirewallGroupDetails
external help file: UniFiTooling-help.xml HelpVersion: 1.1.0 Locale: en-US Module Guid: 7fff91a0-02eb-4df2-84d5-c7d3cd7f7a5d Module Name: UniFiTooling online version: https://github.com/Enatec/UniFiTooling/raw/master/docs/Get-UnifiFirewallGroupDetails.md schema: 2.0.0
Get details about one given USG firewall groups via API on the UniFi SDN Controller.
Get-UnifiFirewallGroupDetails [-Id] <String[]> [[-UnifiSite] <String>] [<CommonParameters>]
Get-UnifiFirewallGroupDetails [-Name] <String[]> [[-UnifiSite] <String>] [<CommonParameters>]
Get details about one given UniFi Secure Gateway (USG) firewall groups via Ubiquiti (UBNT) UniFi RESTful API request on the UniFi SDN Controller.
Get-UnifiFirewallGroupDetails -id 'ba7e58be13574ef4881a79c3'
Get the details about the Firewall Group with ID ba7e58be13574ef4881a79c3 via the API of the UniFi Controller
Get-UnifiFirewallGroupDetails -name 'MyExtDNS'
Get the details about the Firewall Group MyExtDNS via the API of the UniFi Controller
Get-UnifiFirewallGroupDetails -name 'MyExtDNS', 'MailHost'
Get the details about the Firewall Groups MyExtDNS and MailHost via the API of the UniFi Controller
Get-UnifiFirewallGroupDetails -id 'ba7e58be13574ef4881a79c3', '2437bdf7fdf04f1a96c0fd32'
Get the details about the Firewall Groups with IDs ba7e58be13574ef4881a79c3 and 2437bdf7fdf04f1a96c0fd32 via the API of the UniFi Controller
Get-UnifiFirewallGroupDetails -id 'ba7e58be13574ef4881a79c3' -UnifiSite 'Contoso'
Get the details about the Firewall Groups with ID ba7e58be13574ef4881a79c3 on Site 'Contoso' via the API of the UniFi Controller
Get-UnifiFirewallGroupDetails -name 'MailHost' -UnifiSite 'Contoso'
Get the details about the Firewall Groups MailHost on Site 'Contoso' via the API of the UniFi Controller
The ID (_id) of the Firewall Group, you would like to get detailed information about. Multiple values are supported.
Type: String[]
Parameter Sets: Request by Id
Aliases: FirewallGroupId
Required: True
Position: 1
Default value: None
Accept pipeline input: True (ByPropertyName, ByValue)
Accept wildcard characters: False
The Name (not the _id) of the Firewall Group you would like to get detailed information about. Multiple values are supported.
Type: String[]
Parameter Sets: Request by Name
Aliases: FirewallGroupName
Required: True
Position: 1
Default value: None
Accept pipeline input: True (ByPropertyName, ByValue)
Accept wildcard characters: False
UniFi Site as configured. The default is: default
Type: String
Parameter Sets: (All)
Aliases: Site
Required: False
Position: 2
Default value: Default
Accept pipeline input: True (ByPropertyName, ByValue)
Accept wildcard characters: False
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
Initial Release with 1.0.7