Class V1alpha2PodGroupSchedulingConstraints
PodGroupSchedulingConstraints defines scheduling constraints (e.g. topology) for
a PodGroup.
Inheritance
V1alpha2PodGroupSchedulingConstraints
Assembly: KubernetesClient.dll
Syntax
public record V1alpha2PodGroupSchedulingConstraints : IEquatable<V1alpha2PodGroupSchedulingConstraints>
Constructors
V1alpha2PodGroupSchedulingConstraints()
Declaration
public V1alpha2PodGroupSchedulingConstraints()
V1alpha2PodGroupSchedulingConstraints(V1alpha2PodGroupSchedulingConstraints)
Declaration
protected V1alpha2PodGroupSchedulingConstraints(V1alpha2PodGroupSchedulingConstraints original)
Parameters
Properties
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
Topology
Topology defines the topology constraints for the pod group. Currently only a
single topology constraint can be specified. This may change in the future.
Declaration
[JsonPropertyName("topology")]
public IList<V1alpha2TopologyConstraint> Topology { get; set; }
Property Value
Methods
Equals(object?)
Declaration
public override bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
Equals(V1alpha2PodGroupSchedulingConstraints?)
Declaration
public virtual bool Equals(V1alpha2PodGroupSchedulingConstraints? 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 ==(V1alpha2PodGroupSchedulingConstraints?, V1alpha2PodGroupSchedulingConstraints?)
Declaration
public static bool operator ==(V1alpha2PodGroupSchedulingConstraints? left, V1alpha2PodGroupSchedulingConstraints? right)
Parameters
Returns
operator !=(V1alpha2PodGroupSchedulingConstraints?, V1alpha2PodGroupSchedulingConstraints?)
Declaration
public static bool operator !=(V1alpha2PodGroupSchedulingConstraints? left, V1alpha2PodGroupSchedulingConstraints? right)
Parameters
Returns
Implements