ArmServiceFabricManagedClustersModelFactory.RuntimeApplicationHealthPolicy Method

Definition

Cluster level definition for a health policy used to evaluate the health of an application or one of its children entities.

public static Azure.ResourceManager.ServiceFabricManagedClusters.Models.RuntimeApplicationHealthPolicy RuntimeApplicationHealthPolicy(bool considerWarningAsError = false, int maxPercentUnhealthyDeployedApplications = 0, Azure.ResourceManager.ServiceFabricManagedClusters.Models.RuntimeServiceTypeHealthPolicy defaultServiceTypeHealthPolicy = default, System.Collections.Generic.IDictionary<string,Azure.ResourceManager.ServiceFabricManagedClusters.Models.RuntimeServiceTypeHealthPolicy> serviceTypeHealthPolicyMap = default);
static member RuntimeApplicationHealthPolicy : bool * int * Azure.ResourceManager.ServiceFabricManagedClusters.Models.RuntimeServiceTypeHealthPolicy * System.Collections.Generic.IDictionary<string, Azure.ResourceManager.ServiceFabricManagedClusters.Models.RuntimeServiceTypeHealthPolicy> -> Azure.ResourceManager.ServiceFabricManagedClusters.Models.RuntimeApplicationHealthPolicy
Public Shared Function RuntimeApplicationHealthPolicy (Optional considerWarningAsError As Boolean = false, Optional maxPercentUnhealthyDeployedApplications As Integer = 0, Optional defaultServiceTypeHealthPolicy As RuntimeServiceTypeHealthPolicy = Nothing, Optional serviceTypeHealthPolicyMap As IDictionary(Of String, RuntimeServiceTypeHealthPolicy) = Nothing) As RuntimeApplicationHealthPolicy

Parameters

considerWarningAsError
Boolean

Indicates whether warnings are treated with the same severity as errors.

maxPercentUnhealthyDeployedApplications
Int32

The maximum allowed percentage of unhealthy deployed applications. Allowed values are Byte values from zero to 100. The percentage represents the maximum tolerated percentage of deployed applications that can be unhealthy before the application is considered in error. This is calculated by dividing the number of unhealthy deployed applications over the number of nodes where the application is currently deployed on in the cluster. The computation rounds up to tolerate one failure on small numbers of nodes. Default percentage is zero.

defaultServiceTypeHealthPolicy
RuntimeServiceTypeHealthPolicy

The health policy used by default to evaluate the health of a service type.

serviceTypeHealthPolicyMap
IDictionary<String,RuntimeServiceTypeHealthPolicy>

The map with service type health policy per service type name. The map is empty by default.

Returns

A new RuntimeApplicationHealthPolicy instance for mocking.

Applies to