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
V1StatusDetails
Assembly: KubernetesClient.dll
Syntax
public record V1StatusDetails : IEquatable<V1StatusDetails>
Constructors
V1StatusDetails()
Declaration
V1StatusDetails(V1StatusDetails)
Declaration
protected V1StatusDetails(V1StatusDetails original)
Parameters
Properties
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
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
Group
The group attribute of the resource associated with the status StatusReason.
Declaration
[JsonPropertyName("group")]
public string Group { get; set; }
Property Value
Kind
Declaration
[JsonPropertyName("kind")]
public string Kind { get; set; }
Property Value
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
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
Uid
Declaration
[JsonPropertyName("uid")]
public string Uid { get; set; }
Property Value
Methods
Equals(object?)
Declaration
public override bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
Equals(V1StatusDetails?)
Declaration
public virtual bool Equals(V1StatusDetails? 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 ==(V1StatusDetails?, V1StatusDetails?)
Declaration
public static bool operator ==(V1StatusDetails? left, V1StatusDetails? right)
Parameters
Returns
operator !=(V1StatusDetails?, V1StatusDetails?)
Declaration
public static bool operator !=(V1StatusDetails? left, V1StatusDetails? right)
Parameters
Returns
Implements