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