Skip to content

Commit e5fda3d

Browse files
committed
add ThreatIntelWhitelist to PSAzureFirewall and change mapping
1 parent 1c1bd55 commit e5fda3d

File tree

366 files changed

+1272
-1248
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

366 files changed

+1272
-1248
lines changed

src/Network/Network/AzureFirewall/NewAzureFirewallCommand.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,12 @@ public class NewAzureFirewallCommand : AzureFirewallBaseCmdlet
135135
IgnoreCase = false)]
136136
public string ThreatIntelMode { get; set; }
137137

138+
[Parameter(
139+
Mandatory = false,
140+
ValueFromPipelineByPropertyName = true,
141+
HelpMessage = "The whitelist for Threat Intelligence")]
142+
public PSAzureFirewallThreatIntelWhitelist ThreatIntelWhitelist { get; set; }
143+
138144
[Parameter(
139145
Mandatory = false,
140146
ValueFromPipelineByPropertyName = true,
@@ -256,6 +262,7 @@ private PSAzureFirewall CreateAzureFirewall()
256262
NatRuleCollections = this.NatRuleCollection?.ToList(),
257263
NetworkRuleCollections = this.NetworkRuleCollection?.ToList(),
258264
ThreatIntelMode = this.ThreatIntelMode ?? MNM.AzureFirewallThreatIntelMode.Alert,
265+
ThreatIntelWhitelist = this.ThreatIntelWhitelist,
259266
Sku = sku
260267
};
261268

src/Network/Network/AzureFirewall/ThreatIntelWhitelist/NewAzureFirewallThreatIntelWhitelistCommand.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,28 +21,28 @@
2121
namespace Microsoft.Azure.Commands.Network
2222
{
2323
[Cmdlet(VerbsCommon.New, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "FirewallThreatIntelWhitelist", SupportsShouldProcess = true), OutputType(typeof(PSAzureFirewallThreatIntelWhitelist))]
24-
class NewAzureFirewallThreatIntelWhitelistCommand : AzureFirewallBaseCmdlet
24+
public class NewAzureFirewallThreatIntelWhitelistCommand : AzureFirewallBaseCmdlet
2525
{
2626
[Parameter(
2727
Mandatory = false,
2828
HelpMessage = "The FQDNs of the Threat Intel Whitelist")]
2929
[ValidateNotNull]
30-
public string FQDNs { get; set; }
30+
public string FQDN { get; set; }
3131

3232
[Parameter(
3333
Mandatory = false,
3434
HelpMessage = "The IP Addresses of the Threat Intel Whitelist")]
3535
[ValidateNotNull]
36-
public string IpAddresses { get; set; }
36+
public string IpAddress { get; set; }
3737

3838
public override void Execute()
3939
{
4040
base.Execute();
4141

4242
var threatIntelWhitelist = new PSAzureFirewallThreatIntelWhitelist
4343
{
44-
FQDNs = this.FQDNs,
45-
IpAddresses = this.IpAddresses
44+
FQDNs = this.FQDN,
45+
IpAddresses = this.IpAddress
4646
};
4747
WriteObject(threatIntelWhitelist);
4848
}

src/Network/Network/Common/NetworkResourceManagerProfile.cs

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1107,7 +1107,20 @@ private static void Initialize()
11071107

11081108
// Azure Firewalls
11091109
// CNM to MNM
1110-
cfg.CreateMap<CNM.PSAzureFirewall, MNM.AzureFirewall>();
1110+
cfg.CreateMap<CNM.PSAzureFirewall, MNM.AzureFirewall>().AfterMap((src, dest) =>
1111+
{
1112+
if (src.ThreatIntelWhitelist == null)
1113+
{
1114+
dest.AdditionalProperties = null;
1115+
return;
1116+
}
1117+
1118+
dest.AdditionalProperties = new Dictionary<string, string>()
1119+
{
1120+
{ "ThreatIntel.Whitelist.FQDNs", src.ThreatIntelWhitelist.FQDNs },
1121+
{ "ThreatIntel.Whitelist.IpAddresses", src.ThreatIntelWhitelist.IpAddresses }
1122+
};
1123+
});
11111124
cfg.CreateMap<CNM.PSAzureFirewallSku, MNM.AzureFirewallSku>();
11121125
cfg.CreateMap<CNM.PSAzureFirewallIpConfiguration, MNM.AzureFirewallIPConfiguration>();
11131126
cfg.CreateMap<CNM.PSAzureFirewallApplicationRuleCollection, MNM.AzureFirewallApplicationRuleCollection>();
@@ -1121,7 +1134,14 @@ private static void Initialize()
11211134
cfg.CreateMap<CNM.PSAzureFirewallApplicationRuleProtocol, MNM.AzureFirewallApplicationRuleProtocol>();
11221135

11231136
// MNM to CNM
1124-
cfg.CreateMap<MNM.AzureFirewall, CNM.PSAzureFirewall>();
1137+
cfg.CreateMap<MNM.AzureFirewall, CNM.PSAzureFirewall>().AfterMap((src, dest) =>
1138+
{
1139+
dest.ThreatIntelWhitelist = new CNM.PSAzureFirewallThreatIntelWhitelist
1140+
{
1141+
FQDNs = src.AdditionalProperties.SingleOrDefault(kvp => kvp.Key.Equals("ThreatIntel.Whitelist.FQDNs")).Value,
1142+
IpAddresses = src.AdditionalProperties.SingleOrDefault(kvp => kvp.Key.Equals("ThreatIntel.Whitelist.IpAddresses")).Value
1143+
};
1144+
});
11251145
cfg.CreateMap<MNM.AzureFirewallSku, CNM.PSAzureFirewallSku>();
11261146
cfg.CreateMap<MNM.AzureFirewallIPConfiguration, CNM.PSAzureFirewallIpConfiguration>();
11271147
cfg.CreateMap<MNM.AzureFirewallApplicationRuleCollection, CNM.PSAzureFirewallApplicationRuleCollection>();

src/Network/Network/Models/AzureFirewall/PSAzureFirewall.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ public class PSAzureFirewall : PSTopLevelResource
4242

4343
public string ThreatIntelMode { get; set; }
4444

45+
public PSAzureFirewallThreatIntelWhitelist ThreatIntelWhitelist { get; set; }
46+
4547
public string ProvisioningState { get; set; }
4648

4749
public List<string> Zones { get; set; }
@@ -70,6 +72,12 @@ public string NetworkRuleCollectionsText
7072
get { return JsonConvert.SerializeObject(NetworkRuleCollections, Formatting.Indented); }
7173
}
7274

75+
[JsonIgnore]
76+
public string ThreatIntelWhitelistText
77+
{
78+
get { return JsonConvert.SerializeObject(ThreatIntelWhitelist, Formatting.Indented); }
79+
}
80+
7381
#region Ip Configuration Operations
7482

7583
public void Allocate(PSVirtualNetwork virtualNetwork, PSPublicIpAddress[] publicIpAddresses)

src/Network/Network/Network.format.ps1xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3294,6 +3294,10 @@
32943294
<Label>ThreatIntelMode</Label>
32953295
<PropertyName>ThreatIntelMode</PropertyName>
32963296
</ListItem>
3297+
<ListItem>
3298+
<Label>ThreatIntelWhitelist</Label>
3299+
<PropertyName>ThreatIntelWhitelistText</PropertyName>
3300+
</ListItem>
32973301
<ListItem>
32983302
<Label>Sku</Label>
32993303
<PropertyName>Sku</PropertyName>

src/Network/Network/help/Add-AzApplicationGatewayAuthenticationCertificate.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ Accept wildcard characters: False
128128
```
129129
130130
### CommonParameters
131-
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).
131+
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).
132132
133133
## INPUTS
134134

src/Network/Network/help/Add-AzApplicationGatewayBackendAddressPool.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ Accept wildcard characters: False
160160
```
161161
162162
### CommonParameters
163-
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).
163+
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).
164164
165165
## INPUTS
166166

