2017-10-19 19:53:02 +00:00
|
|
|
// <auto-generated>
|
|
|
|
|
// Code generated by Microsoft (R) AutoRest Code Generator.
|
2017-06-06 23:02:14 -07:00
|
|
|
// Changes may cause incorrect behavior and will be lost if the code is
|
|
|
|
|
// regenerated.
|
2017-10-19 19:53:02 +00:00
|
|
|
// </auto-generated>
|
2017-06-06 23:02:14 -07:00
|
|
|
|
|
|
|
|
namespace k8s.Models
|
|
|
|
|
{
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// EventSource contains information for an event.
|
|
|
|
|
/// </summary>
|
2017-10-19 19:53:02 +00:00
|
|
|
public partial class Corev1EventSource
|
2017-06-06 23:02:14 -07:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
2017-10-19 19:53:02 +00:00
|
|
|
/// Initializes a new instance of the Corev1EventSource class.
|
2017-06-06 23:02:14 -07:00
|
|
|
/// </summary>
|
2017-10-19 19:53:02 +00:00
|
|
|
public Corev1EventSource()
|
2017-06-06 23:02:14 -07:00
|
|
|
{
|
2017-10-19 19:53:02 +00:00
|
|
|
CustomInit();
|
2017-06-06 23:02:14 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2017-10-19 19:53:02 +00:00
|
|
|
/// Initializes a new instance of the Corev1EventSource class.
|
2017-06-06 23:02:14 -07:00
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="component">Component from which the event is
|
|
|
|
|
/// generated.</param>
|
|
|
|
|
/// <param name="host">Node name on which the event is
|
|
|
|
|
/// generated.</param>
|
2017-10-19 19:53:02 +00:00
|
|
|
public Corev1EventSource(string component = default(string), string host = default(string))
|
2017-06-06 23:02:14 -07:00
|
|
|
{
|
|
|
|
|
Component = component;
|
|
|
|
|
Host = host;
|
|
|
|
|
CustomInit();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// An initialization method that performs custom operations like setting defaults
|
|
|
|
|
/// </summary>
|
|
|
|
|
partial void CustomInit();
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets component from which the event is generated.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[JsonProperty(PropertyName = "component")]
|
|
|
|
|
public string Component { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets node name on which the event is generated.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[JsonProperty(PropertyName = "host")]
|
|
|
|
|
public string Host { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|