Show / Hide Table of Contents

Class V1beta1DeviceAllocationResult

DeviceAllocationResult is the result of allocating devices.

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

Constructors

View Source

V1beta1DeviceAllocationResult()

Declaration
public V1beta1DeviceAllocationResult()
View Source

V1beta1DeviceAllocationResult(V1beta1DeviceAllocationResult)

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

Properties

View Source

Config

This field is a combination of all the claim and class configuration parameters. Drivers can distinguish between those based on a flag.

This includes configuration parameters for drivers which have no allocated devices in the result because it is up to the drivers which configuration parameters they support. They can silently ignore unknown configuration parameters.

Declaration
[JsonPropertyName("config")]
public IList<V1beta1DeviceAllocationConfiguration> Config { get; set; }
Property Value
Type Description
IList<V1beta1DeviceAllocationConfiguration>
View Source

EqualityContract

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

Results

Results lists all allocated devices.

Declaration
[JsonPropertyName("results")]
public IList<V1beta1DeviceRequestAllocationResult> Results { get; set; }
Property Value
Type Description
IList<V1beta1DeviceRequestAllocationResult>

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

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

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

operator !=(V1beta1DeviceAllocationResult?, V1beta1DeviceAllocationResult?)

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

Implements

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