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
View Source
V1ScopeSelector()
Declaration
View Source
V1ScopeSelector(V1ScopeSelector)
Declaration
protected V1ScopeSelector(V1ScopeSelector original)
Parameters
Properties
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
MatchExpressions
A list of scope selector requirements by scope of the resources.
Declaration
[JsonPropertyName("matchExpressions")]
public IList<V1ScopedResourceSelectorRequirement> MatchExpressions { get; set; }
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(V1ScopeSelector?)
Declaration
public virtual bool Equals(V1ScopeSelector? 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 ==(V1ScopeSelector?, V1ScopeSelector?)
Declaration
public static bool operator ==(V1ScopeSelector? left, V1ScopeSelector? right)
Parameters
Returns
View Source
operator !=(V1ScopeSelector?, V1ScopeSelector?)
Declaration
public static bool operator !=(V1ScopeSelector? left, V1ScopeSelector? right)
Parameters
Returns
Implements