Skip to content

Commit e60fe3f

Browse files
author
Anavi Nahar
committed
Added missing examples to help md files
1 parent 763d2dc commit e60fe3f

19 files changed

+303
-30
lines changed

src/ResourceManager/Network/Commands.Network/help/Add-AzureRmNetworkSecurityRuleConfig.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,15 @@ The **Add-AzureRmNetworkSecurityRuleConfig** cmdlet adds a network security rule
2525

2626
## EXAMPLES
2727

28-
### 1:
28+
### 1: Adding a network security group
2929
```
30-
30+
Get-AzureRmNetworkSecurityGroup -Name nsg1 -ResourceGroupName rg1 |
31+
Add-AzureRmNetworkSecurityRuleConfig -Name rdp-rule -Description "Allow RDP" -Access
32+
Allow -Protocol Tcp -Direction Inbound -Priority 100 -SourceAddressPrefix Internet
33+
-SourcePortRange * -DestinationAddressPrefix * -DestinationPortRange 3389 |
34+
Set-AzureRmNetworkSecurityGroup
3135
```
36+
The first command retrieves an Azure network security group named "nsg1" from resource group "rg1". The second command dds a network security rule named "rdp-rule" that allows traffic from internet on port 3389 to the retrieved network security group object. Persists the modified Azure network security group.
3237

3338
## PARAMETERS
3439

src/ResourceManager/Network/Commands.Network/help/Add-AzureRmVirtualNetworkSubnetConfig.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,17 @@ The **Add-AzureRmVirtualNetworkSubnetConfig** cmdlet adds a subnet configuration
3131

3232
## EXAMPLES
3333

34-
### 1:
34+
### 1: Add a subnet to an existing virtual network
3535
```
36-
36+
New-AzureRmResourceGroup -Name TestResourceGroup -Location centralus
37+
$frontendSubnet = New-AzureRmVirtualNetworkSubnetConfig -Name frontendSubnet -AddressPrefix "10.0.1.0/24"
38+
$virtualNetwork = New-AzureRmVirtualNetwork -Name MyVirtualNetwork -ResourceGroupName TestResourceGroup -Location centralus -AddressPrefix "10.0.0.0/16" -Subnet $frontendSubnet
39+
Add-AzureRmVirtualNetworkSubnetConfig -Name backendSubnet -VirtualNetwork $virtualNetwork -AddressPrefix "10.0.2.0/24"
40+
$virtualNetwork | Set-AzureRmVirtualNetwork
3741
```
42+
This example first creates a resource group as a container of the resources to be created. It then creates a subnet configuration and uses it to create a virtual network. The
43+
Add-AzureRmVirtualNetworkSubnetConfig is then used to add a subnet to the in-memory representation of the virtual network. The Set-AzureRmVirtualNetwork command updates the existing virtual
44+
network with the new subnet.
3845

3946
## PARAMETERS
4047

src/ResourceManager/Network/Commands.Network/help/Get-AzureRmNetworkSecurityGroup.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,11 @@ The **Get-AzureRmNetworkSecurityGroup** cmdlet gets an Azure network security gr
2929

3030
## EXAMPLES
3131

32-
### 1:
32+
### 1: Retrieve an existing network security group
3333
```
34-
34+
Get-AzureRmNetworkSecurityGroup -Name nsg1 -ResourceGroupName "rg1"
3535
```
36+
This command returns contents of Azure network security group "nsg1" in resource group "rg1"
3637

3738
## PARAMETERS
3839

src/ResourceManager/Network/Commands.Network/help/Get-AzureRmNetworkSecurityRuleConfig.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,20 @@ The **Get-AzureRmNetworkSecurityRuleConfig** cmdlet gets a network security rule
2222

2323
## EXAMPLES
2424

25-
### 1:
25+
### 1: Retrieving a network security rule config
2626
```
27+
Get-AzureRmNetworkSecurityGroup -Name nsg1 -ResourceGroupName rg1
28+
| Get-AzureRmNetworkSecurityRuleConfig -Name AllowInternetOutBound -DefaultRules
29+
```
30+
This command retrieves the default rule named "AllowInternetOutBound" from Azure network security group named "nsg1" in resource group "rg1"
31+
2732

