Show / Hide Table of Contents

Class V1CustomResourceColumnDefinition

CustomResourceColumnDefinition specifies a column for server side printing.

Inheritance
object
V1CustomResourceColumnDefinition
Implements
IEquatable<V1CustomResourceColumnDefinition>
Inherited Members
object.GetType()
object.MemberwiseClone()
object.Equals(object, object)
object.ReferenceEquals(object, object)
Namespace: k8s.Models
Assembly: KubernetesClient.dll
Syntax
public record V1CustomResourceColumnDefinition : IEquatable<V1CustomResourceColumnDefinition>

Constructors

V1CustomResourceColumnDefinition()

Declaration
public V1CustomResourceColumnDefinition()

V1CustomResourceColumnDefinition(V1CustomResourceColumnDefinition)

Declaration
protected V1CustomResourceColumnDefinition(V1CustomResourceColumnDefinition original)
Parameters
Type Name Description
V1CustomResourceColumnDefinition original

Properties

Description

description is a human readable description of this column.

Declaration
[JsonPropertyName("description")]
public string Description { get; set; }
Property Value
Type Description
string

EqualityContract

Declaration
protected virtual Type EqualityContract { get; }
Property Value
Type Description
Type

Format

format is an optional OpenAPI type definition for this column. The 'name' format is applied to the primary identifier column to assist in clients identifying column is the resource name. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details.

Declaration
[JsonPropertyName("format")]
public string Format { get; set; }
Property Value
Type Description
string

JsonPath

jsonPath is a simple JSON path (i.e. with array notation) which is evaluated against each custom resource to produce the value for this column.

Declaration
[JsonPropertyName("jsonPath")]
public string JsonPath { get; set; }
Property Value
Type Description
string

Name

name is a human readable name for the column.

Declaration
[JsonPropertyName("name")]
public string Name { get; set; }
Property Value
Type Description
string

Priority

priority is an integer defining the relative importance of this column compared to others. Lower numbers are considered higher priority. Columns that may be omitted in limited space scenarios should be given a priority greater than 0.

Declaration
[JsonPropertyName("priority")]
public int? Priority { get; set; }
Property Value
Type Description
int?

Type

type is an OpenAPI type definition for this column. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details.

Declaration
[JsonPropertyName("type")]
public string Type { get; set; }
Property Value
Type Description
string

Methods

Equals(object?)

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

Equals(V1CustomResourceColumnDefinition?)

Declaration
public virtual bool Equals(V1CustomResourceColumnDefinition? other)
Parameters
Type Name Description
V1CustomResourceColumnDefinition other
Returns
Type Description
bool

GetHashCode()

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

PrintMembers(StringBuilder)

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

ToString()

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

Operators

operator ==(V1CustomResourceColumnDefinition?, V1CustomResourceColumnDefinition?)

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

operator !=(V1CustomResourceColumnDefinition?, V1CustomResourceColumnDefinition?)

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

Implements

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