Skip to content

Commit d4b025c

Browse files
{Network} Fix #17681: Add samples for retrieving Private Link IP Conf… (#20448)
* {Network} Fix #17681: Add samples for retrieving Private Link IP Configuration using 'New-AzApplicationGatewayPrivateLinkIpConfiguration' Fixes #17681 * Update ChangeLog.md * Update ChangeLog.md Co-authored-by: Jin Lei <[email protected]>
1 parent 8109c12 commit d4b025c

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/Network/Network/ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
--->
2020

2121
## Upcoming Release
22+
* Added samples for retrieving Private Link IP Configuration using 'New-AzApplicationGatewayPrivateLinkIpConfiguration' with fix [#20440]
2223
* Added `DdosProtectionPlan` property in `AzPublicIpAddress`
2324
* Updated mapping in `AzPublicIpAddress` to always show/create DdosSettings
2425
* Fixed a bug that added Ddos related properties when viewing PublicIpAddress and DdosProtectionPlan objects

src/Network/Network/help/New-AzApplicationGatewayPrivateLinkConfiguration.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,16 @@ One private link configuration can atmost be associated to only one frontend ip
2727

2828
### Example 1: Create an Private Link Configuration with single Ip Configuration
2929
```powershell
30+
$PrivateLinkIpConfiguration1 = New-AzApplicationGatewayPrivateLinkIpConfiguration -Name "ipConfig01" -Subnet $subnet -Primary
3031
$PrivateLinkConfiguration = New-AzApplicationGatewayPrivateLinkConfiguration -Name "privateLinkConfig01" -IpConfiguration $privateLinkIpConfiguration1
3132
```
3233

3334
This command creates an PrivateLink configuration named 'privateLinkConfig01' and stores the result in the variable named $PrivateLinkConfiguration.
3435

3536
### Example 2: Create an Private Link Configuration with multiple Ip Configurations
3637
```powershell
38+
$PrivateLinkIpConfiguration1 = New-AzApplicationGatewayPrivateLinkIpConfiguration -Name "ipConfig01" -Subnet $subnet -Primary
39+
$PrivateLinkIpConfiguration2 = New-AzApplicationGatewayPrivateLinkIpConfiguration -Name "ipConfig02" -Subnet $subnet
3740
$PrivateLinkConfiguration = New-AzApplicationGatewayPrivateLinkConfiguration -Name "privateLinkConfig01" -IpConfiguration $privateLinkIpConfiguration1, $privateLinkIpConfiguration2
3841
```
3942

0 commit comments

Comments
 (0)