33+
### 2: Retrieving a network security rule config using only the name
34+
```
35+
Get-AzureRmNetworkSecurityGroup -Name nsg1 -ResourceGroupName rg1
36+
| Get-AzureRmNetworkSecurityRuleConfig -Name "rdp-rule"
2837
```
38+
This command retrieves user defined rule named "rdp-rule" from Azure network security group named "nsg1" in resource group "rg1"
2939

3040
## PARAMETERS
3141

src/ResourceManager/Network/Commands.Network/help/Get-AzureRmPublicIpAddress.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,11 @@ The **Get-AzureRmPublicIPAddress** cmdlet gets one or more public IP addresses i
2929

3030
## EXAMPLES
3131

32-
### 1:
32+
### 1: Get a public IP resource
3333
```
34-
34+
$publicIp = Get-AzureRmPublicIpAddress -Name $publicIpName -ResourceGroupName $rgName $publicIp
3535
```
36+
This command gets a public IP address resource with name $publicIPName in the resource group $rgName.
3637

3738
## PARAMETERS
3839

src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetwork.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,11 @@ The **Get-AzureRmVirtualNetwork** cmdlet gets one or more virtual networks n a r
2929

3030
## EXAMPLES
3131

32-
### 1:
32+
### 1: Retrieve a virtual network
3333
```
34-
34+
Get-AzureRmVirtualNetwork -Name MyVirtualNetwork -ResourceGroupName TestResourceGroup
3535
```
36+
This command gets the virtual network named MyVirtualNetwork in the resource group TestResourceGroup
3637

3738
## PARAMETERS
3839

src/ResourceManager/Network/Commands.Network/help/Get-AzureRmVirtualNetworkSubnetConfig.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,18 @@ The **Get-AzureRmVirtualNetworkSubnetConfig** cmdlet gets one or more subnet con
2222

2323
## EXAMPLES
2424

25-
### 1:
25+
### 1: Get a subnet in a virtual network
2626
```
27-
27+
New-AzureRmResourceGroup -Name TestResourceGroup -Location centralus
28+
$frontendSubnet = New-AzureRmVirtualNetworkSubnetConfig -Name frontendSubnet
29+
-AddressPrefix "10.0.1.0/24"
30+
$virtualNetwork = New-AzureRmVirtualNetwork -Name MyVirtualNetwork -ResourceGroupName
31+
TestResourceGroup -Location centralus -AddressPrefix "10.0.0.0/16" -Subnet $frontendSubnet
32+
Get-AzureRmVirtualNetworkSubnetConfig -Name frontendSubnet -VirtualNetwork $virtualNetwork
2833
```
2934

35+
This example creates a resource group and a virtual network with a single subnet in that resource group. It then retrieves data about that subnet.
36+
3037
## PARAMETERS
3138

3239
### -Name

src/ResourceManager/Network/Commands.Network/help/New-AzureRmLoadBalancerRuleConfig.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,20 @@ The **New-AzureRmLoadBalancerRuleConfig** cmdlet creates a rule configuration fo
3333

3434
## EXAMPLES
3535

36-
### 1:
36+
### 1: Creating a rule configuration for an Azure Load Balancer
3737
```
38-
38+
PS C:\> $publicip = New-AzureRmPublicIpAddress -ResourceGroupName "MyResourceGroup"
39+
-name MyPublicIP -location 'West US' -AllocationMethod Dynamic
40+
PS C:\> $frontend = New-AzureRmLoadBalancerFrontendIpConfig -Name MyFrontEnd
41+
-PublicIpAddress $publicip
42+
PS C:\> $probe = New-AzureRmLoadBalancerProbeConfig -Name MyProbe -Protocol http -Port
43+
80 -IntervalInSeconds 15 -ProbeCount 2 -RequestPath healthcheck.aspx
44+
PS C:\> New-AzureRmLoadBalancerRuleConfig -Name "MyLBrule" -FrontendIPConfiguration
45+
$frontend -BackendAddressPool $backendAddressPool -Probe $probe -Protocol Tcp
46+
-FrontendPort 80 -BackendPort 80 -IdleTimeoutInMinutes 15 -EnableFloatingIP
47+
-LoadDistribution SourceIP
3948
```
49+
The first three commands set up a public IP, a front end, and a probe for the rule configuration in the forth command. The forth command creates a new rule called MyLBrule with certain specifications.
4050

