Files
csharp/src/generated/Models/Extensionsv1beta1DeploymentStrategy.cs

63 lines
2.2 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>
/// DeploymentStrategy describes how to replace existing pods with new
/// ones.
/// </summary>
public partial class Extensionsv1beta1DeploymentStrategy
{
/// <summary>
/// Initializes a new instance of the
/// Extensionsv1beta1DeploymentStrategy class.
/// </summary>
public Extensionsv1beta1DeploymentStrategy()
{
2017-10-19 19:53:02 +00:00
CustomInit();
}
/// <summary>
/// Initializes a new instance of the
/// Extensionsv1beta1DeploymentStrategy class.
/// </summary>
/// <param name="rollingUpdate">Rolling update config params. Present
/// only if DeploymentStrategyType = RollingUpdate.</param>
/// <param name="type">Type of deployment. Can be "Recreate" or
/// "RollingUpdate". Default is RollingUpdate.</param>
public Extensionsv1beta1DeploymentStrategy(Extensionsv1beta1RollingUpdateDeployment rollingUpdate = default(Extensionsv1beta1RollingUpdateDeployment), string type = default(string))
{
RollingUpdate = rollingUpdate;
Type = type;
CustomInit();
}
/// <summary>
/// An initialization method that performs custom operations like setting defaults
/// </summary>
partial void CustomInit();
/// <summary>
/// Gets or sets rolling update config params. Present only if
/// DeploymentStrategyType = RollingUpdate.
/// </summary>
[JsonProperty(PropertyName = "rollingUpdate")]
public Extensionsv1beta1RollingUpdateDeployment RollingUpdate { get; set; }
/// <summary>
/// Gets or sets type of deployment. Can be "Recreate" or
/// "RollingUpdate". Default is RollingUpdate.
/// </summary>
[JsonProperty(PropertyName = "type")]
public string Type { get; set; }
}
}