2017-06-16 10:47:10 -07:00
|
|
|
// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
|
2017-06-06 23:02:14 -07:00
|
|
|
// Changes may cause incorrect behavior and will be lost if the code is
|
|
|
|
|
// regenerated.
|
|
|
|
|
|
|
|
|
|
namespace k8s.Models
|
|
|
|
|
{
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// ScaleSpec describes the attributes of a scale subresource
|
|
|
|
|
/// </summary>
|
|
|
|
|
public partial class Appsv1beta1ScaleSpec
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Initializes a new instance of the Appsv1beta1ScaleSpec class.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public Appsv1beta1ScaleSpec()
|
|
|
|
|
{
|
|
|
|
|
CustomInit();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Initializes a new instance of the Appsv1beta1ScaleSpec class.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="replicas">desired number of instances for the scaled
|
|
|
|
|
/// object.</param>
|
|
|
|
|
public Appsv1beta1ScaleSpec(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; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|