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
View Source
V1StatusDetails()
Declaration
View Source
V1StatusDetails(V1StatusDetails)
Declaration
protected V1StatusDetails(V1StatusDetails original)
Parameters
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
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
Group
The group attribute of the resource associated with the status StatusReason.
Declaration
[JsonPropertyName("group")]
public string Group { get; set; }
Property Value
View Source
Kind
Declaration
[JsonPropertyName("kind")]
public string Kind { get; set; }
Property Value
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
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
View Source
Uid
Declaration
[JsonPropertyName("uid")]
public string Uid { 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(V1StatusDetails?)
Declaration
public virtual bool Equals(V1StatusDetails? 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 ==(V1StatusDetails?, V1StatusDetails?)
Declaration
public static bool operator ==(V1StatusDetails? left, V1StatusDetails? right)
Parameters
Returns
View Source
operator !=(V1StatusDetails?, V1StatusDetails?)
Declaration
public static bool operator !=(V1StatusDetails? left, V1StatusDetails? right)
Parameters
Returns
Implements