Skip to content

Commit 43a0091

Browse files
authored
Merge pull request Azure#9043 from wdehrich/disable-bgp-route-propagation
Get-AzEffectiveRouteTable powershell cmdlet not showing disableBgpRoutePropagation property
2 parents ff4f18d + 5d82866 commit 43a0091

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

src/Network/Network/ChangeLog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@
1818
- Additional information about change #1
1919
--->
2020
## Upcoming Release
21+
* Add DisableBgpRoutePropagation flag to Effective Route Table output
22+
- Updated cmdlet:
23+
- Get-AzEffectiveRouteTable
2124

2225
## Version 1.8.0
2326
* Add support for Nat Gateway Resource

src/Network/Network/Models/PSEffectiveRoute.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ public class PSEffectiveRoute
2525
[Ps1Xml(Target = ViewControl.Table)]
2626
public string Name { get; set; }
2727

28+
[JsonProperty(Order = 1)]
29+
[Ps1Xml(Target = ViewControl.Table)]
30+
public bool DisableBgpRoutePropagation { get; set; }
31+
2832
[JsonProperty(Order = 1)]
2933
[Ps1Xml(Target = ViewControl.Table)]
3034
public string State { get; set; }

src/Network/Network/Network.generated.format.ps1xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1932,6 +1932,10 @@
19321932
<Alignment>Left</Alignment>
19331933
<Label>Name</Label>
19341934
</TableColumnHeader>
1935+
<TableColumnHeader>
1936+
<Alignment>Left</Alignment>
1937+
<Label>DisableBgpRoutePropagation</Label>
1938+
</TableColumnHeader>
19351939
<TableColumnHeader>
19361940
<Alignment>Left</Alignment>
19371941
<Label>State</Label>
@@ -1952,6 +1956,10 @@
19521956
<Alignment>Left</Alignment>
19531957
<PropertyName>Name</PropertyName>
19541958
</TableColumnItem>
1959+
<TableColumnItem>
1960+
<Alignment>Left</Alignment>
1961+
<PropertyName>DisableBgpRoutePropagation</PropertyName>
1962+
</TableColumnItem>
19551963
<TableColumnItem>
19561964
<Alignment>Left</Alignment>
19571965
<PropertyName>State</PropertyName>

0 commit comments

Comments
 (0)