IWithFrontend<ReturnT>.FromExistingSubnet Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
FromExistingSubnet(ISubnet) |
Specifies an existing private subnet to receive network traffic from. If this load balancer already has a frontend referencing this subnet, that is the frontend that will be used. Else, an automatically named new private frontend will be created implicitly on the load balancer. |
FromExistingSubnet(INetwork, String) |
Specifies an existing private subnet to receive network traffic from. If this load balancer already has a frontend referencing this subnet, that is the frontend that will be used. Else, an automatically named new private frontend will be created implicitly on the load balancer. |
FromExistingSubnet(String, String) |
Specifies an existing private subnet to receive network traffic from. If this load balancer already has a frontend referencing this subnet, that is the frontend that will be used. Else, an automatically named new private frontend will be created implicitly on the load balancer. |
FromExistingSubnet(ISubnet)
Specifies an existing private subnet to receive network traffic from. If this load balancer already has a frontend referencing this subnet, that is the frontend that will be used. Else, an automatically named new private frontend will be created implicitly on the load balancer.
public ReturnT FromExistingSubnet (Microsoft.Azure.Management.Network.Fluent.ISubnet subnet);
abstract member FromExistingSubnet : Microsoft.Azure.Management.Network.Fluent.ISubnet -> 'ReturnT
Public Function FromExistingSubnet (subnet As ISubnet) As ReturnT
Parameters
- subnet
- ISubnet
An existing subnet.
Returns
Applies to
FromExistingSubnet(INetwork, String)
Specifies an existing private subnet to receive network traffic from. If this load balancer already has a frontend referencing this subnet, that is the frontend that will be used. Else, an automatically named new private frontend will be created implicitly on the load balancer.
public ReturnT FromExistingSubnet (Microsoft.Azure.Management.Network.Fluent.INetwork network, string subnetName);
abstract member FromExistingSubnet : Microsoft.Azure.Management.Network.Fluent.INetwork * string -> 'ReturnT
Public Function FromExistingSubnet (network As INetwork, subnetName As String) As ReturnT
Parameters
- network
- INetwork
An existing network.
- subnetName
- String
The name of an existing subnet within the specified network.
Returns
Applies to
FromExistingSubnet(String, String)
Specifies an existing private subnet to receive network traffic from. If this load balancer already has a frontend referencing this subnet, that is the frontend that will be used. Else, an automatically named new private frontend will be created implicitly on the load balancer.
public ReturnT FromExistingSubnet (string networkResourceId, string subnetName);
abstract member FromExistingSubnet : string * string -> 'ReturnT
Public Function FromExistingSubnet (networkResourceId As String, subnetName As String) As ReturnT
Parameters
- networkResourceId
- String
The resource ID of an existing network.
- subnetName
- String
The name of an existing subnet within the specified network.
Returns
Applies to
Azure SDK for .NET