Files
csharp/src/KubernetesClient/generated/Models/V1beta1FlowSchemaStatus.cs
Boshi Lian c0e96f516b deprecate net452 + generate model based on v1.20.0 (#536)
* 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
2020-12-13 19:55:27 -08:00

52 lines
1.6 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>
/// FlowSchemaStatus represents the current state of a FlowSchema.
/// </summary>
public partial class V1beta1FlowSchemaStatus
{
/// <summary>
/// Initializes a new instance of the V1beta1FlowSchemaStatus class.
/// </summary>
public V1beta1FlowSchemaStatus()
{
CustomInit();
}
/// <summary>
/// Initializes a new instance of the V1beta1FlowSchemaStatus class.
/// </summary>
/// <param name="conditions">`conditions` is a list of the current
/// states of FlowSchema.</param>
public V1beta1FlowSchemaStatus(IList<V1beta1FlowSchemaCondition> conditions = default(IList<V1beta1FlowSchemaCondition>))
{
Conditions = conditions;
CustomInit();
}
/// <summary>
/// An initialization method that performs custom operations like setting defaults
/// </summary>
partial void CustomInit();
/// <summary>
/// Gets or sets `conditions` is a list of the current states of
/// FlowSchema.
/// </summary>
[JsonProperty(PropertyName = "conditions")]
public IList<V1beta1FlowSchemaCondition> Conditions { get; set; }
}
}