Files
csharp/src/KubernetesClient/generated/Models/V1ContainerStateRunning.cs

49 lines
1.5 KiB
C#

// <auto-generated>
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
// </auto-generated>
namespace k8s.Models
{
using Newtonsoft.Json;
using System.Linq;
/// <summary>
/// ContainerStateRunning is a running state of a container.
/// </summary>
public partial class V1ContainerStateRunning
{
/// <summary>
/// Initializes a new instance of the V1ContainerStateRunning class.
/// </summary>
public V1ContainerStateRunning()
{
CustomInit();
}
/// <summary>
/// Initializes a new instance of the V1ContainerStateRunning class.
/// </summary>
/// <param name="startedAt">Time at which the container was last
/// (re-)started</param>
public V1ContainerStateRunning(System.DateTime? startedAt = default(System.DateTime?))
{
StartedAt = startedAt;
CustomInit();
}
/// <summary>
/// An initialization method that performs custom operations like setting defaults
/// </summary>
partial void CustomInit();
/// <summary>
/// Gets or sets time at which the container was last (re-)started
/// </summary>
[JsonProperty(PropertyName = "startedAt")]
public System.DateTime? StartedAt { get; set; }
}
}