4151
## PARAMETERS
4252

src/ResourceManager/Network/Commands.Network/help/New-AzureRmNetworkSecurityGroup.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,30 @@ The **New-AzureRmNetworkSecurityGroup** cmdlet creates an Azure network security
2424

2525
## EXAMPLES
2626

27-
### 1:
27+
### 1: Create a new network securtiy group
2828
```
29+
New-AzureRmNetworkSecurityGroup -Name "nsg1" -ResourceGroupName "rg1" -Location "westus"
30+
31+
```
32+
This command ceates a new Azure network security group named "nsg1" in resource group "rg1" in location "westus".
2933

34+
### 2: Create a detailed network security group
35+
```
36+
$rule1 = New-AzureRmNetworkSecurityRuleConfig -Name rdp-rule -Description "Allow RDP"
37+
-Access Allow -Protocol Tcp -Direction Inbound -Priority 100 -SourceAddressPrefix
38+
Internet -SourcePortRange * -DestinationAddressPrefix * -DestinationPortRange 3389
39+
40+
$rule2 = New-AzureRmNetworkSecurityRuleConfig -Name web-rule -Description "Allow HTTP"
41+
-Access Allow -Protocol Tcp -Direction Inbound -Priority 101 -SourceAddressPrefix
42+
Internet -SourcePortRange * -DestinationAddressPrefix * -DestinationPortRange 80
43+
44+
$nsg = New-AzureRmNetworkSecurityGroup -ResourceGroupName TestRG -Location westus -Name
45+
"NSG-FrontEnd" -SecurityRules $rule1,$rule2
3046
```
47+
Step:1 Create a security rule allowing access from the Internet to port 3389.
48+
Step:2 Create a security rule allowing access from the Internet to port 80.
49+
Step:3 Add the rules created above to a new NSG named NSG-FrontEnd.
50+
3151

3252
## PARAMETERS
3353

src/ResourceManager/Network/Commands.Network/help/New-AzureRmNetworkSecurityRuleConfig.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,21 @@ The **New-AzureRmNetworkSecurityRuleConfig** cmdlet creates an Azure network sec
2424

2525
## EXAMPLES
2626

27-
### 1:
27+
### 1: Create a network security rule to allow RDP
2828
```
29+
$rule1 = New-AzureRmNetworkSecurityRuleConfig -Name rdp-rule -Description "Allow RDP"
30+
-Access Allow -Protocol Tcp -Direction Inbound -Priority 100 -SourceAddressPrefix
31+
Internet -SourcePortRange * -DestinationAddressPrefix * -DestinationPortRange 3389
32+
```
33+
This command creates a security rule allowing access from the Internet to port 3389
2934

35+
### 2: Create a network security rule that allows HTTP
36+
```
37+
$rule2 = New-AzureRmNetworkSecurityRuleConfig -Name web-rule -Description "Allow HTTP"
38+
-Access Allow -Protocol Tcp -Direction Inbound -Priority 101 -SourceAddressPrefix
39+
Internet -SourcePortRange * -DestinationAddressPrefix * -DestinationPortRange 80
3040
```
41+
This command creates a security rule allowing access from the Internet to port 80
3142

3243
## PARAMETERS
3344

src/ResourceManager/Network/Commands.Network/help/New-AzureRmPublicIpAddress.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,25 @@ The **New-AzureRmPublicIpAddress** cmdlet creates a public IP address.
2424