src/Network/Network/help/Add-AzApplicationGatewayBackendHttpSetting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ Accept wildcard characters: False
285285
```
286286
287287
### CommonParameters
288-
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).
288+
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).
289289
290290
## INPUTS
291291

src/Network/Network/help/Add-AzApplicationGatewayCustomError.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ Accept wildcard characters: False
107107
```
108108
109109
### CommonParameters
110-
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).
110+
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).
111111
112112
## INPUTS
113113

src/Network/Network/help/Add-AzApplicationGatewayFrontendIPConfig.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ Accept wildcard characters: False
204204
```
205205
206206
### CommonParameters
207-
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).
207+
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).
208208
209209
## INPUTS
210210

src/Network/Network/help/Add-AzApplicationGatewayFrontendPort.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Accept wildcard characters: False
9595
```
9696
9797
### CommonParameters
98-
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).
98+
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).
9999
100100
## INPUTS
101101

src/Network/Network/help/Add-AzApplicationGatewayHttpListener.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ Accept wildcard characters: False
255255
```
256256
257257
### CommonParameters
258-
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).
258+
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).
259259
260260
## INPUTS
261261

src/Network/Network/help/Add-AzApplicationGatewayHttpListenerCustomError.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ Accept wildcard characters: False
9494
```
9595
9696
### CommonParameters
97-
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).
97+
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).
9898
9999
## INPUTS
100100

