47 lines
1.4 KiB
C#
47 lines
1.4 KiB
C#
|
|
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0
|
||
|
|
// Changes may cause incorrect behavior and will be lost if the code is
|
||
|
|
// regenerated.
|
||
|
|
|
||
|
|
namespace k8s.Models
|
||
|
|
{
|
||
|
|
using Newtonsoft.Json;
|
||
|
|
using System.Linq;
|
||
|
|
|
||
|
|
public partial class Extensionsv1beta1RollbackConfig
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Initializes a new instance of the Extensionsv1beta1RollbackConfig
|
||
|
|
/// class.
|
||
|
|
/// </summary>
|
||
|
|
public Extensionsv1beta1RollbackConfig()
|
||
|
|
{
|
||
|
|
CustomInit();
|
||
|
|
}
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Initializes a new instance of the Extensionsv1beta1RollbackConfig
|
||
|
|
/// class.
|
||
|
|
/// </summary>
|
||
|
|
/// <param name="revision">The revision to rollback to. If set to 0,
|
||
|
|
/// rollbck to the last revision.</param>
|
||
|
|
public Extensionsv1beta1RollbackConfig(long? revision = default(long?))
|
||
|
|
{
|
||
|
|
Revision = revision;
|
||
|
|
CustomInit();
|
||
|
|
}
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// An initialization method that performs custom operations like setting defaults
|
||
|
|
/// </summary>
|
||
|
|
partial void CustomInit();
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Gets or sets the revision to rollback to. If set to 0, rollbck to
|
||
|
|
/// the last revision.
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty(PropertyName = "revision")]
|
||
|
|
public long? Revision { get; set; }
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|