Show / Hide Table of Contents

Class V1StatusDetails

StatusDetails is a set of additional properties that MAY be set by the server to provide additional information about a response. The Reason field of a Status object defines what attributes will be set. Clients must ignore fields that do not match the defined type of each attribute, and should assume that any attribute may be empty, invalid, or under defined.

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

Constructors

View Source

V1StatusDetails()

Declaration
public V1StatusDetails()
View Source

V1StatusDetails(V1StatusDetails)

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

Properties

View Source

Causes

The Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes.

Declaration
[JsonPropertyName("causes")]
public IList<V1StatusCause> Causes { get; set; }
Property Value
Type Description
IList<V1StatusCause>
View Source

EqualityContract

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

Group

The group attribute of the resource associated with the status StatusReason.

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

Kind

The kind attribute of the resource associated with the status StatusReason. On some operations may differ from the requested resource Kind. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds

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

Name

The name attribute of the resource associated with the status StatusReason (when there is a single name which can be described).

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

RetryAfterSeconds

If specified, the time in seconds before the operation should be retried. Some errors may indicate the client must take an alternate action - for those errors this field may indicate how long to wait before taking the alternate action.

Declaration
[JsonPropertyName("retryAfterSeconds")]
public int? RetryAfterSeconds { get; set; }
Property Value
Type Description
int?
View Source

Uid

UID of the resource. (when there is a single resource which can be described). More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids

Declaration
[JsonPropertyName("uid")]
public string Uid { 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(V1StatusDetails?)

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

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

operator !=(V1StatusDetails?, V1StatusDetails?)

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

Implements

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