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,48 @@
// <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 Newtonsoft.Json;
using System.Linq;
/// <summary>
/// describes the attributes of a scale subresource
/// </summary>
public partial class Extensionsv1beta1ScaleSpec
{
/// <summary>
/// Initializes a new instance of the Extensionsv1beta1ScaleSpec class.
/// </summary>
public Extensionsv1beta1ScaleSpec()
{
CustomInit();
}
/// <summary>
/// Initializes a new instance of the Extensionsv1beta1ScaleSpec class.
/// </summary>
/// <param name="replicas">desired number of instances for the scaled
/// object.</param>
public Extensionsv1beta1ScaleSpec(int? replicas = default(int?))
{
Replicas = replicas;
CustomInit();
}
/// <summary>
/// An initialization method that performs custom operations like setting defaults
/// </summary>
partial void CustomInit();
/// <summary>
/// Gets or sets desired number of instances for the scaled object.
/// </summary>
[JsonProperty(PropertyName = "replicas")]
public int? Replicas { get; set; }
}
}