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
View Source
V1beta1DeviceCounterConsumption()
Declaration
public V1beta1DeviceCounterConsumption()
View Source
V1beta1DeviceCounterConsumption(V1beta1DeviceCounterConsumption)
Declaration
protected V1beta1DeviceCounterConsumption(V1beta1DeviceCounterConsumption original)
Parameters
Properties
View Source
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
View Source
Counters
Counters defines the counters that will be consumed by the device.
The maximum number counters in a device is 32. In addition, the maximum number
of all counters in all devices is 1024 (for example, 64 devices with 16 counters
each).
Declaration
[JsonPropertyName("counters")]
public IDictionary<string, V1beta1Counter> Counters { get; set; }
Property Value
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
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(V1beta1DeviceCounterConsumption?)
Declaration
public virtual bool Equals(V1beta1DeviceCounterConsumption? 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 ==(V1beta1DeviceCounterConsumption?, V1beta1DeviceCounterConsumption?)
Declaration
public static bool operator ==(V1beta1DeviceCounterConsumption? left, V1beta1DeviceCounterConsumption? right)
Parameters
Returns
View Source
operator !=(V1beta1DeviceCounterConsumption?, V1beta1DeviceCounterConsumption?)
Declaration
public static bool operator !=(V1beta1DeviceCounterConsumption? left, V1beta1DeviceCounterConsumption? right)
Parameters
Returns
Implements