Share via


HealthProbeSettingsModel Constructors

Definition

Overloads

HealthProbeSettingsModel()

Initializes a new instance of the HealthProbeSettingsModel class.

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

Initializes a new instance of the HealthProbeSettingsModel class.

HealthProbeSettingsModel()

Initializes a new instance of the HealthProbeSettingsModel class.

public HealthProbeSettingsModel ();
Public Sub New ()

Applies to

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

Initializes a new instance of the HealthProbeSettingsModel class.

public HealthProbeSettingsModel (string id = default, string name = default, string type = default, string path = default, string protocol = default, int? intervalInSeconds = default, string healthProbeMethod = default, string enabledState = default, string resourceState = default);
new Microsoft.Azure.Management.FrontDoor.Models.HealthProbeSettingsModel : string * string * string * string * string * Nullable<int> * string * string * string -> Microsoft.Azure.Management.FrontDoor.Models.HealthProbeSettingsModel
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, 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, Optional resourceState As String = Nothing)

Parameters

id
String

Resource ID.

name
String

Resource name.

type
String

Resource type.

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'

resourceState
String

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

Applies to