Move projects to subdirectories of /src and /tests (#134)
kubernetes-client/csharp#127
This commit is contained in:
committed by
Brendan Burns
parent
dc97164332
commit
ea62ca00e0
@@ -0,0 +1,50 @@
|
||||
// <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; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user