51 lines
1.5 KiB
C#
51 lines
1.5 KiB
C#
|
|
// <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>
|
||
|
|
/// SessionAffinityConfig represents the configurations of session
|
||
|
|
/// affinity.
|
||
|
|
/// </summary>
|
||
|
|
public partial class V1SessionAffinityConfig
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Initializes a new instance of the V1SessionAffinityConfig class.
|
||
|
|
/// </summary>
|
||
|
|
public V1SessionAffinityConfig()
|
||
|
|
{
|
||
|
|
CustomInit();
|
||
|
|
}
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Initializes a new instance of the V1SessionAffinityConfig class.
|
||
|
|
/// </summary>
|
||
|
|
/// <param name="clientIP">clientIP contains the configurations of
|
||
|
|
/// Client IP based session affinity.</param>
|
||
|
|
public V1SessionAffinityConfig(V1ClientIPConfig clientIP = default(V1ClientIPConfig))
|
||
|
|
{
|
||
|
|
ClientIP = clientIP;
|
||
|
|
CustomInit();
|
||
|
|
}
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// An initialization method that performs custom operations like setting defaults
|
||
|
|
/// </summary>
|
||
|
|
partial void CustomInit();
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Gets or sets clientIP contains the configurations of Client IP
|
||
|
|
/// based session affinity.
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty(PropertyName = "clientIP")]
|
||
|
|
public V1ClientIPConfig ClientIP { get; set; }
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|