File tree Expand file tree Collapse file tree 2 files changed +23
-2
lines changed
src/ResourceManager/Network/Commands.Network Expand file tree Collapse file tree 2 files changed +23
-2
lines changed Original file line number Diff line number Diff line change 1
- <!--
1
+ <!--
2
2
Please leave this section at the top of the change log.
3
3
4
4
Changes for the current release should go under the section titled "Current Release", and should adhere to the following format:
21
21
## Current Release
22
22
* Updated all help files to include full parameter types and correct input/output types.
23
23
* Added examples for LoadBalancerInboundNatPoolConfig cmdlets.
24
+ * Added example for Set-AzureRmLocalNetworkGateway
24
25
25
26
## Version 6.4.0
26
27
* Updated below cmdlets for Application Gateway
Original file line number Diff line number Diff line change @@ -24,7 +24,27 @@ Set-AzureRmLocalNetworkGateway -LocalNetworkGateway <PSLocalNetworkGateway>
24
24
The ** Set-AzureRmLocalNetworkGateway** cmdlet modifies a local network gateway.
25
25
26
26
## EXAMPLES
27
-
27
+ ### Example 1
28
+ Set configuration for an existing gateway
29
+ ```
30
+ $lgw = Get-AzureRmLocalNetworkGateway -Name myLocalGW -ResourceGroupName myRG
31
+ Set-AzureRmLocalNetworkGateway -LocalNetworkGateway $lgw
32
+
33
+ Name : myLocalGW
34
+ ResourceGroupName : TestRG1
35
+ Location : westus
36
+ Id : /subscriptions/81ab786c-56eb-4a4d-bb5f-f60329772466/resourceGroups/TestRG1/providers/Microso
37
+ ft.Network/localNetworkGateways/myLocalGW
38
+ Etag : W/"d2de6968-315e-411d-a4b8-a8c335abe61b"
39
+ ResourceGuid : 393acf8b-dbb8-4b08-a9ea-c714570710e1
40
+ ProvisioningState : Succeeded
41
+ Tags :
42
+ GatewayIpAddress : 1.2.3.4
43
+ LocalNetworkAddressSpace : {
44
+ "AddressPrefixes": []
45
+ }
46
+ BgpSettings : null
47
+ ```
28
48
## PARAMETERS
29
49
30
50
### -AddressPrefix
You can’t perform that action at this time.
0 commit comments