Class V1beta1DeviceCounterConsumption
DeviceCounterConsumption defines a set of counters that a device will consume
from a CounterSet.
Inheritance
V1beta1DeviceCounterConsumption
Assembly: KubernetesClient.dll
Syntax
public record V1beta1DeviceCounterConsumption : IEquatable<V1beta1DeviceCounterConsumption>
Constructors
V1beta1DeviceCounterConsumption()
Declaration
public V1beta1DeviceCounterConsumption()
V1beta1DeviceCounterConsumption(V1beta1DeviceCounterConsumption)
Declaration
protected V1beta1DeviceCounterConsumption(V1beta1DeviceCounterConsumption original)
Parameters
Properties
CounterSet
CounterSet is the name of the set from which the counters defined will be
consumed.
Declaration
[JsonPropertyName("counterSet")]
public string CounterSet { get; set; }
Property Value
Counters
Counters defines the counters that will be consumed by the device.
The maximum number of counters is 32.
Declaration
[JsonPropertyName("counters")]
public IDictionary<string, V1beta1Counter> Counters { get; set; }
Property Value
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
Methods
Equals(object?)
Declaration
public override bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
Equals(V1beta1DeviceCounterConsumption?)
Declaration
public virtual bool Equals(V1beta1DeviceCounterConsumption? 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 ==(V1beta1DeviceCounterConsumption?, V1beta1DeviceCounterConsumption?)
Declaration
public static bool operator ==(V1beta1DeviceCounterConsumption? left, V1beta1DeviceCounterConsumption? right)
Parameters
Returns
operator !=(V1beta1DeviceCounterConsumption?, V1beta1DeviceCounterConsumption?)
Declaration
public static bool operator !=(V1beta1DeviceCounterConsumption? left, V1beta1DeviceCounterConsumption? right)
Parameters
Returns
Implements