Class V1PodSchedulingGroup
PodSchedulingGroup identifies the runtime scheduling group instance that a Pod
belongs to. The scheduler uses this information to apply workload-aware
scheduling semantics. Exactly one field must be specified.
Inheritance
V1PodSchedulingGroup
Assembly: KubernetesClient.dll
Syntax
public record V1PodSchedulingGroup : IEquatable<V1PodSchedulingGroup>
Constructors
V1PodSchedulingGroup()
Declaration
public V1PodSchedulingGroup()
V1PodSchedulingGroup(V1PodSchedulingGroup)
Declaration
protected V1PodSchedulingGroup(V1PodSchedulingGroup original)
Parameters
Properties
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
PodGroupName
PodGroupName specifies the name of the standalone PodGroup object that
represents the runtime instance of this group. Must be a DNS subdomain.
Declaration
[JsonPropertyName("podGroupName")]
public string PodGroupName { get; set; }
Property Value
Methods
Equals(object?)
Declaration
public override bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
Equals(V1PodSchedulingGroup?)
Declaration
public virtual bool Equals(V1PodSchedulingGroup? 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 ==(V1PodSchedulingGroup?, V1PodSchedulingGroup?)
Declaration
public static bool operator ==(V1PodSchedulingGroup? left, V1PodSchedulingGroup? right)
Parameters
Returns
operator !=(V1PodSchedulingGroup?, V1PodSchedulingGroup?)
Declaration
public static bool operator !=(V1PodSchedulingGroup? left, V1PodSchedulingGroup? right)
Parameters
Returns
Implements