Show / Hide Table of Contents

Class V1ReplicationControllerStatus

ReplicationControllerStatus represents the current status of a replication controller.

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

Constructors

V1ReplicationControllerStatus()

Declaration
public V1ReplicationControllerStatus()

V1ReplicationControllerStatus(V1ReplicationControllerStatus)

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

Properties

AvailableReplicas

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

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

Conditions

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

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

EqualityContract

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

FullyLabeledReplicas

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

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

ObservedGeneration

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

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

ReadyReplicas

The number of ready replicas for this replication controller.

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

Replicas

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

Declaration
[JsonPropertyName("replicas")]
public int Replicas { 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(V1ReplicationControllerStatus?)

Declaration
public virtual bool Equals(V1ReplicationControllerStatus? other)
Parameters
Type Name Description
V1ReplicationControllerStatus 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 ==(V1ReplicationControllerStatus?, V1ReplicationControllerStatus?)

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

operator !=(V1ReplicationControllerStatus?, V1ReplicationControllerStatus?)

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

Implements

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