Skip to content

Commit ee49b80

Browse files
author
Maddie Clayton
authored
Merge pull request Azure#7223 from wdehrich/hostedWorkloads_PS
Hosted workloads ps
2 parents 13ea47a + 6e318e7 commit ee49b80

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

src/ResourceManager/Network/Commands.Network/ChangeLog.md

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

2121
## Current Release
22+
* Added new HostedWorkloads property for PSNetworkInterface
2223
* Updated cmdlet New-AzureRmVirtualNetworkSubnetConfig, Set-AzureRmVirtualNetworkSubnetConfig, Add-AzureRmVirtualNetworkSubnetConfig, Get-AzureRmVirtualNetworkSubnetConfig, Add-AzureRmApplicationGatewayAuthenticationCertificate, Add-AzureRmApplicationGatewayFrontendIPConfig, New-AzureRmApplicationGatewayFrontendIPConfig, Set-AzureRmApplicationGatewayFrontendIPConfig, Add-AzureRmApplicationGatewayIPConfiguration, New-AzureRmApplicationGatewayIPConfiguration, Set-AzureRmApplicationGatewayIPConfiguration, Add-AzureRmNetworkInterfaceIpConfig, New-AzureRmNetworkInterfaceIpConfig, Set-AzureRmNetworkInterfaceIpConfig, New-AzureRmVirtualNetworkGatewayIpConfig, Add-AzureRmVirtualNetworkGatewayIpConfig, Set-AzureRmLoadBalancerFrontendIpConfig, Add-AzureRmLoadBalancerFrontendIpConfig, New-AzureRmLoadBalancerFrontendIpConfig and New-AzureRmNetworkInterface by adding support for multiple AddressPrefixes in subnet
2324
* Added new commands for feature: Azure Firewall via ARM
2425
- Added Get-AzureRmFirewall

src/ResourceManager/Network/Commands.Network/Microsoft.Azure.Commands.Network.format.ps1xml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -642,7 +642,7 @@
642642
<Label>VpnClientRootCertificates</Label>
643643
<PropertyName>VpnClientRootCertificatesText</PropertyName>
644644
</ListItem>
645-
<ListItem>
645+
<ListItem>
646646
<Label>VpnClientIpsecPolicies</Label>
647647
<PropertyName>VpnClientIpsecPoliciesText</PropertyName>
648648
</ListItem>
@@ -751,7 +751,7 @@
751751
</ListEntries>
752752
</ListControl>
753753
</View>
754-
<View>
754+
<View>
755755
<Name>Microsoft.Azure.Commands.Network.Models.PSSubnet</Name>
756756
<ViewSelectedBy>
757757
<TypeName>Microsoft.Azure.Commands.Network.Models.PSSubnet</TypeName>
@@ -1140,7 +1140,7 @@
11401140
<Label>EnableIPForwarding</Label>
11411141
<PropertyName>EnableIPForwarding</PropertyName>
11421142
</ListItem>
1143-
<ListItem>
1143+
<ListItem>
11441144
<Label>EnableAcceleratedNetworking</Label>
11451145
<PropertyName>EnableAcceleratedNetworking</PropertyName>
11461146
</ListItem>
@@ -2629,7 +2629,7 @@
26292629
</ListEntries>
26302630
</ListControl>
26312631
</View>
2632-
<View>
2632+
<View>
26332633
<Name>Microsoft.Azure.Commands.Network.Models.PSBgpServiceCommunity</Name>
26342634
<ViewSelectedBy>
26352635
<TypeName>Microsoft.Azure.Commands.Network.Models.PSBgpServiceCommunity</TypeName>
@@ -2706,10 +2706,6 @@
27062706
<ListEntries>
27072707
<ListEntry>
27082708
<ListItems>
2709-
<ListItem>
2710-
<Label>LinkedResourceType</Label>
2711-
<PropertyName>LinkedResourceType</PropertyName>
2712-
</ListItem>
27132709
<ListItem>
27142710
<Label>Link</Label>
27152711
<PropertyName>Link</PropertyName>

src/ResourceManager/Network/Commands.Network/Models/PSNetworkInterface.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ public class PSNetworkInterface : PSTopLevelResource, INetworkInterfaceReference
3939
[Ps1Xml(Target = ViewControl.Table)]
4040
public bool? EnableIPForwarding { get; set; }
4141

42+
public List<string> HostedWorkloads { get; set; }
43+
4244
public PSNetworkSecurityGroup NetworkSecurityGroup { get; set; }
4345

4446
[Ps1Xml(Target = ViewControl.Table)]

0 commit comments

Comments
 (0)