ReplicaSetStatusArgs

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

ReplicaSetStatus represents the current status of a ReplicaSet.

Constructors

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

Properties

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

The number of available non-terminating pods (ready for at least minReadySeconds) for this replica set.

Link copied to clipboard

Represents the latest available observations of a replica set's current state.

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

The number of non-terminating pods that have labels matching the labels of the pod template of the replicaset.

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

ObservedGeneration reflects the generation of the most recently observed ReplicaSet.

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

The number of non-terminating pods targeted by this ReplicaSet with a Ready Condition.

Link copied to clipboard
val replicas: Output<Int>

Replicas is the most recently observed number of non-terminating pods. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicaset

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

The number of terminating pods for this replica set. Terminating pods have a non-null .metadata.deletionTimestamp and have not yet reached the Failed or Succeeded .status.phase. This is an alpha field. Enable DeploymentReplicaSetTerminatingReplicas to be able to use this field.

Functions

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