Share via


BackendPool Constructors

Definition

Overloads

BackendPool()

Initializes a new instance of the BackendPool class.

BackendPool(String, String, String, IList<Backend>, SubResource, SubResource, String)

Initializes a new instance of the BackendPool class.

BackendPool()

Initializes a new instance of the BackendPool class.

public BackendPool ();
Public Sub New ()

Applies to

BackendPool(String, String, String, IList<Backend>, SubResource, SubResource, String)

Initializes a new instance of the BackendPool class.

public BackendPool (string id = default, string name = default, string type = default, System.Collections.Generic.IList<Microsoft.Azure.Management.FrontDoor.Models.Backend> backends = default, Microsoft.Azure.Management.FrontDoor.Models.SubResource loadBalancingSettings = default, Microsoft.Azure.Management.FrontDoor.Models.SubResource healthProbeSettings = default, string resourceState = default);
new Microsoft.Azure.Management.FrontDoor.Models.BackendPool : string * string * string * System.Collections.Generic.IList<Microsoft.Azure.Management.FrontDoor.Models.Backend> * Microsoft.Azure.Management.FrontDoor.Models.SubResource * Microsoft.Azure.Management.FrontDoor.Models.SubResource * string -> Microsoft.Azure.Management.FrontDoor.Models.BackendPool
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional backends As IList(Of Backend) = Nothing, Optional loadBalancingSettings As SubResource = Nothing, Optional healthProbeSettings As SubResource = Nothing, Optional resourceState As String = Nothing)

Parameters

id
String

Resource ID.

name
String

Resource name.

type
String

Resource type.

backends
IList<Backend>

The set of backends for this pool

loadBalancingSettings
SubResource

Load balancing settings for a backend pool

healthProbeSettings
SubResource

L7 health probe settings for a backend pool

resourceState
String

Resource status. Possible values include: 'Creating', 'Enabling', 'Enabled', 'Disabling', 'Disabled', 'Deleting', 'Migrating', 'Migrated'

Applies to