Class V1beta1DeviceAttribute
DeviceAttribute must have exactly one field set.
Inheritance
V1beta1DeviceAttribute
Assembly: KubernetesClient.dll
Syntax
public record V1beta1DeviceAttribute : IEquatable<V1beta1DeviceAttribute>
Constructors
View Source
V1beta1DeviceAttribute()
Declaration
public V1beta1DeviceAttribute()
View Source
V1beta1DeviceAttribute(V1beta1DeviceAttribute)
Declaration
protected V1beta1DeviceAttribute(V1beta1DeviceAttribute original)
Parameters
Properties
View Source
BoolValue
BoolValue is a true/false value.
Declaration
[JsonPropertyName("bool")]
public bool? BoolValue { get; set; }
Property Value
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
IntValue
Declaration
[JsonPropertyName("int")]
public long? IntValue { get; set; }
Property Value
View Source
StringValue
StringValue is a string. Must not be longer than 64 characters.
Declaration
[JsonPropertyName("string")]
public string StringValue { get; set; }
Property Value
View Source
Version
VersionValue is a semantic version according to semver.org spec 2.0.0. Must not
be longer than 64 characters.
Declaration
[JsonPropertyName("version")]
public string Version { get; set; }
Property Value
Methods
View Source
Equals(object?)
Declaration
public override bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
View Source
Equals(V1beta1DeviceAttribute?)
Declaration
public virtual bool Equals(V1beta1DeviceAttribute? other)
Parameters
Returns
View Source
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Overrides
View Source
PrintMembers(StringBuilder)
Declaration
protected virtual bool PrintMembers(StringBuilder builder)
Parameters
Returns
View Source
ToString()
Declaration
public override string ToString()
Returns
Overrides
Operators
View Source
operator ==(V1beta1DeviceAttribute?, V1beta1DeviceAttribute?)
Declaration
public static bool operator ==(V1beta1DeviceAttribute? left, V1beta1DeviceAttribute? right)
Parameters
Returns
View Source
operator !=(V1beta1DeviceAttribute?, V1beta1DeviceAttribute?)
Declaration
public static bool operator !=(V1beta1DeviceAttribute? left, V1beta1DeviceAttribute? right)
Parameters
Returns
Implements