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

74 lines
2.3 KiB
C#
Raw Normal View History

2017-06-16 10:47:10 -07:00
// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
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()
{
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");
}
}
}
}