ApplicationHealthPolicy 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
ApplicationHealthPolicy() |
Initializes a new instance of the ApplicationHealthPolicy class. |
ApplicationHealthPolicy(Boolean, Int32, ServiceTypeHealthPolicy, IDictionary<String,ServiceTypeHealthPolicy>) |
Initializes a new instance of the ApplicationHealthPolicy class. |
ApplicationHealthPolicy()
Initializes a new instance of the ApplicationHealthPolicy class.
public ApplicationHealthPolicy ();
Public Sub New ()
Applies to
ApplicationHealthPolicy(Boolean, Int32, ServiceTypeHealthPolicy, IDictionary<String,ServiceTypeHealthPolicy>)
Initializes a new instance of the ApplicationHealthPolicy class.
public ApplicationHealthPolicy (bool considerWarningAsError, int maxPercentUnhealthyDeployedApplications, Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ServiceTypeHealthPolicy defaultServiceTypeHealthPolicy = default, System.Collections.Generic.IDictionary<string,Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ServiceTypeHealthPolicy> serviceTypeHealthPolicyMap = default);
new Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ApplicationHealthPolicy : bool * int * Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ServiceTypeHealthPolicy * System.Collections.Generic.IDictionary<string, Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ServiceTypeHealthPolicy> -> Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ApplicationHealthPolicy
Public Sub New (considerWarningAsError As Boolean, maxPercentUnhealthyDeployedApplications As Integer, Optional defaultServiceTypeHealthPolicy As ServiceTypeHealthPolicy = Nothing, Optional serviceTypeHealthPolicyMap As IDictionary(Of String, ServiceTypeHealthPolicy) = Nothing)
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
- ServiceTypeHealthPolicy
The health policy used by default to evaluate the health of a service type.
- serviceTypeHealthPolicyMap
- IDictionary<String,ServiceTypeHealthPolicy>
The map with service type health policy per service type name. The map is empty by default.
Applies to
Azure SDK for .NET