Class ReplicaSetStatusArgs
ReplicaSetStatus represents the current status of a ReplicaSet.
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Kubernetes.Types.Inputs.Apps.V1
Assembly: Pulumi.Kubernetes.dll
Syntax
public class ReplicaSetStatusArgs : ResourceArgs
Properties
View SourceAvailableReplicas
The number of available replicas (ready for at least minReadySeconds) for this replica set.
Declaration
public Input<int> AvailableReplicas { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
Conditions
Represents the latest available observations of a replica set's current state.
Declaration
public InputList<ReplicaSetConditionArgs> Conditions { get; set; }
Property Value
| Type | Description |
|---|---|
| InputList<ReplicaSetConditionArgs> |
FullyLabeledReplicas
The number of pods that have labels matching the labels of the pod template of the replicaset.
Declaration
public Input<int> FullyLabeledReplicas { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
ObservedGeneration
ObservedGeneration reflects the generation of the most recently observed ReplicaSet.
Declaration
public Input<int> ObservedGeneration { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
ReadyReplicas
The number of ready replicas for this replica set.
Declaration
public Input<int> ReadyReplicas { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
Replicas
Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller
Declaration
public Input<int> Replicas { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |