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