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

69 lines
2.3 KiB
C#
Raw Normal View History

2018-01-27 04:25:58 +08:00
// <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>
/// EventSeries contain information on series of events, i.e. thing that
2018-03-28 10:30:09 +08:00
/// was/is happening continuously for some time.
2018-01-27 04:25:58 +08:00
/// </summary>
public partial class V1EventSeries
{
/// <summary>
/// Initializes a new instance of the V1EventSeries class.
/// </summary>
public V1EventSeries()
{
CustomInit();
}
/// <summary>
/// Initializes a new instance of the V1EventSeries class.
/// </summary>
/// <param name="count">Number of occurrences in this series up to the
/// last heartbeat time</param>
2018-03-28 10:30:09 +08:00
/// <param name="lastObservedTime">Time of the last occurrence
2018-01-27 04:25:58 +08:00
/// observed</param>
/// <param name="state">State of this Series: Ongoing or
/// Finished</param>
public V1EventSeries(int? count = default(int?), System.DateTime? lastObservedTime = default(System.DateTime?), string state = default(string))
{
Count = count;
LastObservedTime = lastObservedTime;
State = state;
CustomInit();
}
/// <summary>
/// An initialization method that performs custom operations like setting defaults
/// </summary>
partial void CustomInit();
/// <summary>
/// Gets or sets number of occurrences in this series up to the last
/// heartbeat time
/// </summary>
[JsonProperty(PropertyName = "count")]
public int? Count { get; set; }
/// <summary>
2018-03-28 10:30:09 +08:00
/// Gets or sets time of the last occurrence observed
2018-01-27 04:25:58 +08:00
/// </summary>
[JsonProperty(PropertyName = "lastObservedTime")]
public System.DateTime? LastObservedTime { get; set; }
/// <summary>
/// Gets or sets state of this Series: Ongoing or Finished
/// </summary>
[JsonProperty(PropertyName = "state")]
public string State { get; set; }
}
}