115 lines
5.0 KiB
C#
115 lines
5.0 KiB
C#
// <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>
|
|
/// ReplicaSetSpec is the specification of a ReplicaSet.
|
|
/// </summary>
|
|
public partial class V1beta2ReplicaSetSpec
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the V1beta2ReplicaSetSpec class.
|
|
/// </summary>
|
|
public V1beta2ReplicaSetSpec()
|
|
{
|
|
CustomInit();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the V1beta2ReplicaSetSpec class.
|
|
/// </summary>
|
|
/// <param name="selector">Selector is a label query over pods that
|
|
/// should match the replica count. Label keys and values that must
|
|
/// match in order to be controlled by this replica set. It must match
|
|
/// the pod template's labels. More info:
|
|
/// https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors</param>
|
|
/// <param name="minReadySeconds">Minimum number of seconds for which a
|
|
/// newly created pod should be ready without any of its container
|
|
/// crashing, for it to be considered available. Defaults to 0 (pod
|
|
/// will be considered available as soon as it is ready)</param>
|
|
/// <param name="replicas">Replicas is the number of desired replicas.
|
|
/// This is a pointer to distinguish between explicit zero and
|
|
/// unspecified. Defaults to 1. More info:
|
|
/// https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller</param>
|
|
/// <param name="template">Template is the object that describes the
|
|
/// pod that will be created if insufficient replicas are detected.
|
|
/// More info:
|
|
/// https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template</param>
|
|
public V1beta2ReplicaSetSpec(V1LabelSelector selector, int? minReadySeconds = default(int?), int? replicas = default(int?), V1PodTemplateSpec template = default(V1PodTemplateSpec))
|
|
{
|
|
MinReadySeconds = minReadySeconds;
|
|
Replicas = replicas;
|
|
Selector = selector;
|
|
Template = template;
|
|
CustomInit();
|
|
}
|
|
|
|
/// <summary>
|
|
/// An initialization method that performs custom operations like setting defaults
|
|
/// </summary>
|
|
partial void CustomInit();
|
|
|
|
/// <summary>
|
|
/// Gets or sets minimum number of seconds for which a newly created
|
|
/// pod should be ready without any of its container crashing, for it
|
|
/// to be considered available. Defaults to 0 (pod will be considered
|
|
/// available as soon as it is ready)
|
|
/// </summary>
|
|
[JsonProperty(PropertyName = "minReadySeconds")]
|
|
public int? MinReadySeconds { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets replicas is the number of desired replicas. This is a
|
|
/// pointer to distinguish between explicit zero and unspecified.
|
|
/// Defaults to 1. More info:
|
|
/// https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller
|
|
/// </summary>
|
|
[JsonProperty(PropertyName = "replicas")]
|
|
public int? Replicas { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets selector is a label query over pods that should match
|
|
/// the replica count. Label keys and values that must match in order
|
|
/// to be controlled by this replica set. It must match the pod
|
|
/// template's labels. More info:
|
|
/// https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
|
|
/// </summary>
|
|
[JsonProperty(PropertyName = "selector")]
|
|
public V1LabelSelector Selector { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets template is the object that describes the pod that
|
|
/// will be created if insufficient replicas are detected. More info:
|
|
/// https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template
|
|
/// </summary>
|
|
[JsonProperty(PropertyName = "template")]
|
|
public V1PodTemplateSpec Template { get; set; }
|
|
|
|
/// <summary>
|
|
/// Validate the object.
|
|
/// </summary>
|
|
/// <exception cref="ValidationException">
|
|
/// Thrown if validation fails
|
|
/// </exception>
|
|
public virtual void Validate()
|
|
{
|
|
if (Selector == null)
|
|
{
|
|
throw new ValidationException(ValidationRules.CannotBeNull, "Selector");
|
|
}
|
|
if (Template != null)
|
|
{
|
|
Template.Validate();
|
|
}
|
|
}
|
|
}
|
|
}
|