Move projects to subdirectories of /src and /tests (#134)

kubernetes-client/csharp#127
This commit is contained in:
Adam Friedman
2018-04-05 15:13:45 +10:00
committed by Brendan Burns
parent dc97164332
commit ea62ca00e0
616 changed files with 162 additions and 26 deletions

View File

@@ -0,0 +1,79 @@
// <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 Microsoft.Rest;
using Newtonsoft.Json;
using System.Linq;
/// <summary>
/// An empty preferred scheduling term matches all objects with implicit
/// weight 0 (i.e. it's a no-op). A null preferred scheduling term matches
/// no objects (i.e. is also a no-op).
/// </summary>
public partial class V1PreferredSchedulingTerm
{
/// <summary>
/// Initializes a new instance of the V1PreferredSchedulingTerm class.
/// </summary>
public V1PreferredSchedulingTerm()
{
CustomInit();
}
/// <summary>
/// Initializes a new instance of the V1PreferredSchedulingTerm class.
/// </summary>
/// <param name="preference">A node selector term, associated with the
/// corresponding weight.</param>
/// <param name="weight">Weight associated with matching the
/// corresponding nodeSelectorTerm, in the range 1-100.</param>
public V1PreferredSchedulingTerm(V1NodeSelectorTerm preference, int weight)
{
Preference = preference;
Weight = weight;
CustomInit();
}
/// <summary>
/// An initialization method that performs custom operations like setting defaults
/// </summary>
partial void CustomInit();
/// <summary>
/// Gets or sets a node selector term, associated with the
/// corresponding weight.
/// </summary>
[JsonProperty(PropertyName = "preference")]
public V1NodeSelectorTerm Preference { get; set; }
/// <summary>
/// Gets or sets weight associated with matching the corresponding
/// nodeSelectorTerm, in the range 1-100.
/// </summary>
[JsonProperty(PropertyName = "weight")]
public int Weight { get; set; }
/// <summary>
/// Validate the object.
/// </summary>
/// <exception cref="ValidationException">
/// Thrown if validation fails
/// </exception>
public virtual void Validate()
{
if (Preference == null)
{
throw new ValidationException(ValidationRules.CannotBeNull, "Preference");
}
if (Preference != null)
{
Preference.Validate();
}
}
}
}