69 lines
2.3 KiB
C#
69 lines
2.3 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>
|
||
|
|
/// EventSeries contain information on series of events, i.e. thing that
|
||
|
|
/// was/is happening continously for some time.
|
||
|
|
/// </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>
|
||
|
|
/// <param name="lastObservedTime">Time of the last occurence
|
||
|
|
/// 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>
|
||
|
|
/// Gets or sets time of the last occurence observed
|
||
|
|
/// </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; }
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|