HealthCheckStepAttributes 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
HealthCheckStepAttributes() |
Initializes a new instance of the HealthCheckStepAttributes class. |
HealthCheckStepAttributes(String, String, String) |
Initializes a new instance of the HealthCheckStepAttributes class. |
HealthCheckStepAttributes()
Initializes a new instance of the HealthCheckStepAttributes class.
public HealthCheckStepAttributes ();
Public Sub New ()
Applies to
HealthCheckStepAttributes(String, String, String)
Initializes a new instance of the HealthCheckStepAttributes class.
public HealthCheckStepAttributes (string healthyStateDuration, string waitDuration = default, string maxElasticDuration = default);
new Microsoft.Azure.Management.DeploymentManager.Models.HealthCheckStepAttributes : string * string * string -> Microsoft.Azure.Management.DeploymentManager.Models.HealthCheckStepAttributes
Public Sub New (healthyStateDuration As String, Optional waitDuration As String = Nothing, Optional maxElasticDuration As String = Nothing)
Parameters
- healthyStateDuration
- String
The duration in ISO 8601 format for which the resource is expected to be continuously healthy. If maxElasticDuration is specified, healthy state duration is enforced after the detection of first healthy signal.
- waitDuration
- String
The duration in ISO 8601 format for which health check waits idly without any checks.
- maxElasticDuration
- String
The duration in ISO 8601 format for which the health check waits for the resource to become healthy. Health check fails if it doesn't. Health check starts to enforce healthyStateDuration once resource becomes healthy.
Applies to
Azure SDK for .NET