ApplicationHealthPolicyArgs

data class ApplicationHealthPolicyArgs(val considerWarningAsError: Output<Boolean>, val defaultServiceTypeHealthPolicy: Output<ServiceTypeHealthPolicyArgs>? = null, val maxPercentUnhealthyDeployedApplications: Output<Int>, val serviceTypeHealthPolicyMap: Output<Map<String, ServiceTypeHealthPolicyArgs>>? = null) : ConvertibleToJava<ApplicationHealthPolicyArgs>

Defines a health policy used to evaluate the health of an application or one of its children entities.

Constructors

Link copied to clipboard
constructor(considerWarningAsError: Output<Boolean>, defaultServiceTypeHealthPolicy: Output<ServiceTypeHealthPolicyArgs>? = null, maxPercentUnhealthyDeployedApplications: Output<Int>, serviceTypeHealthPolicyMap: Output<Map<String, ServiceTypeHealthPolicyArgs>>? = null)

Properties

Link copied to clipboard

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

Link copied to clipboard

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

Link copied to clipboard

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.

Link copied to clipboard

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

Functions

Link copied to clipboard
open override fun toJava(): ApplicationHealthPolicyArgs