Show / Hide Table of Contents

Class V1beta1OpaqueDeviceConfiguration

OpaqueDeviceConfiguration contains configuration parameters for a driver in a format defined by the driver vendor.

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

Constructors

View Source

V1beta1OpaqueDeviceConfiguration()

Declaration
public V1beta1OpaqueDeviceConfiguration()
View Source

V1beta1OpaqueDeviceConfiguration(V1beta1OpaqueDeviceConfiguration)

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

Properties

View Source

Driver

Driver is used to determine which kubelet plugin needs to be passed these configuration parameters.

An admission policy provided by the driver developer could use this to decide whether it needs to validate them.

Must be a DNS subdomain and should end with a DNS domain owned by the vendor of the driver.

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

EqualityContract

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

Parameters

Parameters can contain arbitrary data. It is the responsibility of the driver developer to handle validation and versioning. Typically this includes self-identification and a version ("kind" + "apiVersion" for Kubernetes types), with conversion between different versions.

The length of the raw data must be smaller or equal to 10 Ki.

Declaration
[JsonPropertyName("parameters")]
public object Parameters { get; set; }
Property Value
Type Description
object

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

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

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

operator !=(V1beta1OpaqueDeviceConfiguration?, V1beta1OpaqueDeviceConfiguration?)

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

Implements

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