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

61 lines
2.0 KiB
C#
Raw Normal View History

2018-01-27 04:25:58 +08: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.
// </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 V1DeploymentStrategy
{
/// <summary>
/// Initializes a new instance of the V1DeploymentStrategy class.
/// </summary>
public V1DeploymentStrategy()
{
CustomInit();
}
/// <summary>
/// Initializes a new instance of the V1DeploymentStrategy 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 V1DeploymentStrategy(V1RollingUpdateDeployment rollingUpdate = default(V1RollingUpdateDeployment), 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 V1RollingUpdateDeployment 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; }
}
}