Files
csharp/src/generated/Models/V1HorizontalPodAutoscaler.cs
2017-06-16 10:47:10 -07:00

116 lines
4.8 KiB
C#
Executable File

// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
namespace k8s.Models
{
using Newtonsoft.Json;
using System.Linq;
/// <summary>
/// configuration of a horizontal pod autoscaler.
/// </summary>
public partial class V1HorizontalPodAutoscaler
{
/// <summary>
/// Initializes a new instance of the V1HorizontalPodAutoscaler class.
/// </summary>
public V1HorizontalPodAutoscaler()
{
CustomInit();
}
/// <summary>
/// Initializes a new instance of the V1HorizontalPodAutoscaler class.
/// </summary>
/// <param name="apiVersion">APIVersion defines the versioned schema of
/// this representation of an object. Servers should convert recognized
/// schemas to the latest internal value, and may reject unrecognized
/// values. More info:
/// http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources</param>
/// <param name="kind">Kind is a string value representing the REST
/// resource this object represents. Servers may infer this from the
/// endpoint the client submits requests to. Cannot be updated. In
/// CamelCase. More info:
/// http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds</param>
/// <param name="metadata">Standard object metadata. More info:
/// http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata</param>
/// <param name="spec">behaviour of autoscaler. More info:
/// http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status.</param>
/// <param name="status">current information about the
/// autoscaler.</param>
public V1HorizontalPodAutoscaler(string apiVersion = default(string), string kind = default(string), V1ObjectMeta metadata = default(V1ObjectMeta), V1HorizontalPodAutoscalerSpec spec = default(V1HorizontalPodAutoscalerSpec), V1HorizontalPodAutoscalerStatus status = default(V1HorizontalPodAutoscalerStatus))
{
ApiVersion = apiVersion;
Kind = kind;
Metadata = metadata;
Spec = spec;
Status = status;
CustomInit();
}
/// <summary>
/// An initialization method that performs custom operations like setting defaults
/// </summary>
partial void CustomInit();
/// <summary>
/// Gets or sets aPIVersion defines the versioned schema of this
/// representation of an object. Servers should convert recognized
/// schemas to the latest internal value, and may reject unrecognized
/// values. More info:
/// http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
/// </summary>
[JsonProperty(PropertyName = "apiVersion")]
public string ApiVersion { get; set; }
/// <summary>
/// Gets or sets kind is a string value representing the REST resource
/// this object represents. Servers may infer this from the endpoint
/// the client submits requests to. Cannot be updated. In CamelCase.
/// More info:
/// http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
/// </summary>
[JsonProperty(PropertyName = "kind")]
public string Kind { get; set; }
/// <summary>
/// Gets or sets standard object metadata. More info:
/// http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
/// </summary>
[JsonProperty(PropertyName = "metadata")]
public V1ObjectMeta Metadata { get; set; }
/// <summary>
/// Gets or sets behaviour of autoscaler. More info:
/// http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status.
/// </summary>
[JsonProperty(PropertyName = "spec")]
public V1HorizontalPodAutoscalerSpec Spec { get; set; }
/// <summary>
/// Gets or sets current information about the autoscaler.
/// </summary>
[JsonProperty(PropertyName = "status")]
public V1HorizontalPodAutoscalerStatus Status { get; set; }
/// <summary>
/// Validate the object.
/// </summary>
/// <exception cref="Microsoft.Rest.ValidationException">
/// Thrown if validation fails
/// </exception>
public virtual void Validate()
{
if (Spec != null)
{
Spec.Validate();
}
if (Status != null)
{
Status.Validate();
}
}
}
}