Show / Hide Table of Contents

Class V1ContainerStateTerminated

ContainerStateTerminated is a terminated state of a container.

Inheritance
object
V1ContainerStateTerminated
Implements
IEquatable<V1ContainerStateTerminated>
Inherited Members
object.GetType()
object.MemberwiseClone()
object.Equals(object, object)
object.ReferenceEquals(object, object)
Namespace: k8s.Models
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
Type Name Description
V1ContainerStateTerminated original

Properties

View Source

ContainerID

Container's ID in the format ' <type>://<container_id> '

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

EqualityContract

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

ExitCode

Exit status from the last termination of the container

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

FinishedAt

Time at which the container last terminated

Declaration
[JsonPropertyName("finishedAt")]
public DateTime? FinishedAt { get; set; }
Property Value
Type Description
DateTime?
View Source

Message

Message regarding the last termination of the container

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

Reason

(brief) reason from the last termination of the container

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

Signal

Signal from the last termination of the container

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

StartedAt

Time at which previous execution of the container started

Declaration
[JsonPropertyName("startedAt")]
public DateTime? StartedAt { get; set; }
Property Value
Type Description
DateTime?

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(V1ContainerStateTerminated?)

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

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

operator !=(V1ContainerStateTerminated?, V1ContainerStateTerminated?)

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

Implements

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