Show / Hide Table of Contents

Class V1alpha3ResourcePoolStatusRequestStatus

ResourcePoolStatusRequestStatus contains the calculated pool status information.

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

Constructors

V1alpha3ResourcePoolStatusRequestStatus()

Declaration
public V1alpha3ResourcePoolStatusRequestStatus()

V1alpha3ResourcePoolStatusRequestStatus(V1alpha3ResourcePoolStatusRequestStatus)

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

Properties

Conditions

Conditions provide information about the state of the request. A condition with type=Complete or type=Failed will always be set when the status is populated.

Known condition types: - "Complete": True when the request has been processed successfully - "Failed": True when the request could not be processed

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

EqualityContract

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

PoolCount

PoolCount is the total number of pools that matched the filter criteria, regardless of truncation. This helps users understand how many pools exist even when the response is truncated. A value of 0 means no pools matched the filter criteria.

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

Pools

Pools contains the first spec.limit matching pools, sorted by driver then pool name. If len(pools) < poolCount, the list was truncated. When omitted, no pools matched the request filters.

Declaration
[JsonPropertyName("pools")]
public IList<V1alpha3PoolStatus> Pools { get; set; }
Property Value
Type Description
IList<V1alpha3PoolStatus>

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

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

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

operator !=(V1alpha3ResourcePoolStatusRequestStatus?, V1alpha3ResourcePoolStatusRequestStatus?)

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

Implements

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