Show / Hide Table of Contents

Class V1LimitResponse

LimitResponse defines how to handle requests that can not be executed right now.

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

Constructors

View Source

V1LimitResponse()

Declaration
public V1LimitResponse()
View Source

V1LimitResponse(V1LimitResponse)

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

Properties

View Source

EqualityContract

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

Queuing

queuing holds the configuration parameters for queuing. This field may be non-empty only if type is "Queue".

Declaration
[JsonPropertyName("queuing")]
public V1QueuingConfiguration Queuing { get; set; }
Property Value
Type Description
V1QueuingConfiguration
View Source

Type

type is "Queue" or "Reject". "Queue" means that requests that can not be executed upon arrival are held in a queue until they can be executed or a queuing limit is reached. "Reject" means that requests that can not be executed upon arrival are rejected. Required.

Declaration
[JsonPropertyName("type")]
public string Type { 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(V1LimitResponse?)

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

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

operator !=(V1LimitResponse?, V1LimitResponse?)

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

Implements

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