VirtualMachineScaleSetNetworkProfile Constructors

Definition

Overloads

VirtualMachineScaleSetNetworkProfile()

Initializes a new instance of the VirtualMachineScaleSetNetworkProfile class.

VirtualMachineScaleSetNetworkProfile(ApiEntityReference, IList<VirtualMachineScaleSetNetworkConfiguration>, String)

Initializes a new instance of the VirtualMachineScaleSetNetworkProfile class.

VirtualMachineScaleSetNetworkProfile()

Initializes a new instance of the VirtualMachineScaleSetNetworkProfile class.

public VirtualMachineScaleSetNetworkProfile ();
Public Sub New ()

Applies to

VirtualMachineScaleSetNetworkProfile(ApiEntityReference, IList<VirtualMachineScaleSetNetworkConfiguration>, String)

Initializes a new instance of the VirtualMachineScaleSetNetworkProfile class.

public VirtualMachineScaleSetNetworkProfile (Microsoft.Azure.Management.Compute.Models.ApiEntityReference healthProbe = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration> networkInterfaceConfigurations = default, string networkApiVersion = default);
new Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkProfile : Microsoft.Azure.Management.Compute.Models.ApiEntityReference * System.Collections.Generic.IList<Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration> * string -> Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkProfile
Public Sub New (Optional healthProbe As ApiEntityReference = Nothing, Optional networkInterfaceConfigurations As IList(Of VirtualMachineScaleSetNetworkConfiguration) = Nothing, Optional networkApiVersion As String = Nothing)

Parameters

healthProbe
ApiEntityReference

A reference to a load balancer probe used to determine the health of an instance in the virtual machine scale set. The reference will be in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/probes/{probeName}'.

networkInterfaceConfigurations
IList<VirtualMachineScaleSetNetworkConfiguration>

The list of network configurations.

networkApiVersion
String

specifies the Microsoft.Network API version used when creating networking resources in the Network Interface Configurations for Virtual Machine Scale Set with orchestration mode 'Flexible'. Possible values include: '2020-11-01'

Applies to