Show / Hide Table of Contents

Class V1SelectableField

SelectableField specifies the JSON path of a field that may be used with field selectors.

Inheritance
object
V1SelectableField
Implements
IEquatable<V1SelectableField>
Inherited Members
object.GetType()
object.MemberwiseClone()
object.Equals(object, object)
object.ReferenceEquals(object, object)
Namespace: k8s.Models
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
Type Name Description
V1SelectableField original

Properties

View Source

EqualityContract

Declaration
protected virtual Type EqualityContract { get; }
Property Value
Type Description
Type
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
Type Description
string

Methods

View Source

Equals(object?)

Declaration
public override bool Equals(object? obj)
Parameters
Type Name Description
object obj
Returns
Type Description
bool
Overrides
object.Equals(object)
View Source

Equals(V1SelectableField?)

Declaration
public virtual bool Equals(V1SelectableField? other)
Parameters
Type Name Description
V1SelectableField other
Returns
Type Description
bool
View Source

GetHashCode()

Declaration
public override int GetHashCode()
Returns
Type Description
int
Overrides
object.GetHashCode()
View Source

PrintMembers(StringBuilder)

Declaration
protected virtual bool PrintMembers(StringBuilder builder)
Parameters
Type Name Description
StringBuilder builder
Returns
Type Description
bool
View Source

ToString()

Declaration
public override string ToString()
Returns
Type Description
string
Overrides
object.ToString()

Operators

View Source

operator ==(V1SelectableField?, V1SelectableField?)

Declaration
public static bool operator ==(V1SelectableField? left, V1SelectableField? right)
Parameters
Type Name Description
V1SelectableField left
V1SelectableField right
Returns
Type Description
bool
View Source

operator !=(V1SelectableField?, V1SelectableField?)

Declaration
public static bool operator !=(V1SelectableField? left, V1SelectableField? right)
Parameters
Type Name Description
V1SelectableField left
V1SelectableField right
Returns
Type Description
bool

Implements

IEquatable<T>
  • View Source
In this article
Back to top Generated by DocFX