HealthProbeParameters Constructors
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
HealthProbeParameters() |
Initializes a new instance of the HealthProbeParameters class. |
HealthProbeParameters(String, Nullable<HealthProbeRequestType>, Nullable<ProbeProtocol>, Nullable<Int32>) |
Initializes a new instance of the HealthProbeParameters class. |
HealthProbeParameters()
Initializes a new instance of the HealthProbeParameters class.
public HealthProbeParameters ();
Public Sub New ()
Applies to
HealthProbeParameters(String, Nullable<HealthProbeRequestType>, Nullable<ProbeProtocol>, Nullable<Int32>)
Initializes a new instance of the HealthProbeParameters class.
public HealthProbeParameters (string probePath = default, Microsoft.Azure.Management.Cdn.Models.HealthProbeRequestType? probeRequestType = default, Microsoft.Azure.Management.Cdn.Models.ProbeProtocol? probeProtocol = default, int? probeIntervalInSeconds = default);
new Microsoft.Azure.Management.Cdn.Models.HealthProbeParameters : string * Nullable<Microsoft.Azure.Management.Cdn.Models.HealthProbeRequestType> * Nullable<Microsoft.Azure.Management.Cdn.Models.ProbeProtocol> * Nullable<int> -> Microsoft.Azure.Management.Cdn.Models.HealthProbeParameters
Public Sub New (Optional probePath As String = Nothing, Optional probeRequestType As Nullable(Of HealthProbeRequestType) = Nothing, Optional probeProtocol As Nullable(Of ProbeProtocol) = Nothing, Optional probeIntervalInSeconds As Nullable(Of Integer) = Nothing)
Parameters
- probePath
- String
The path relative to the origin that is used to determine the health of the origin.
- probeRequestType
- Nullable<HealthProbeRequestType>
The type of health probe request that is made. Possible values include: 'NotSet', 'GET', 'HEAD'
- probeProtocol
- Nullable<ProbeProtocol>
Protocol to use for health probe. Possible values include: 'NotSet', 'Http', 'Https'
The number of seconds between health probes.Default is 240sec.
Applies to
Azure SDK for .NET