RestHealthCheckStepAttributes 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
RestHealthCheckStepAttributes() |
Initializes a new instance of the RestHealthCheckStepAttributes class. |
RestHealthCheckStepAttributes(String, IList<RestHealthCheck>, String, String) |
Initializes a new instance of the RestHealthCheckStepAttributes class. |
RestHealthCheckStepAttributes()
Initializes a new instance of the RestHealthCheckStepAttributes class.
public RestHealthCheckStepAttributes ();
Public Sub New ()
Applies to
RestHealthCheckStepAttributes(String, IList<RestHealthCheck>, String, String)
Initializes a new instance of the RestHealthCheckStepAttributes class.
public RestHealthCheckStepAttributes (string healthyStateDuration, System.Collections.Generic.IList<Microsoft.Azure.Management.DeploymentManager.Models.RestHealthCheck> healthChecks, string waitDuration = default, string maxElasticDuration = default);
new Microsoft.Azure.Management.DeploymentManager.Models.RestHealthCheckStepAttributes : string * System.Collections.Generic.IList<Microsoft.Azure.Management.DeploymentManager.Models.RestHealthCheck> * string * string -> Microsoft.Azure.Management.DeploymentManager.Models.RestHealthCheckStepAttributes
Public Sub New (healthyStateDuration As String, healthChecks As IList(Of RestHealthCheck), 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.
- healthChecks
- IList<RestHealthCheck>
The list of checks that form the health check step.
- 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.