Move projects to subdirectories of /src and /tests (#134)
kubernetes-client/csharp#127
This commit is contained in:
committed by
Brendan Burns
parent
dc97164332
commit
ea62ca00e0
68
src/KubernetesClient/generated/Models/V1EventSeries.cs
Normal file
68
src/KubernetesClient/generated/Models/V1EventSeries.cs
Normal file
@@ -0,0 +1,68 @@
|
||||
// <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 continuously 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 occurrence
|
||||
/// 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 occurrence 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; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user