2525
## EXAMPLES
2626

27-
### 1:
27+
### 1: Create a new public IP address
2828
```
29-
29+
$publicIp = New-AzureRmPublicIpAddress -Name $publicIpName -ResourceGroupName $rgName `
30+
-AllocationMethod Static -DomainNameLabel $dnsPrefix -Location $location
31+
```
32+
This command creates a new public IP address resource.A DNS record is created for $dnsPrefix.$location.cloudapp.azure.com pointing to the public IP address of this resource. A public IP address is immediately allocated to this resource as the -AllocationMethod is specified as 'Static'. If it is specified as 'Dynamic', a public IP address gets allocated only when you start (or create) the associated resource (like a VM or load balancer).
33+
34+
### 2: Create a public IP address with a reverse FQDN
3035
```
36+
$publicIp = New-AzureRmPublicIpAddress -Name $publicIpName -ResourceGroupName $rgName `
37+
-AllocationMethod Static -DomainNameLabel $dnsPrefix -Location $location -ReverseFqdn
38+
$customFqdn
39+
```
40+
41+
This command creates a new public IP address resource.
42+
With the -ReverseFqdn parameter, Azure creates a DNS PTR record (reverse-lookup) for the
43+
public IP address allocated to this resource, pointing to the $customFqdn specified in
44+
the command. As a pre-requisite, the $customFqdn (say webapp.contoso.com) should have a
45+
DNS CNAME record (forward-lookup) pointing to $dnsPrefix.$location.cloudapp.azure.com.
3146

3247
## PARAMETERS
3348

src/ResourceManager/Network/Commands.Network/help/New-AzureRmVirtualNetwork.md

Lines changed: 52 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,59 @@ The **New-AzureRmVirtualNetwork** cmdlet creates an Azure virtual network.
2828

2929
### 1:
3030
```
31-
31+
New-AzureRmResourceGroup -Name TestResourceGroup -Location centralus
32+
$frontendSubnet = New-AzureRmVirtualNetworkSubnetConfig -Name frontendSubnet
33+
-AddressPrefix "10.0.1.0/24"
34+
$backendSubnet = New-AzureRmVirtualNetworkSubnetConfig -Name backendSubnet -AddressPrefix
35+
"10.0.2.0/24"
36+
New-AzureRmVirtualNetwork -Name MyVirtualNetwork -ResourceGroupName TestResourceGroup
37+
-Location centralus -AddressPrefix "10.0.0.0/16" -Subnet $frontendSubnet,$backendSubnet
38+
```
39+
This example creates a virtual network with two subnets. First, a new resource group is
40+
created in the centralus region. Then, the example creates in-memory representations of
41+
two subnets. The New-AzureRmVirtualNetworkSubnetConfig cmdlet will not create any subnet
42+
on the server side. There is one subnet called frontendSubnet and one subnet called
43+
backendSubnet. The New-AzureRmVirtualNetwork cmdlet then creates a virtual network using
44+
the CIDR 10.0.0.0/16 as the address prefix and two subnets.
45+
### 2: Create a virtual network with DNS settings
46+
```
47+
New-AzureRmResourceGroup -Name TestResourceGroup -Location centralus
48+
$frontendSubnet = New-AzureRmVirtualNetworkSubnetConfig -Name frontendSubnet
49+
-AddressPrefix "10.0.1.0/24"
50+
$backendSubnet = New-AzureRmVirtualNetworkSubnetConfig -Name backendSubnet -AddressPrefix
51+
"10.0.2.0/24"
52+
New-AzureRmVirtualNetwork -Name MyVirtualNetwork -ResourceGroupName TestResourceGroup
53+
-Location centralus -AddressPrefix "10.0.0.0/16" -Subnet $frontendSubnet,$backendSubnet
54+
-DnsServer 10.0.1.5,10.0.1.6
55+
```
56+
This example create a virtual network with two subnets and two DNS servers. The effect of
57+
specifying the DNS servers on the virtual network is that the NICs/VMs that are deployed
58+
into this virtual network inherit these DNS servers as defaults. These defaults can be
59+
overwritten per NIC through a NIC-level setting. If no DNS servers are specified on a
60+
VNET and no DNS servers on the NICs, then the default Azure DNS servers are used for DNS
61+
resolution.
62+
### 3: Create a virtual network with a subnet referencing a network security group
63+
```
64+
New-AzureRmResourceGroup -Name TestResourceGroup -Location centralus
65+
$rdpRule = New-AzureRmNetworkSecurityRuleConfig -Name rdp-rule -Description "Allow RDP"
66+
-Access Allow -Protocol Tcp -Direction Inbound -Priority 100 -SourceAddressPrefix
67+
Internet -SourcePortRange * -DestinationAddressPrefix * -DestinationPortRange 3389
68+
$networkSecurityGroup = New-AzureRmNetworkSecurityGroup -ResourceGroupName
69+
TestResourceGroup -Location centralus -Name "NSG-FrontEnd" -SecurityRules $rdpRule
70+
$frontendSubnet = New-AzureRmVirtualNetworkSubnetConfig -Name frontendSubnet
71+
-AddressPrefix "10.0.1.0/24" -NetworkSecurityGroup $networkSecurityGroup
72+
$backendSubnet = New-AzureRmVirtualNetworkSubnetConfig -Name backendSubnet -AddressPrefix
73+
"10.0.2.0/24" -NetworkSecurityGroup $networkSecurityGroup
74+
New-AzureRmVirtualNetwork -Name MyVirtualNetwork -ResourceGroupName TestResourceGroup
75+
-Location centralus -AddressPrefix "10.0.0.0/16" -Subnet $frontendSubnet,$backendSubnet
3276
```
77+
This example creates a virtual network with subnets that reference a network security
78+
group. First, the example creates a resource group as a container for the resources that
79+
will be created. Then, a network security group is created that allows inbound RDP
80+
access, but otherwise enforces the default network security group rules. The
81+
New-AzureRmVirtualNetworkSubnetConfig cmdlet then creates in-memory representations of
82+
two subnets that both reference the network security group that was created. The
83+
New-AzureRmVirtualNetwork command then creates the virtual network.
3384

