ReplicationControllerStatusArgs

data class ReplicationControllerStatusArgs(val availableReplicas: Output<Int>? = null, val conditions: Output<List<ReplicationControllerConditionArgs>>? = null, val fullyLabeledReplicas: Output<Int>? = null, val observedGeneration: Output<Int>? = null, val readyReplicas: Output<Int>? = null, val replicas: Output<Int>) : ConvertibleToJava<ReplicationControllerStatusArgs>

ReplicationControllerStatus represents the current status of a replication controller.

Constructors

Link copied to clipboard
constructor(availableReplicas: Output<Int>? = null, conditions: Output<List<ReplicationControllerConditionArgs>>? = null, fullyLabeledReplicas: Output<Int>? = null, observedGeneration: Output<Int>? = null, readyReplicas: Output<Int>? = null, replicas: Output<Int>)

Properties

Link copied to clipboard
val availableReplicas: Output<Int>? = null

The number of available replicas (ready for at least minReadySeconds) for this replication controller.

Link copied to clipboard

Represents the latest available observations of a replication controller's current state.

Link copied to clipboard
val fullyLabeledReplicas: Output<Int>? = null

The number of pods that have labels matching the labels of the pod template of the replication controller.

Link copied to clipboard
val observedGeneration: Output<Int>? = null

ObservedGeneration reflects the generation of the most recently observed replication controller.

Link copied to clipboard
val readyReplicas: Output<Int>? = null

The number of ready replicas for this replication controller.

Link copied to clipboard
val replicas: Output<Int>

Replicas is the most recently observed number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller

Functions

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