Show / Hide Table of Contents

Class V1alpha3ResourcePoolStatusRequestSpec

ResourcePoolStatusRequestSpec defines the filters for the pool status request.

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

Constructors

V1alpha3ResourcePoolStatusRequestSpec()

Declaration
public V1alpha3ResourcePoolStatusRequestSpec()

V1alpha3ResourcePoolStatusRequestSpec(V1alpha3ResourcePoolStatusRequestSpec)

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

Properties

Driver

Driver specifies the DRA driver name to filter pools. Only pools from ResourceSlices with this driver will be included. Must be a DNS subdomain (e.g., "gpu.example.com").

Declaration
[JsonPropertyName("driver")]
public string Driver { get; set; }
Property Value
Type Description
string

EqualityContract

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

Limit

Limit optionally specifies the maximum number of pools to return in the status. If more pools match the filter criteria, the response will be truncated (i.e., len(status.pools) < status.poolCount).

Default: 100 Minimum: 1 Maximum: 1000

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

PoolName

PoolName optionally filters to a specific pool name. If not specified, all pools from the specified driver are included. When specified, must be a non-empty valid resource pool name (DNS subdomains separated by "/").

Declaration
[JsonPropertyName("poolName")]
public string PoolName { get; set; }
Property Value
Type Description
string

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

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

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

operator !=(V1alpha3ResourcePoolStatusRequestSpec?, V1alpha3ResourcePoolStatusRequestSpec?)

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

Implements

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