Files
csharp/src/generated/Models/V1AttachedVolume.cs

76 lines
2.3 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>
/// AttachedVolume describes a volume attached to a node
/// </summary>
public partial class V1AttachedVolume
{
/// <summary>
/// Initializes a new instance of the V1AttachedVolume class.
/// </summary>
public V1AttachedVolume()
{
2017-10-19 19:53:02 +00:00
CustomInit();
}
/// <summary>
/// Initializes a new instance of the V1AttachedVolume class.
/// </summary>
/// <param name="devicePath">DevicePath represents the device path
/// where the volume should be available</param>
/// <param name="name">Name of the attached volume</param>
public V1AttachedVolume(string devicePath, string name)
{
DevicePath = devicePath;
Name = name;
CustomInit();
}
/// <summary>
/// An initialization method that performs custom operations like setting defaults
/// </summary>
partial void CustomInit();
/// <summary>
/// Gets or sets devicePath represents the device path where the volume
/// should be available
/// </summary>
[JsonProperty(PropertyName = "devicePath")]
public string DevicePath { get; set; }
/// <summary>
/// Gets or sets name of the attached volume
/// </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 (DevicePath == null)
{
throw new ValidationException(ValidationRules.CannotBeNull, "DevicePath");
}
if (Name == null)
{
throw new ValidationException(ValidationRules.CannotBeNull, "Name");
}
}
}
}