Class V1SelectableField
SelectableField specifies the JSON path of a field that may be used with field
selectors.
Inheritance
V1SelectableField
Assembly: KubernetesClient.dll
Syntax
public record V1SelectableField : IEquatable<V1SelectableField>
Constructors
View Source
V1SelectableField()
Declaration
public V1SelectableField()
View Source
V1SelectableField(V1SelectableField)
Declaration
protected V1SelectableField(V1SelectableField original)
Parameters
Properties
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
JsonPath
jsonPath is a simple JSON path which is evaluated against each custom resource
to produce a field selector value. Only JSON paths without the array notation
are allowed. Must point to a field of type string, boolean or integer. Types
with enum values and strings with formats are allowed. If jsonPath refers to
absent field in a resource, the jsonPath evaluates to an empty string. Must not
point to metdata fields. Required.
Declaration
[JsonPropertyName("jsonPath")]
public string JsonPath { 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(V1SelectableField?)
Declaration
public virtual bool Equals(V1SelectableField? 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 ==(V1SelectableField?, V1SelectableField?)
Declaration
public static bool operator ==(V1SelectableField? left, V1SelectableField? right)
Parameters
Returns
View Source
operator !=(V1SelectableField?, V1SelectableField?)
Declaration
public static bool operator !=(V1SelectableField? left, V1SelectableField? right)
Parameters
Returns
Implements