Class V1alpha3ResourcePoolStatusRequestStatus
ResourcePoolStatusRequestStatus contains the calculated pool status information.
Inheritance
V1alpha3ResourcePoolStatusRequestStatus
Assembly: KubernetesClient.dll
Syntax
public record V1alpha3ResourcePoolStatusRequestStatus : IEquatable<V1alpha3ResourcePoolStatusRequestStatus>
Constructors
V1alpha3ResourcePoolStatusRequestStatus()
Declaration
public V1alpha3ResourcePoolStatusRequestStatus()
V1alpha3ResourcePoolStatusRequestStatus(V1alpha3ResourcePoolStatusRequestStatus)
Declaration
protected V1alpha3ResourcePoolStatusRequestStatus(V1alpha3ResourcePoolStatusRequestStatus original)
Parameters
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
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
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
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
Methods
Equals(object?)
Declaration
public override bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
Equals(V1alpha3ResourcePoolStatusRequestStatus?)
Declaration
public virtual bool Equals(V1alpha3ResourcePoolStatusRequestStatus? other)
Parameters
Returns
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Overrides
PrintMembers(StringBuilder)
Declaration
protected virtual bool PrintMembers(StringBuilder builder)
Parameters
Returns
ToString()
Declaration
public override string ToString()
Returns
Overrides
Operators
operator ==(V1alpha3ResourcePoolStatusRequestStatus?, V1alpha3ResourcePoolStatusRequestStatus?)
Declaration
public static bool operator ==(V1alpha3ResourcePoolStatusRequestStatus? left, V1alpha3ResourcePoolStatusRequestStatus? right)
Parameters
Returns
operator !=(V1alpha3ResourcePoolStatusRequestStatus?, V1alpha3ResourcePoolStatusRequestStatus?)
Declaration
public static bool operator !=(V1alpha3ResourcePoolStatusRequestStatus? left, V1alpha3ResourcePoolStatusRequestStatus? right)
Parameters
Returns
Implements