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

65 lines
1.8 KiB
C#
Raw Normal View History

2017-10-19 19:53:02 +00: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.
2017-10-19 19:53:02 +00:00
// </auto-generated>
namespace k8s.Models
{
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Linq;
/// <summary>
2017-10-19 19:53:02 +00:00
/// Initializer is information about an initializer that has not yet
/// completed.
/// </summary>
2017-10-19 19:53:02 +00:00
public partial class V1Initializer
{
/// <summary>
2017-10-19 19:53:02 +00:00
/// Initializes a new instance of the V1Initializer class.
/// </summary>
2017-10-19 19:53:02 +00:00
public V1Initializer()
{
2017-10-19 19:53:02 +00:00
CustomInit();
}
/// <summary>
2017-10-19 19:53:02 +00:00
/// Initializes a new instance of the V1Initializer class.
/// </summary>
2017-10-19 19:53:02 +00:00
/// <param name="name">name of the process that is responsible for
/// initializing this object.</param>
public V1Initializer(string name)
{
Name = name;
CustomInit();
}
/// <summary>
/// An initialization method that performs custom operations like setting defaults
/// </summary>
partial void CustomInit();
/// <summary>
2017-10-19 19:53:02 +00:00
/// Gets or sets name of the process that is responsible for
/// initializing this object.
/// </summary>
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
/// <summary>
/// Validate the object.
/// </summary>
/// <exception cref="ValidationException">
/// Thrown if validation fails
/// </exception>
public virtual void Validate()
{
if (Name == null)
{
throw new ValidationException(ValidationRules.CannotBeNull, "Name");
}
}
}
}