Files
csharp/src/generated/Models/V1ContainerStateTerminated.cs
2017-06-16 10:47:10 -07:00

115 lines
4.2 KiB
C#
Executable File

// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
namespace k8s.Models
{
using Newtonsoft.Json;
using System.Linq;
/// <summary>
/// ContainerStateTerminated is a terminated state of a container.
/// </summary>
public partial class V1ContainerStateTerminated
{
/// <summary>
/// Initializes a new instance of the V1ContainerStateTerminated class.
/// </summary>
public V1ContainerStateTerminated()
{
CustomInit();
}
/// <summary>
/// Initializes a new instance of the V1ContainerStateTerminated class.
/// </summary>
/// <param name="exitCode">Exit status from the last termination of the
/// container</param>
/// <param name="containerID">Container's ID in the format
/// 'docker://&lt;container_id&gt;'</param>
/// <param name="finishedAt">Time at which the container last
/// terminated</param>
/// <param name="message">Message regarding the last termination of the
/// container</param>
/// <param name="reason">(brief) reason from the last termination of
/// the container</param>
/// <param name="signal">Signal from the last termination of the
/// container</param>
/// <param name="startedAt">Time at which previous execution of the
/// container started</param>
public V1ContainerStateTerminated(int exitCode, string containerID = default(string), System.DateTime? finishedAt = default(System.DateTime?), string message = default(string), string reason = default(string), int? signal = default(int?), System.DateTime? startedAt = default(System.DateTime?))
{
ContainerID = containerID;
ExitCode = exitCode;
FinishedAt = finishedAt;
Message = message;
Reason = reason;
Signal = signal;
StartedAt = startedAt;
CustomInit();
}
/// <summary>
/// An initialization method that performs custom operations like setting defaults
/// </summary>
partial void CustomInit();
/// <summary>
/// Gets or sets container's ID in the format
/// 'docker://&amp;lt;container_id&amp;gt;'
/// </summary>
[JsonProperty(PropertyName = "containerID")]
public string ContainerID { get; set; }
/// <summary>
/// Gets or sets exit status from the last termination of the container
/// </summary>
[JsonProperty(PropertyName = "exitCode")]
public int ExitCode { get; set; }
/// <summary>
/// Gets or sets time at which the container last terminated
/// </summary>
[JsonProperty(PropertyName = "finishedAt")]
public System.DateTime? FinishedAt { get; set; }
/// <summary>
/// Gets or sets message regarding the last termination of the
/// container
/// </summary>
[JsonProperty(PropertyName = "message")]
public string Message { get; set; }
/// <summary>
/// Gets or sets (brief) reason from the last termination of the
/// container
/// </summary>
[JsonProperty(PropertyName = "reason")]
public string Reason { get; set; }
/// <summary>
/// Gets or sets signal from the last termination of the container
/// </summary>
[JsonProperty(PropertyName = "signal")]
public int? Signal { get; set; }
/// <summary>
/// Gets or sets time at which previous execution of the container
/// started
/// </summary>
[JsonProperty(PropertyName = "startedAt")]
public System.DateTime? StartedAt { get; set; }
/// <summary>
/// Validate the object.
/// </summary>
/// <exception cref="Microsoft.Rest.ValidationException">
/// Thrown if validation fails
/// </exception>
public virtual void Validate()
{
//Nothing to validate
}
}
}