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

View Source

V1ReplicaSetStatus()

Declaration
public V1ReplicaSetStatus()
View Source

V1ReplicaSetStatus(V1ReplicaSetStatus)

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

Properties

View Source

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?
View Source

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>
View Source

EqualityContract

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

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?
View Source

ObservedGeneration

ObservedGeneration reflects the generation of the most recently observed ReplicaSet.

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

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?
View Source

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
View Source

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 an alpha field. Enable DeploymentReplicaSetTerminatingReplicas to be able to use this field.

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

Methods

View Source

Equals(object?)

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

Equals(V1ReplicaSetStatus?)

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

GetHashCode()

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

PrintMembers(StringBuilder)

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

ToString()

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

Operators

View Source

operator ==(V1ReplicaSetStatus?, V1ReplicaSetStatus?)

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

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>
  • View Source
In this article
Back to top Generated by DocFX