3485
## PARAMETERS
3586

src/ResourceManager/Network/Commands.Network/help/New-AzureRmVirtualNetworkSubnetConfig.md

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,29 @@ New-AzureRmVirtualNetworkSubnetConfig -Name <String> -AddressPrefix <String> [-N
3131

3232
## EXAMPLES
3333

34-
### 1:
35-
```
34+
## EXAMPLES
3635

36+
### 1: Create a virtual network with two subnets and a network security group
37+
```
38+
New-AzureRmResourceGroup -Name TestResourceGroup -Location centralus
39+
$rdpRule = New-AzureRmNetworkSecurityRuleConfig -Name rdp-rule -Description "Allow RDP"
40+
-Access Allow -Protocol Tcp -Direction Inbound -Priority 100 -SourceAddressPrefix
41+
Internet -SourcePortRange * -DestinationAddressPrefix * -DestinationPortRange 3389
42+
$networkSecurityGroup = New-AzureRmNetworkSecurityGroup -ResourceGroupName
43+
TestResourceGroup -Location centralus -Name "NSG-FrontEnd" -SecurityRules $rdpRule
44+
$frontendSubnet = New-AzureRmVirtualNetworkSubnetConfig -Name frontendSubnet
45+
-AddressPrefix "10.0.1.0/24" -NetworkSecurityGroup $networkSecurityGroup
46+
$backendSubnet = New-AzureRmVirtualNetworkSubnetConfig -Name backendSubnet -AddressPrefix
47+
"10.0.2.0/24" -NetworkSecurityGroup $networkSecurityGroup
48+
New-AzureRmVirtualNetwork -Name MyVirtualNetwork -ResourceGroupName TestResourceGroup
49+
-Location centralus -AddressPrefix "10.0.0.0/16" -Subnet $frontendSubnet,$backendSubnet
3750
```
51+
This example creates two new subnet configurations using the
52+
New-AzureRmVirtualSubnetConfig cmdlet, and then uses them to create a virtual network.
53+
The New-AzureRmVirtualSubnetConfig template only creates an in-memory representation of
54+
the subnet. In this example, the frontendSubnet has CIDR 10.0.1.0/24 and references a
55+
network security group that allows RDP access. The backendSubnet has CIDR 10.0.2.0/24 and
56+
references the same network security group.
3857

3958
## PARAMETERS
4059

src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmPublicIpAddress.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,11 @@ The **Remove-AzureRmPublicIpAddress** cmdlet removes an Azure public IP address.
2323

2424
## EXAMPLES
2525

26-
### 1:
26+
### 1: Remove a public IP address resource
2727
```
28-
28+
Remove-AzureRmPublicIpAddress -Name $publicIpName -ResourceGroupName $rgName
2929
```
30+
This command removes the public IP address resource named $publicIpName in the resource group $rgName.
3031

3132
## PARAMETERS
3233

src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmVirtualNetwork.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,20 @@ The **Remove-AzureRmVirtualNetwork** cmdlet removes an Azure virtual network.
2323

2424
## EXAMPLES
2525

26-
### 1:
26+
### 1: Create and delete a virtual network
2727
```
28-
28+
New-AzureRmResourceGroup -Name TestResourceGroup -Location centralus
29+
$frontendSubnet = New-AzureRmVirtualNetworkSubnetConfig -Name frontendSubnet
30+
-AddressPrefix "10.0.1.0/24"
31+
$backendSubnet = New-AzureRmVirtualNetworkSubnetConfig -Name backendSubnet -AddressPrefix
32+
"10.0.2.0/24"
33+
34+
New-AzureRmVirtualNetwork -Name MyVirtualNetwork -ResourceGroupName TestResourceGroup
35+
-Location centralus -AddressPrefix "10.0.0.0/16" -Subnet $frontendSubnet,$backendSubnet
36+
37+
Remove-AzureRmVirtualNetwork -Name MyVirtualNetwork -ResourceGroupName TestResourceGroup
2938
```
39+
This example creates a virtual network in a resource group and then immediately deletes it. To suppress the prompt when deleting the virtual network, use the -Force flag.
3040

3141
## PARAMETERS
3242

src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmVirtualNetworkSubnetConfig.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,27 @@ The **Remove-AzureRmVirtualNetworkSubnetConfig** cmdlet removes a subnet from an
2222

2323
## EXAMPLES
2424

25-
### 1:
25+
### 1: Remove a subnet from a virtual network and update the virtual network
2626
```
27+
New-AzureRmResourceGroup -Name TestResourceGroup -Location centralus
28+
$frontendSubnet = New-AzureRmVirtualNetworkSubnetConfig -Name frontendSubnet
29+
-AddressPrefix "10.0.1.0/24"
2730
31+
$backendSubnet = New-AzureRmVirtualNetworkSubnetConfig -Name backendSubnet -AddressPrefix
32+
"10.0.2.0/24"
33+
34+
$virtualNetwork = New-AzureRmVirtualNetwork -Name MyVirtualNetwork -ResourceGroupName
35+
TestResourceGroup -Location centralus -AddressPrefix "10.0.0.0/16" -Subnet
36+
$frontendSubnet,$backendSubnet
37+
38+
Remove-AzureRmVirtualNetworkSubnetConfig -Name backendSubnet -VirtualNetwork
39+
$virtualNetwork
40+
$virtualNetwork | Set-AzureRmVirtualNetwork
2841
```
42+
This example creates a resource group and a virtual network with two subnets. It then
43+
uses the Remove-AzureRmVirtualNetworkSubnetConfig command to remove the backend subnet
44+
from the in-memory representation of the virtual network. Set-AzureRmVirtualNetwork is
45+
then called to modify the virtual network on the server side.
2946

3047
## PARAMETERS
3148

0 commit comments

Comments
 (0)