Class V1ScopeSelector
A scope selector represents the AND of the selectors represented by the
scoped-resource selector requirements.
Inheritance
V1ScopeSelector
Assembly: KubernetesClient.dll
Syntax
public record V1ScopeSelector : IEquatable<V1ScopeSelector>
Constructors
V1ScopeSelector()
Declaration
V1ScopeSelector(V1ScopeSelector)
Declaration
protected V1ScopeSelector(V1ScopeSelector original)
Parameters
Properties
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
MatchExpressions
A list of scope selector requirements by scope of the resources.
Declaration
[JsonPropertyName("matchExpressions")]
public IList<V1ScopedResourceSelectorRequirement> MatchExpressions { get; set; }
Property Value
Methods
Equals(object?)
Declaration
public override bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
Equals(V1ScopeSelector?)
Declaration
public virtual bool Equals(V1ScopeSelector? 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 ==(V1ScopeSelector?, V1ScopeSelector?)
Declaration
public static bool operator ==(V1ScopeSelector? left, V1ScopeSelector? right)
Parameters
Returns
operator !=(V1ScopeSelector?, V1ScopeSelector?)
Declaration
public static bool operator !=(V1ScopeSelector? left, V1ScopeSelector? right)
Parameters
Returns
Implements