Class V1ShardInfo
ShardInfo describes the shard selector that was applied to produce a list
response. Its presence on a list response indicates the list is a filtered
subset.
Assembly: KubernetesClient.dll
Syntax
public record V1ShardInfo : IEquatable<V1ShardInfo>
Constructors
V1ShardInfo()
Declaration
V1ShardInfo(V1ShardInfo)
Declaration
protected V1ShardInfo(V1ShardInfo original)
Parameters
Properties
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
Selector
selector is the shard selector string from the request, echoed back so clients
can verify which shard they received and merge responses from multiple shards.
Declaration
[JsonPropertyName("selector")]
public string Selector { get; set; }
Property Value
Methods
Equals(object?)
Declaration
public override bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
Equals(V1ShardInfo?)
Declaration
public virtual bool Equals(V1ShardInfo? 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 ==(V1ShardInfo?, V1ShardInfo?)
Declaration
public static bool operator ==(V1ShardInfo? left, V1ShardInfo? right)
Parameters
Returns
operator !=(V1ShardInfo?, V1ShardInfo?)
Declaration
public static bool operator !=(V1ShardInfo? left, V1ShardInfo? right)
Parameters
Returns
Implements