Share via


HealthProbeSettingsUpdateParameters Constructors

Definition

Overloads

HealthProbeSettingsUpdateParameters()

Initializes a new instance of the HealthProbeSettingsUpdateParameters class.

HealthProbeSettingsUpdateParameters(String, String, Nullable<Int32>, String, String)

Initializes a new instance of the HealthProbeSettingsUpdateParameters class.

HealthProbeSettingsUpdateParameters()

Initializes a new instance of the HealthProbeSettingsUpdateParameters class.

public HealthProbeSettingsUpdateParameters ();
Public Sub New ()

Applies to

HealthProbeSettingsUpdateParameters(String, String, Nullable<Int32>, String, String)

Initializes a new instance of the HealthProbeSettingsUpdateParameters class.

public HealthProbeSettingsUpdateParameters (string path = default, string protocol = default, int? intervalInSeconds = default, string healthProbeMethod = default, string enabledState = default);
new Microsoft.Azure.Management.FrontDoor.Models.HealthProbeSettingsUpdateParameters : string * string * Nullable<int> * string * string -> Microsoft.Azure.Management.FrontDoor.Models.HealthProbeSettingsUpdateParameters
Public Sub New (Optional path As String = Nothing, Optional protocol As String = Nothing, Optional intervalInSeconds As Nullable(Of Integer) = Nothing, Optional healthProbeMethod As String = Nothing, Optional enabledState As String = Nothing)

Parameters

path
String

The path to use for the health probe. Default is /

protocol
String

Protocol scheme to use for this probe Possible values include: 'Http', 'Https'

intervalInSeconds
Nullable<Int32>

The number of seconds between health probes.

healthProbeMethod
String

Configures which HTTP method to use to probe the backends defined under backendPools. Possible values include: 'GET', 'HEAD'

enabledState
String

Whether to enable health probes to be made against backends defined under backendPools. Health probes can only be disabled if there is a single enabled backend in single enabled backend pool. Possible values include: 'Enabled', 'Disabled'

Applies to