Share via


ArmServiceTypeHealthPolicy Constructors

Definition

Overloads

ArmServiceTypeHealthPolicy()

Initializes a new instance of the ArmServiceTypeHealthPolicy class.

ArmServiceTypeHealthPolicy(Nullable<Int32>, Nullable<Int32>, Nullable<Int32>)

Initializes a new instance of the ArmServiceTypeHealthPolicy class.

ArmServiceTypeHealthPolicy()

Initializes a new instance of the ArmServiceTypeHealthPolicy class.

public ArmServiceTypeHealthPolicy ();
Public Sub New ()

Applies to

ArmServiceTypeHealthPolicy(Nullable<Int32>, Nullable<Int32>, Nullable<Int32>)

Initializes a new instance of the ArmServiceTypeHealthPolicy class.

public ArmServiceTypeHealthPolicy (int? maxPercentUnhealthyServices = default, int? maxPercentUnhealthyPartitionsPerService = default, int? maxPercentUnhealthyReplicasPerPartition = default);
new Microsoft.Azure.Management.ServiceFabric.Models.ArmServiceTypeHealthPolicy : Nullable<int> * Nullable<int> * Nullable<int> -> Microsoft.Azure.Management.ServiceFabric.Models.ArmServiceTypeHealthPolicy
Public Sub New (Optional maxPercentUnhealthyServices As Nullable(Of Integer) = Nothing, Optional maxPercentUnhealthyPartitionsPerService As Nullable(Of Integer) = Nothing, Optional maxPercentUnhealthyReplicasPerPartition As Nullable(Of Integer) = Nothing)

Parameters

maxPercentUnhealthyServices
Nullable<Int32>

The maximum percentage of services allowed to be unhealthy before your application is considered in error.

maxPercentUnhealthyPartitionsPerService
Nullable<Int32>

The maximum percentage of partitions per service allowed to be unhealthy before your application is considered in error.

maxPercentUnhealthyReplicasPerPartition
Nullable<Int32>

The maximum percentage of replicas per partition allowed to be unhealthy before your application is considered in error.

Applies to