Class V1ContainerStateTerminated
ContainerStateTerminated is a terminated state of a container.
Inheritance
V1ContainerStateTerminated
Assembly: KubernetesClient.dll
Syntax
public record V1ContainerStateTerminated : IEquatable<V1ContainerStateTerminated>
Constructors
View Source
V1ContainerStateTerminated()
Declaration
public V1ContainerStateTerminated()
View Source
V1ContainerStateTerminated(V1ContainerStateTerminated)
Declaration
protected V1ContainerStateTerminated(V1ContainerStateTerminated original)
Parameters
Properties
View Source
ContainerID
Container's ID in the format ' <type>://<container_id> '
Declaration
[JsonPropertyName("containerID")]
public string ContainerID { get; set; }
Property Value
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
ExitCode
Exit status from the last termination of the container
Declaration
[JsonPropertyName("exitCode")]
public int ExitCode { get; set; }
Property Value
View Source
FinishedAt
Time at which the container last terminated
Declaration
[JsonPropertyName("finishedAt")]
public DateTime? FinishedAt { get; set; }
Property Value
View Source
Message
Message regarding the last termination of the container
Declaration
[JsonPropertyName("message")]
public string Message { get; set; }
Property Value
View Source
Reason
(brief) reason from the last termination of the container
Declaration
[JsonPropertyName("reason")]
public string Reason { get; set; }
Property Value
View Source
Signal
Signal from the last termination of the container
Declaration
[JsonPropertyName("signal")]
public int? Signal { get; set; }
Property Value
View Source
StartedAt
Time at which previous execution of the container started
Declaration
[JsonPropertyName("startedAt")]
public DateTime? StartedAt { 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(V1ContainerStateTerminated?)
Declaration
public virtual bool Equals(V1ContainerStateTerminated? 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 ==(V1ContainerStateTerminated?, V1ContainerStateTerminated?)
Declaration
public static bool operator ==(V1ContainerStateTerminated? left, V1ContainerStateTerminated? right)
Parameters
Returns
View Source
operator !=(V1ContainerStateTerminated?, V1ContainerStateTerminated?)
Declaration
public static bool operator !=(V1ContainerStateTerminated? left, V1ContainerStateTerminated? right)
Parameters
Returns
Implements