Class V1CustomResourceColumnDefinition
CustomResourceColumnDefinition specifies a column for server side printing.
Inheritance
V1CustomResourceColumnDefinition
Assembly: KubernetesClient.dll
Syntax
public record V1CustomResourceColumnDefinition : IEquatable<V1CustomResourceColumnDefinition>
Constructors
V1CustomResourceColumnDefinition()
Declaration
public V1CustomResourceColumnDefinition()
V1CustomResourceColumnDefinition(V1CustomResourceColumnDefinition)
Declaration
protected V1CustomResourceColumnDefinition(V1CustomResourceColumnDefinition original)
Parameters
Properties
Description
description is a human readable description of this column.
Declaration
[JsonPropertyName("description")]
public string Description { get; set; }
Property Value
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
Declaration
[JsonPropertyName("format")]
public string Format { get; set; }
Property Value
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
Name
name is a human readable name for the column.
Declaration
[JsonPropertyName("name")]
public string Name { get; set; }
Property Value
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
Declaration
[JsonPropertyName("type")]
public string Type { get; set; }
Property Value
Methods
Equals(object?)
Declaration
public override bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
Equals(V1CustomResourceColumnDefinition?)
Declaration
public virtual bool Equals(V1CustomResourceColumnDefinition? 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 ==(V1CustomResourceColumnDefinition?, V1CustomResourceColumnDefinition?)
Declaration
public static bool operator ==(V1CustomResourceColumnDefinition? left, V1CustomResourceColumnDefinition? right)
Parameters
Returns
operator !=(V1CustomResourceColumnDefinition?, V1CustomResourceColumnDefinition?)
Declaration
public static bool operator !=(V1CustomResourceColumnDefinition? left, V1CustomResourceColumnDefinition? right)
Parameters
Returns
Implements