EndpointConditionsArgs

data class EndpointConditionsArgs(val ready: Output<Boolean>? = null, val serving: Output<Boolean>? = null, val terminating: Output<Boolean>? = null) : ConvertibleToJava<EndpointConditionsArgs>

EndpointConditions represents the current condition of an endpoint.

Constructors

Link copied to clipboard
fun EndpointConditionsArgs(ready: Output<Boolean>? = null, serving: Output<Boolean>? = null, terminating: Output<Boolean>? = null)

Functions

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

Properties

Link copied to clipboard
val ready: Output<Boolean>? = null

ready indicates that this endpoint is prepared to receive traffic, according to whatever system is managing the endpoint. A nil value indicates an unknown state. In most cases consumers should interpret this unknown state as ready.

Link copied to clipboard
val serving: Output<Boolean>? = null

serving is identical to ready except that it is set regardless of the terminating state of endpoints. This condition should be set to true for a ready endpoint that is terminating. If nil, consumers should defer to the ready condition. This field can be enabled with the EndpointSliceTerminatingCondition feature gate.

Link copied to clipboard
val terminating: Output<Boolean>? = null

terminating indicates that this endpoint is terminating. A nil value indicates an unknown state. Consumers should interpret this unknown state to mean that the endpoint is not terminating. This field can be enabled with the EndpointSliceTerminatingCondition feature gate.