Class V1beta2DeviceCounterConsumption
DeviceCounterConsumption defines a set of counters that a device will consume
from a CounterSet.
Inheritance
V1beta2DeviceCounterConsumption
Assembly: KubernetesClient.dll
Syntax
public record V1beta2DeviceCounterConsumption : IEquatable<V1beta2DeviceCounterConsumption>
Constructors
V1beta2DeviceCounterConsumption()
Declaration
public V1beta2DeviceCounterConsumption()
V1beta2DeviceCounterConsumption(V1beta2DeviceCounterConsumption)
Declaration
protected V1beta2DeviceCounterConsumption(V1beta2DeviceCounterConsumption 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, V1beta2Counter> 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(V1beta2DeviceCounterConsumption?)
Declaration
public virtual bool Equals(V1beta2DeviceCounterConsumption? 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 ==(V1beta2DeviceCounterConsumption?, V1beta2DeviceCounterConsumption?)
Declaration
public static bool operator ==(V1beta2DeviceCounterConsumption? left, V1beta2DeviceCounterConsumption? right)
Parameters
Returns
operator !=(V1beta2DeviceCounterConsumption?, V1beta2DeviceCounterConsumption?)
Declaration
public static bool operator !=(V1beta2DeviceCounterConsumption? left, V1beta2DeviceCounterConsumption? right)
Parameters
Returns
Implements