Show / Hide Table of Contents

Class V1ReplicaSetStatus

ReplicaSetStatus represents the current status of a ReplicaSet.

Inheritance
object
V1ReplicaSetStatus
Implements
IEquatable<V1ReplicaSetStatus>
Inherited Members
object.GetType()
object.MemberwiseClone()
object.Equals(object, object)
object.ReferenceEquals(object, object)
Namespace: k8s.Models
Assembly: KubernetesClient.dll
Syntax
public record V1ReplicaSetStatus : IEquatable<V1ReplicaSetStatus>

Constructors

V1ReplicaSetStatus()

Declaration
public V1ReplicaSetStatus()

V1ReplicaSetStatus(V1ReplicaSetStatus)

Declaration
protected V1ReplicaSetStatus(V1ReplicaSetStatus original)
Parameters
Type Name Description
V1ReplicaSetStatus original

Properties

AvailableReplicas

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

Declaration
[JsonPropertyName("availableReplicas")]
public int? AvailableReplicas { get; set; }
Property Value
Type Description
int?

Conditions

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

Declaration
[JsonPropertyName("conditions")]
public IList<V1ReplicaSetCondition> Conditions { get; set; }
Property Value
Type Description
IList<V1ReplicaSetCondition>

EqualityContract

Declaration
protected virtual Type EqualityContract { get; }
Property Value
Type Description
Type

FullyLabeledReplicas

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

Declaration
[JsonPropertyName("fullyLabeledReplicas")]
public int? FullyLabeledReplicas { get; set; }
Property Value
Type Description
int?

ObservedGeneration

ObservedGeneration reflects the generation of the most recently observed ReplicaSet.

Declaration
[JsonPropertyName("observedGeneration")]
public long? ObservedGeneration { get; set; }
Property Value
Type Description
long?

ReadyReplicas

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

Declaration
[JsonPropertyName("readyReplicas")]
public int? ReadyReplicas { get; set; }
Property Value
Type Description
int?

Replicas

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

Declaration
[JsonPropertyName("replicas")]
public int Replicas { get; set; }
Property Value
Type Description
int

TerminatingReplicas

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 a beta field and requires enabling DeploymentReplicaSetTerminatingReplicas feature (enabled by default).

Declaration
[JsonPropertyName("terminatingReplicas")]
public int? TerminatingReplicas { get; set; }
Property Value
Type Description
int?

Methods

Equals(object?)

Declaration
public override bool Equals(object? obj)
Parameters
Type Name Description
object obj
Returns
Type Description
bool
Overrides
object.Equals(object)

Equals(V1ReplicaSetStatus?)

Declaration
public virtual bool Equals(V1ReplicaSetStatus? other)
Parameters
Type Name Description
V1ReplicaSetStatus other
Returns
Type Description
bool

GetHashCode()

Declaration
public override int GetHashCode()
Returns
Type Description
int
Overrides
object.GetHashCode()

PrintMembers(StringBuilder)

Declaration
protected virtual bool PrintMembers(StringBuilder builder)
Parameters
Type Name Description
StringBuilder builder
Returns
Type Description
bool

ToString()

Declaration
public override string ToString()
Returns
Type Description
string
Overrides
object.ToString()

Operators

operator ==(V1ReplicaSetStatus?, V1ReplicaSetStatus?)

Declaration
public static bool operator ==(V1ReplicaSetStatus? left, V1ReplicaSetStatus? right)
Parameters
Type Name Description
V1ReplicaSetStatus left
V1ReplicaSetStatus right
Returns
Type Description
bool

operator !=(V1ReplicaSetStatus?, V1ReplicaSetStatus?)

Declaration
public static bool operator !=(V1ReplicaSetStatus? left, V1ReplicaSetStatus? right)
Parameters
Type Name Description
V1ReplicaSetStatus left
V1ReplicaSetStatus right
Returns
Type Description
bool

Implements

IEquatable<T>
In this article
Back to top Generated by DocFX