src/Network/Network/help/Add-AzApplicationGatewayIPConfiguration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ Accept wildcard characters: False
124124
```
125125
126126
### CommonParameters
127-
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).
127+
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).
128128
129129
## INPUTS
130130

src/Network/Network/help/Add-AzApplicationGatewayProbeConfig.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Adds a health probe to an Application Gateway.
1515
```
1616
Add-AzApplicationGatewayProbeConfig -ApplicationGateway <PSApplicationGateway> -Name <String>
1717
-Protocol <String> [-HostName <String>] -Path <String> -Interval <Int32> -Timeout <Int32>
18-
-UnhealthyThreshold <Int32> [-PickHostNameFromBackendHttpSettings] [-MinServers <Int32>]
18+
-UnhealthyThreshold <Int32> [-PickHostNameFromBackendHttpSettings] [-MinServers <Int32>] [-Port <Int32>]
1919
[-Match <PSApplicationGatewayProbeHealthResponseMatch>] [-DefaultProfile <IAzureContextContainer>]
2020
[<CommonParameters>]
2121
```
@@ -177,6 +177,21 @@ Accept pipeline input: False
177177
Accept wildcard characters: False
178178
```
179179
180+
### -Port
181+
Port that is used for probing the backend server
182+
183+
```yaml
184+
Type: System.Int32
185+
Parameter Sets: (All)
186+
Aliases:
187+
188+
Required: False
189+
Position: Named
190+
Default value: None
191+
Accept pipeline input: False
192+
Accept wildcard characters: False
193+
```
194+
180195
### -Protocol
181196
Specifies the protocol used to send probe.
182197
This cmdlet supports HTTP only.
@@ -229,7 +244,7 @@ Accept wildcard characters: False
229244
```
230245
231246
### CommonParameters
232-
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).
247+
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).
233248
234249
## INPUTS
235250

src/Network/Network/help/Add-AzApplicationGatewayRedirectConfiguration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ Accept wildcard characters: False
188188
```
189189
190190
### CommonParameters
191-
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).
191+
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).
192192
193193
## INPUTS
194194

src/Network/Network/help/Add-AzApplicationGatewayRequestRoutingRule.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ Accept wildcard characters: False
288288
```
289289
290290
### CommonParameters
291-
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).
291+
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).
292292
293293
## INPUTS
294294

src/Network/Network/help/Add-AzApplicationGatewayRewriteRuleSet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Accept wildcard characters: False
9595
```
9696
9797
### CommonParameters
98-
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).
98+
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).
9999
100100
## INPUTS
101101

src/Network/Network/help/Add-AzApplicationGatewaySslCertificate.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ Accept wildcard characters: False
148148
```
149149
150150
### CommonParameters
151-
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).
151+
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).
152152
153153
## INPUTS
154154

src/Network/Network/help/Add-AzApplicationGatewayTrustedRootCertificate.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ Accept wildcard characters: False
129129
```
130130
131131
### CommonParameters
132-
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).
132+
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).
133133
134134
## INPUTS
135135

src/Network/Network/help/Add-AzApplicationGatewayUrlPathMapConfig.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ Accept wildcard characters: False
252252
```
253253
254254
### CommonParameters
255-
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).
255+
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).
256256
257257
## INPUTS
258258

src/Network/Network/help/Add-AzDelegation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Accept wildcard characters: False
9595
```
9696
9797
### CommonParameters
98-
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).
98+
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).
9999
100100
## INPUTS
101101

src/Network/Network/help/Add-AzExpressRouteCircuitAuthorization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ Accept wildcard characters: False
9999
```
100100
101101
### CommonParameters
102-
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).
102+
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).
103103
104104
## INPUTS
105105

0 commit comments

Comments
 (0)