ClusterUpgradeDeltaHealthPolicy Constructors

Definition

Overloads

ClusterUpgradeDeltaHealthPolicy()

Initializes a new instance of the ClusterUpgradeDeltaHealthPolicy class.

ClusterUpgradeDeltaHealthPolicy(Int32, Int32, Int32, IDictionary<String,ApplicationDeltaHealthPolicy>)

Initializes a new instance of the ClusterUpgradeDeltaHealthPolicy class.

ClusterUpgradeDeltaHealthPolicy()

Initializes a new instance of the ClusterUpgradeDeltaHealthPolicy class.

public ClusterUpgradeDeltaHealthPolicy ();
Public Sub New ()

Applies to

ClusterUpgradeDeltaHealthPolicy(Int32, Int32, Int32, IDictionary<String,ApplicationDeltaHealthPolicy>)

Initializes a new instance of the ClusterUpgradeDeltaHealthPolicy class.

public ClusterUpgradeDeltaHealthPolicy (int maxPercentDeltaUnhealthyNodes, int maxPercentUpgradeDomainDeltaUnhealthyNodes, int maxPercentDeltaUnhealthyApplications, System.Collections.Generic.IDictionary<string,Microsoft.Azure.Management.ServiceFabric.Models.ApplicationDeltaHealthPolicy> applicationDeltaHealthPolicies = default);
new Microsoft.Azure.Management.ServiceFabric.Models.ClusterUpgradeDeltaHealthPolicy : int * int * int * System.Collections.Generic.IDictionary<string, Microsoft.Azure.Management.ServiceFabric.Models.ApplicationDeltaHealthPolicy> -> Microsoft.Azure.Management.ServiceFabric.Models.ClusterUpgradeDeltaHealthPolicy
Public Sub New (maxPercentDeltaUnhealthyNodes As Integer, maxPercentUpgradeDomainDeltaUnhealthyNodes As Integer, maxPercentDeltaUnhealthyApplications As Integer, Optional applicationDeltaHealthPolicies As IDictionary(Of String, ApplicationDeltaHealthPolicy) = Nothing)

Parameters

maxPercentDeltaUnhealthyNodes
Int32

The maximum allowed percentage of nodes health degradation allowed during cluster upgrades. The delta is measured between the state of the nodes at the beginning of upgrade and the state of the nodes at the time of the health evaluation. The check is performed after every upgrade domain upgrade completion to make sure the global state of the cluster is within tolerated limits.

maxPercentUpgradeDomainDeltaUnhealthyNodes
Int32

The maximum allowed percentage of upgrade domain nodes health degradation allowed during cluster upgrades. The delta is measured between the state of the upgrade domain nodes at the beginning of upgrade and the state of the upgrade domain nodes at the time of the health evaluation. The check is performed after every upgrade domain upgrade completion for all completed upgrade domains to make sure the state of the upgrade domains is within tolerated limits.

maxPercentDeltaUnhealthyApplications
Int32

The maximum allowed percentage of applications health degradation allowed during cluster upgrades. The delta is measured between the state of the applications at the beginning of upgrade and the state of the applications at the time of the health evaluation. The check is performed after every upgrade domain upgrade completion to make sure the global state of the cluster is within tolerated limits. System services are not included in this.

applicationDeltaHealthPolicies
IDictionary<String,ApplicationDeltaHealthPolicy>

Defines the application delta health policy map used to evaluate the health of an application or one of its child entities when upgrading the cluster.

Applies to