|
403 | 403 | <maml:description/>
|
404 | 404 | </dev:type>
|
405 | 405 | <maml:description>
|
406 |
| - <maml:para>System.String</maml:para> |
| 406 | + <maml:para> |
| 407 | +System.String</maml:para> |
407 | 408 | </maml:description>
|
408 | 409 | </command:inputType>
|
409 | 410 | </command:inputTypes>
|
@@ -5170,12 +5171,47 @@ PS C:\> Get-AzureRmLoadBalancer -Name "myLB" -ResourceGroupName &qu
|
5170 | 5171 | <maml:introduction>
|
5171 | 5172 | <maml:paragraph>PS C:\></maml:paragraph>
|
5172 | 5173 | </maml:introduction>
|
5173 |
| - <dev:code></dev:code> |
| 5174 | + <dev:code>PS C:\> $slb = Get-AzureRmLoadBalancer -Name "MyLoadBalancer" -ResourceGroupName "MyResourceGroup" |
| 5175 | + |
| 5176 | +PS C:\> $slb | Add-AzureRmLoadBalancerInboundNatRuleConfig -Name "NewNatRule" -FrontendIPConfiguration $slb.FrontendIpConfigurations[0] -Protocol "Tcp" -FrontendPort 3350 -BackendPort 3350 -EnableFloatingIP |
| 5177 | +</dev:code> |
5174 | 5178 | <dev:remarks>
|
| 5179 | + <maml:para>The first command stores the existing load balancer called "MyloadBalancer" into a varibale called $slb. The second command then adds an Inbound NAT rule configuration with appropriate details. Note that these are chosen as an example and these may change based on one's loadbalancer.</maml:para> |
5175 | 5180 | <maml:para />
|
5176 | 5181 | <maml:para />
|
5177 |
| - <maml:para /> |
5178 |
| - <maml:para></maml:para> |
| 5182 | + <maml:para>Name : MyLoadBalancer |
| 5183 | +ResourceGroupName : MyResourceGroup |
| 5184 | +Location : westus |
| 5185 | +Id : /subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/MyResourceGroup/providers/Microsoft.Network/loadBalancers/MyLoadBalancer |
| 5186 | +Etag : W/"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" |
| 5187 | +ResourceGuid : xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx |
| 5188 | +ProvisioningState : Succeeded |
| 5189 | +Tags : |
| 5190 | +FrontendIpConfigurations : [] |
| 5191 | +BackendAddressPools : [] |
| 5192 | +LoadBalancingRules : [] |
| 5193 | +Probes : [] |
| 5194 | +InboundNatRules : [ |
| 5195 | + |
| 5196 | + { |
| 5197 | + "Name": "NewNatRule", |
| 5198 | + "Etag": "W/\"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx\"", |
| 5199 | + "Id": "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/MyResourceGroup/providers/Microsoft.Network/loadBalancers/MyLoadBalancer/inbo |
| 5200 | + undNatRules/NewRule", |
| 5201 | + "FrontendPort": 81, |
| 5202 | + "IdleTimeoutInMinutes": 4, |
| 5203 | + "EnableFloatingIP": true, |
| 5204 | + "FrontendIPConfiguration": { |
| 5205 | + "Id": "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/MyResourceGroup/providers/Microsoft.Network/loadBalancers/MyLoadBalancer/fr |
| 5206 | + ontendIPConfigurations/MyFrontEnd" |
| 5207 | + }, |
| 5208 | + "BackendPort": 8181, |
| 5209 | + "Protocol": "Tcp", |
| 5210 | + "ProvisioningState": "Succeeded" |
| 5211 | + } |
| 5212 | + ] |
| 5213 | +InboundNatPools : [] |
| 5214 | +</maml:para> |
5179 | 5215 | </dev:remarks>
|
5180 | 5216 | <command:commandLines>
|
5181 | 5217 | <command:commandLine>
|
@@ -5952,12 +5988,43 @@ PS C:\> Get-AzureRmLoadBalancer -Name "myLB" -ResourceGroupName &qu
|
5952 | 5988 | <maml:introduction>
|
5953 | 5989 | <maml:paragraph>PS C:\></maml:paragraph>
|
5954 | 5990 | </maml:introduction>
|
5955 |
| - <dev:code></dev:code> |
| 5991 | + <dev:code> |
| 5992 | +PS C:\> $slb = Get-AzureRmLoadBalancer -Name "MyLoadBalancer" -ResourceGroupName "MyResourceGroup" |
| 5993 | + |
| 5994 | +PS C:\> $slb | Add-AzureRmLoadBalancerRuleConfig -Name "NewRule" -FrontendIPConfiguration $slb.FrontendIpConfigurations[0] -Protocol "Tcp" -FrontendPort 3350 -BackendPort 3350 -EnableFloatingIP |
| 5995 | +</dev:code> |
5956 | 5996 | <dev:remarks>
|
| 5997 | + <maml:para>The first command stores the existing load balancer called "MyLoadBalancer" in variable $slb. The second command then adds the rule called "NewRule" with certain specifications.</maml:para> |
| 5998 | + <maml:para>Below is what sample output looks like for this specific scenario:</maml:para> |
5957 | 5999 | <maml:para />
|
5958 | 6000 | <maml:para />
|
5959 |
| - <maml:para /> |
5960 |
| - <maml:para></maml:para> |
| 6001 | + <maml:para>Name : MyLoadBalancer |
| 6002 | +ResourceGroupName : MyResourceGroup |
| 6003 | +Location : westus |
| 6004 | +Id : /subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/MyResourceGroup/providers/Microsoft.Network/loadBalancers/MyLoadBalancer |
| 6005 | +Etag : W/"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" |
| 6006 | +ResourceGuid : xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx |
| 6007 | +ProvisioningState : Succeeded |
| 6008 | +Tags : |
| 6009 | +FrontendIpConfigurations : [] |
| 6010 | +BackendAddressPools : [] |
| 6011 | +LoadBalancingRules : [ |
| 6012 | + "Name": "NewRule", |
| 6013 | + "Id": "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/MyResourceGroup/providers/Microsoft.Network/loadBalancers/MyLoadBalancer/inbo |
| 6014 | + undNatRules/NewRule", |
| 6015 | + "FrontendPort": 3350, |
| 6016 | + "EnableFloatingIP": true, |
| 6017 | + "FrontendIPConfiguration": { |
| 6018 | + "Id": "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/MyResourceGroup/providers/Microsoft.Network/loadBalancers/MyLoadBalancer/fr |
| 6019 | + ontendIPConfigurations/MyFrontEnd" |
| 6020 | + }, |
| 6021 | + "BackendPort": 3350, |
| 6022 | + "Protocol": "Tcp" |
| 6023 | + } |
| 6024 | + ] |
| 6025 | +Probes : [] |
| 6026 | +InboundNatRules : [] |
| 6027 | +</maml:para> |
5961 | 6028 | </dev:remarks>
|
5962 | 6029 | <command:commandLines>
|
5963 | 6030 | <command:commandLine>
|
@@ -13591,36 +13658,12 @@ InboundNatPools : []</maml:para>
|
13591 | 13658 | </maml:introduction>
|
13592 | 13659 | <dev:code>PS C:\> $slb = Get-AzureRmLoadBalancer -Name MyLoadBalancer -ResourceGroupName MyResourceGroup
|
13593 | 13660 |
|
13594 |
| -PS C:\> Get-AzureRmLoadBalancerInboundNatRuleConfig -Name "MyinboundNatRule1" -LoadBalancer $slb |
13595 |
| -</dev:code> |
| 13661 | +PS C:\> Get-AzureRmLoadBalancerInboundNatRuleConfig -Name "MyinboundNatRule1" -LoadBalancer $slb</dev:code> |
13596 | 13662 | <dev:remarks>
|
13597 | 13663 | <maml:para>The first command gets the existing load balancer for which the inbound NAT rule is wanted and stores it in the variable slb. The second command then gets the accodiated NAT rule called MyinboundNatRule1.</maml:para>
|
13598 |
| - <maml:para>Below is the sample output:</maml:para> |
13599 | 13664 | <maml:para />
|
13600 | 13665 | <maml:para />
|
13601 |
| - <maml:para>Name : MyinboundNatRule1 |
13602 |
| -Id : /subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/MyResourceGroup/ |
13603 |
| - providers/Microsoft.Network/loadBalancers/MyLoadBalancer/inboundNatRules/Myinbound |
13604 |
| - NatRule1 |
13605 |
| -Etag : W/"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" |
13606 |
| -ProvisioningState : Succeeded |
13607 |
| -Protocol : Tcp |
13608 |
| -FrontendPort : 3389 |
13609 |
| -BackendPort : 3389 |
13610 |
| -IdleTimeoutInMinutes : 15 |
13611 |
| -EnableFloatingIP : True |
13612 |
| -FrontendIPConfiguration : { |
13613 |
| - "Id": "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/ |
13614 |
| - MyResourceGroup/providers/Microsoft.Network/loadBalancers/MyLoadBalancer/frontendIPConfig |
13615 |
| - urations/MyFrontEnd" |
13616 |
| - } |
13617 |
| -BackendIPConfiguration : { |
13618 |
| - "Id": "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/ |
13619 |
| - MyResourceGroup/providers/Microsoft.Network/networkInterfaces/lb-nic1-be/ipConfigur |
13620 |
| - ations/ipconfig1", |
13621 |
| - "Primary": false |
13622 |
| - } |
13623 |
| -</maml:para> |
| 13666 | + <maml:para></maml:para> |
13624 | 13667 | </dev:remarks>
|
13625 | 13668 | <command:commandLines>
|
13626 | 13669 | <command:commandLine>
|
@@ -13804,32 +13847,12 @@ BackendIPConfiguration : {
|
13804 | 13847 | </maml:introduction>
|
13805 | 13848 | <dev:code>PS C:\> $slb = Get-AzureRmLoadBalancer -Name "MyLoadBalancer" -ResourceGroupName "MyResourceGroup"
|
13806 | 13849 |
|
13807 |
| -PS C:\> Get-AzureRmLoadBalancerProbeConfig -Name "MyProbe" -LoadBalancer $slb |
13808 |
| -</dev:code> |
| 13850 | +PS C:\> Get-AzureRmLoadBalancerProbeConfig -Name "MyProbe" -LoadBalancer $slb</dev:code> |
13809 | 13851 | <dev:remarks>
|
13810 | 13852 | <maml:para>The first command gets the load balancer called "MyLoadBalancer" and stores it in the variable $slb. The second command then gets the associated probe configuration called MyProbe.</maml:para>
|
13811 |
| - <maml:para> |
13812 |
| -Below is sample output:</maml:para> |
13813 | 13853 | <maml:para />
|
13814 | 13854 | <maml:para />
|
13815 |
| - <maml:para> |
13816 |
| -Name : MyProbe |
13817 |
| -Id : /subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/MyResourceGroup/provi |
13818 |
| - ders/Microsoft.Network/loadBalancers/MyLoadBalancer/probes/MyProbe |
13819 |
| -Etag : W/"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" |
13820 |
| -ProvisioningState : Succeeded |
13821 |
| -Protocol : Http |
13822 |
| -Port : 80 |
13823 |
| -IntervalInSeconds : 15 |
13824 |
| -NumberOfProbes : 2 |
13825 |
| -RequestPath : healthcheck.aspx |
13826 |
| -LoadBalancingRules : [ |
13827 |
| - { |
13828 |
| - "Id": "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/MyResourceGroup |
13829 |
| - /providers/Microsoft.Network/loadBalancers/MyLoadBalancer/loadBalancingRules/MyLBr |
13830 |
| - uleName" |
13831 |
| - } |
13832 |
| - ]</maml:para> |
| 13855 | + <maml:para></maml:para> |
13833 | 13856 | </dev:remarks>
|
13834 | 13857 | <command:commandLines>
|
13835 | 13858 | <command:commandLine>
|
@@ -14013,35 +14036,12 @@ LoadBalancingRules : [
|
14013 | 14036 | </maml:introduction>
|
14014 | 14037 | <dev:code>PS C:\> $slb = Get-AzureRmLoadBalancer -Name MyLoadBalancer -ResourceGroupName MyResourceGroup
|
14015 | 14038 |
|
14016 |
| -PS C:\> Get-AzureRmLoadBalancerRuleConfig -Name "MyLBrulename" -LoadBalancer $slb |
14017 |
| -</dev:code> |
| 14039 | +PS C:\> Get-AzureRmLoadBalancerRuleConfig -Name "MyLBrulename" -LoadBalancer $slb</dev:code> |
14018 | 14040 | <dev:remarks>
|
14019 | 14041 | <maml:para>The first command gets the load balancer and stores it in the variable $slb. The second command gets the associated rule configuration called MyLBrulename.</maml:para>
|
14020 |
| - <maml:para>Below is sample output:</maml:para> |
14021 | 14042 | <maml:para />
|
14022 | 14043 | <maml:para />
|
14023 |
| - <maml:para>Name : MyLBruleName |
14024 |
| -Id : /subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/MyResourceGroup/provi |
14025 |
| - ders/Microsoft.Network/loadBalancers/MyLoadBalancer/probes/MyLBrulename |
14026 |
| -Etag : W/"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" |
14027 |
| -ProvisioningState : Succeeded |
14028 |
| -Protocol : Tcp |
14029 |
| -FrontendPort : 80 |
14030 |
| -BackendPort : 80 |
14031 |
| -IdleTimeoutInMinutes : 15 |
14032 |
| -v : SourceIP |
14033 |
| -EnableFloatingIP : True |
14034 |
| -FrontendIPConfiguration : { |
14035 |
| - "Id": "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/MyResourceGroup |
14036 |
| - /providers/Microsoft.Network/loadBalancers/MyLoadBalancer//frontendIPConfig |
14037 |
| - urations/MyFrontEnd" |
14038 |
| - } |
14039 |
| -BackendAddressPool : |
14040 |
| -Probe : { |
14041 |
| - "Id": "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/MyResourceGroup |
14042 |
| - /providers/Microsoft.Network/loadBalancers/MyLoadBalancer/probes/MyProbe" |
14043 |
| - |
14044 |
| - }</maml:para> |
| 14044 | + <maml:para></maml:para> |
14045 | 14045 | </dev:remarks>
|
14046 | 14046 | <command:commandLines>
|
14047 | 14047 | <command:commandLine>
|
@@ -45249,16 +45249,52 @@ PS C:\> $slb | Set-AzureRmLoadBalancerFrontendIpConfig -Name "NewFronten
|
45249 | 45249 | </maml:alertSet>
|
45250 | 45250 | <command:examples>
|
45251 | 45251 | <command:example>
|
45252 |
| - <maml:title>-------------------------- 1: --------------------------</maml:title> |
| 45252 | + <maml:title>-------------------------- Example 1 Updating the inbound NAT rule configuration on an existing load balancer --------------------------</maml:title> |
45253 | 45253 | <maml:introduction>
|
45254 | 45254 | <maml:paragraph>PS C:\></maml:paragraph>
|
45255 | 45255 | </maml:introduction>
|
45256 |
| - <dev:code></dev:code> |
| 45256 | + <dev:code>PS C:\> $slb = Get-AzureRmLoadBalancer -Name "MyLoadBalancer" -ResourceGroupName "MyResourceGroup" |
| 45257 | + |
| 45258 | +PS C:\> $slb | Add-AzureRmLoadBalancerInboundNatRuleConfig -Name "NewNatRule" -FrontendIPConfiguration $slb.FrontendIpConfigurations[0] -Protocol "Tcp" -FrontendPort 3350 -BackendPort 3350 -EnableFloatingIP |
| 45259 | + |
| 45260 | +PS C:\> $slb | Set-AzureRmLoadBalancerInboundNatRuleConfig -Name "NewNatRule" -FrontendIPConfiguration $slb.FrontendIpConfigurations[0] -Protocol "Tcp" -FrontendPort 3350 -BackendPort 3350 </dev:code> |
45257 | 45261 | <dev:remarks>
|
| 45262 | + <maml:para>The first command stores the existing load balancer called "MyloadBalancer" into a varibale called $slb. The second command then adds an Inbound NAT rule configuration with certain properties. One of these is enablibling floating IP. However once added, lets assume one no longer wants this properly enabled, then the third command is used to update this for the load balancer using the Set-AzureRmLoadBalancerInboundNatRuleConfig.</maml:para> |
| 45263 | + <maml:para>Notice how the output below has -EnablePloatingIP to false even though when NewNatRule was added it was set to true. Similarly, other properties can be changed using this cmdlet.</maml:para> |
45258 | 45264 | <maml:para />
|
45259 | 45265 | <maml:para />
|
45260 |
| - <maml:para /> |
45261 |
| - <maml:para></maml:para> |
| 45266 | + <maml:para>Name : MyLoadBalancer |
| 45267 | +ResourceGroupName : MyResourceGroup |
| 45268 | +Location : westus |
| 45269 | +Id : /subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/MyResourceGroup/providers/Microsoft.Network/loadBalancers/MyLoadBalancer |
| 45270 | +Etag : W/"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" |
| 45271 | +ResourceGuid : xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx |
| 45272 | +ProvisioningState : Succeeded |
| 45273 | +Tags : |
| 45274 | +FrontendIpConfigurations : [] |
| 45275 | +BackendAddressPools : [] |
| 45276 | +LoadBalancingRules : [] |
| 45277 | +Probes : [] |
| 45278 | +InboundNatRules : [ |
| 45279 | + |
| 45280 | + { |
| 45281 | + "Name": "NewNatRule", |
| 45282 | + "Etag": "W/\"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx\"", |
| 45283 | + "Id": "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/MyResourceGroup/providers/Microsoft.Network/loadBalancers/MyLoadBalancer/inbo |
| 45284 | + undNatRules/NewRule", |
| 45285 | + "FrontendPort": 81, |
| 45286 | + "IdleTimeoutInMinutes": 4, |
| 45287 | + "EnableFloatingIP": false, |
| 45288 | + "FrontendIPConfiguration": { |
| 45289 | + "Id": "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/MyResourceGroup/providers/Microsoft.Network/loadBalancers/MyLoadBalancer/fr |
| 45290 | + ontendIPConfigurations/MyFrontEnd" |
| 45291 | + }, |
| 45292 | + "BackendPort": 8181, |
| 45293 | + "Protocol": "Tcp", |
| 45294 | + "ProvisioningState": "Succeeded" |
| 45295 | + } |
| 45296 | + ] |
| 45297 | +InboundNatPools : []</maml:para> |
45262 | 45298 | </dev:remarks>
|
45263 | 45299 | <command:commandLines>
|
45264 | 45300 | <command:commandLine>
|
@@ -46023,16 +46059,51 @@ PS C:\> $slb | Set-AzureRmLoadBalancerProbeConfig -Name "NewProbe"
|
46023 | 46059 | </maml:alertSet>
|
46024 | 46060 | <command:examples>
|
46025 | 46061 | <command:example>
|
46026 |
| - <maml:title>-------------------------- 1: --------------------------</maml:title> |
| 46062 | + <maml:title>-------------------------- Example 1 Updating a load balancing rule on an existing load balancer --------------------------</maml:title> |
46027 | 46063 | <maml:introduction>
|
46028 | 46064 | <maml:paragraph>PS C:\></maml:paragraph>
|
46029 | 46065 | </maml:introduction>
|
46030 |
| - <dev:code></dev:code> |
| 46066 | + <dev:code>PS C:\> $slb = Get-AzureRmLoadBalancer -Name "MyLoadBalancer" -ResourceGroupName "MyResourceGroup" |
| 46067 | + |
| 46068 | +PS C:\> $slb | $slb | Add-AzureRmLoadBalancerRuleConfig -Name "NewRule" -FrontendIPConfiguration $slb.FrontendIpConfigurations[0] -Protocol "Tcp" -FrontendPort 3350 -BackendPort 3350 -EnableFloatingIP |
| 46069 | + |
| 46070 | + |
| 46071 | +PS C:\> $slb | Set-AzureRmLoadBalancerRuleConfig -Name "NewRule" -FrontendIPConfiguration $slb.FrontendIpConfigurations[0] -Protocol "Tcp" -FrontendPort 3350 -BackendPort 3350 |
| 46072 | + |
| 46073 | + |
| 46074 | +</dev:code> |
46031 | 46075 | <dev:remarks>
|
| 46076 | + <maml:para>The first command stores an existing load balancer called MyLoadBalancer in the variable $slb. The second command adds a load balancing rule called NewRule with certain specifications. One of these is enabling floating IP to be true. However once added, lets assume one no longer wants this properly enabled, then the third command is used to update this for the load balancer using the Set-AzureRmLoadBalancerRuleConfig.</maml:para> |
| 46077 | + <maml:para>Notice how the output below has -EnablePloatingIP to false even though when NewRule was added it was set to true. Similarly, other properties can be changed using this cmdlet. |
| 46078 | +</maml:para> |
46032 | 46079 | <maml:para />
|
46033 | 46080 | <maml:para />
|
46034 |
| - <maml:para /> |
46035 |
| - <maml:para></maml:para> |
| 46081 | + <maml:para>Name : MyLoadBalancer |
| 46082 | +ResourceGroupName : MyResourceGroup |
| 46083 | +Location : westus |
| 46084 | +Id : /subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/MyResourceGroup/providers/Microsoft.Network/loadBalancers/MyLoadBalancer |
| 46085 | +Etag : W/"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" |
| 46086 | +ResourceGuid : xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx |
| 46087 | +ProvisioningState : Succeeded |
| 46088 | +Tags : |
| 46089 | +FrontendIpConfigurations : [] |
| 46090 | +BackendAddressPools : [] |
| 46091 | +LoadBalancingRules : [ |
| 46092 | + "Name": "NewRule", |
| 46093 | + "Id": "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/MyResourceGroup/providers/Microsoft.Network/loadBalancers/MyLoadBalancer/inbo |
| 46094 | + undNatRules/NewRule", |
| 46095 | + "FrontendPort": 3350, |
| 46096 | + "EnableFloatingIP": false, |
| 46097 | + "FrontendIPConfiguration": { |
| 46098 | + "Id": "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/MyResourceGroup/providers/Microsoft.Network/loadBalancers/MyLoadBalancer/fr |
| 46099 | + ontendIPConfigurations/MyFrontEnd" |
| 46100 | + }, |
| 46101 | + "BackendPort": 3350, |
| 46102 | + "Protocol": "Tcp" |
| 46103 | + } |
| 46104 | + ] |
| 46105 | +Probes : [] |
| 46106 | +InboundNatRules : []</maml:para> |
46036 | 46107 | </dev:remarks>
|
46037 | 46108 | <command:commandLines>
|
46038 | 46109 | <command:commandLine>
|
|
0 commit comments