* remove most net452 related code * first net4 remove * migrate test proj to net5 base * fix format * update sta xunit to fix platform not support * Squashed commit of the following: commit 16e1f819058ad281e1571b356c10d4d6ce77cf38 Author: Boshi Lian <farmer1992@gmail.com> Date: Tue Dec 8 22:42:57 2020 -0800 temp disable some version converter commit 7d1a651f4e7d27d1e61c91f46f73ac8d04ea8ab9 Author: Boshi Lian <farmer1992@gmail.com> Date: Tue Dec 8 20:55:44 2020 -0800 add missing watcher generator files commit 3f3199aad269bf89406ea71d0bc63f1a7ec23245 Author: Boshi Lian <farmer1992@gmail.com> Date: Tue Dec 8 22:14:47 2020 +0000 gen v1.20.0 * bump version to 4.0 * support empty spec * fix version converter for generator * add generated header * fix warning * rerun generator
55 lines
1.7 KiB
C#
Generated
55 lines
1.7 KiB
C#
Generated
// <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.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
/// <summary>
|
|
/// PriorityLevelConfigurationStatus represents the current state of a
|
|
/// "request-priority".
|
|
/// </summary>
|
|
public partial class V1beta1PriorityLevelConfigurationStatus
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the
|
|
/// V1beta1PriorityLevelConfigurationStatus class.
|
|
/// </summary>
|
|
public V1beta1PriorityLevelConfigurationStatus()
|
|
{
|
|
CustomInit();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the
|
|
/// V1beta1PriorityLevelConfigurationStatus class.
|
|
/// </summary>
|
|
/// <param name="conditions">`conditions` is the current state of
|
|
/// "request-priority".</param>
|
|
public V1beta1PriorityLevelConfigurationStatus(IList<V1beta1PriorityLevelConfigurationCondition> conditions = default(IList<V1beta1PriorityLevelConfigurationCondition>))
|
|
{
|
|
Conditions = conditions;
|
|
CustomInit();
|
|
}
|
|
|
|
/// <summary>
|
|
/// An initialization method that performs custom operations like setting defaults
|
|
/// </summary>
|
|
partial void CustomInit();
|
|
|
|
/// <summary>
|
|
/// Gets or sets `conditions` is the current state of
|
|
/// "request-priority".
|
|
/// </summary>
|
|
[JsonProperty(PropertyName = "conditions")]
|
|
public IList<V1beta1PriorityLevelConfigurationCondition> Conditions { get; set; }
|
|
|
|
}
|
|
}
|