Condividi tramite


HealthCheckStepAttributes Constructors

Definition

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