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

View Source

V1ReplicationControllerStatus()

Declaration
public V1ReplicationControllerStatus()
View Source

V1ReplicationControllerStatus(V1ReplicationControllerStatus)

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

Properties

View Source

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

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

EqualityContract

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

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

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

ReadyReplicas

The number of ready replicas for this replication controller.

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

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

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(V1ReplicationControllerStatus?)

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

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

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