Show / Hide Table of Contents

Class V1IngressClassSpec

IngressClassSpec provides information about the class of an Ingress.

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

Constructors

View Source

V1IngressClassSpec()

Declaration
public V1IngressClassSpec()
View Source

V1IngressClassSpec(V1IngressClassSpec)

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

Properties

View Source

Controller

controller refers to the name of the controller that should handle this class. This allows for different "flavors" that are controlled by the same controller. For example, you may have different parameters for the same implementing controller. This should be specified as a domain-prefixed path no more than 250 characters in length, e.g. "acme.io/ingress-controller". This field is immutable.

Declaration
[JsonPropertyName("controller")]
public string Controller { get; set; }
Property Value
Type Description
string
View Source

EqualityContract

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

Parameters

parameters is a link to a custom resource containing additional configuration for the controller. This is optional if the controller does not require extra parameters.

Declaration
[JsonPropertyName("parameters")]
public V1IngressClassParametersReference Parameters { get; set; }
Property Value
Type Description
V1IngressClassParametersReference

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(V1IngressClassSpec?)

Declaration
public virtual bool Equals(V1IngressClassSpec? other)
Parameters
Type Name Description
V1IngressClassSpec 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 ==(V1IngressClassSpec?, V1IngressClassSpec?)

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

operator !=(V1IngressClassSpec?, V1IngressClassSpec?)

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

Implements

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