Skip to content

Commit bb54124

Browse files
committed
helper md for new cmdlet
1 parent 6554603 commit bb54124

File tree

1 file changed

+129
-0
lines changed

1 file changed

+129
-0
lines changed
Lines changed: 129 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,129 @@
1+
---
2+
external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml
3+
Module Name: Az.Network
4+
online version:
5+
schema: 2.0.0
6+
---
7+
8+
# New-AzFirewallThreatIntelWhitelist
9+
10+
## SYNOPSIS
11+
Create a new ThreatIntelWhitelist for Azure Firewall
12+
13+
## SYNTAX
14+
15+
```
16+
New-AzFirewallThreatIntelWhitelist [-FQDN <String[]>] [-IpAddress <String[]>]
17+
[-DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm] [<CommonParameters>]
18+
```
19+
20+
## DESCRIPTION
21+
The **New-AzFirewallThreatIntelWhitelist** cmdlet creates a threat intel whitelist for Azure Firewall.
22+
23+
## EXAMPLES
24+
25+
### Example 1
26+
```powershell
27+
PS C:\> New-AzFirewallThreatIntelWhitelist -IpAddress @("2.2.2.2", "3.3.3.3") -FQDN @("bing.com", "yammer.com")
28+
```
29+
30+
This example creates a threat intel whitelist containing a FQDN whitelist of two entries and an Ip address whitelist of two entries
31+
32+
## PARAMETERS
33+
34+
### -DefaultProfile
35+
The credentials, account, tenant, and subscription used for communication with Azure.
36+
37+
```yaml
38+
Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
39+
Parameter Sets: (All)
40+
Aliases: AzContext, AzureRmContext, AzureCredential
41+
42+
Required: False
43+
Position: Named
44+
Default value: None
45+
Accept pipeline input: False
46+
Accept wildcard characters: False
47+
```
48+
49+
### -FQDN
50+
The FQDNs of the Threat Intel Whitelist
51+
52+
```yaml
53+
Type: System.String[]
54+
Parameter Sets: (All)
55+
Aliases:
56+
57+
Required: False
58+
Position: Named
59+
Default value: None
60+
Accept pipeline input: False
61+
Accept wildcard characters: False
62+
```
63+
64+
### -IpAddress
65+
The IP Addresses of the Threat Intel Whitelist
66+
67+
```yaml
68+
Type: System.String[]
69+
Parameter Sets: (All)
70+
Aliases:
71+
72+
Required: False
73+
Position: Named
74+
Default value: None
75+
Accept pipeline input: False
76+
Accept wildcard characters: False
77+
```
78+
79+
### -Confirm
80+
Prompts you for confirmation before running the cmdlet.
81+
82+
```yaml
83+
Type: System.Management.Automation.SwitchParameter
84+
Parameter Sets: (All)
85+
Aliases: cf
86+
87+
Required: False
88+
Position: Named
89+
Default value: None
90+
Accept pipeline input: False
91+
Accept wildcard characters: False
92+
```
93+
94+
### -WhatIf
95+
Shows what would happen if the cmdlet runs.
96+
The cmdlet is not run.
97+
98+
```yaml
99+
Type: System.Management.Automation.SwitchParameter
100+
Parameter Sets: (All)
101+
Aliases: wi
102+
103+
Required: False
104+
Position: Named
105+
Default value: None
106+
Accept pipeline input: False
107+
Accept wildcard characters: False
108+
```
109+
110+
### CommonParameters
111+
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).
112+
113+
## INPUTS
114+
115+
### None
116+
117+
## OUTPUTS
118+
119+
### Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist
120+
121+
## NOTES
122+
123+
## RELATED LINKS
124+
125+
[Get-AzFirewall](./Get-AzFirewall.md)
126+
127+
[New-AzFirewall](./New-AzFirewall.md)
128+
129+
[Set-AzFirewall](./Set-AzFirewall.md)

0 commit comments

Comments
 (0)