Files
csharp/src/KubernetesClient/generated/Models/Extensionsv1beta1ScaleSpec.cs

49 lines
1.4 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 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()
{
2017-10-19 19:53:02 +00:00
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; }
}
}