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,52 @@
|
||||
// <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>
|
||||
/// Represents downward API info for projecting into a projected volume.
|
||||
/// Note that this is identical to a downwardAPI volume source without the
|
||||
/// default mode.
|
||||
/// </summary>
|
||||
public partial class V1DownwardAPIProjection
|
||||
{
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the V1DownwardAPIProjection class.
|
||||
/// </summary>
|
||||
public V1DownwardAPIProjection()
|
||||
{
|
||||
CustomInit();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the V1DownwardAPIProjection class.
|
||||
/// </summary>
|
||||
/// <param name="items">Items is a list of DownwardAPIVolume
|
||||
/// file</param>
|
||||
public V1DownwardAPIProjection(IList<V1DownwardAPIVolumeFile> items = default(IList<V1DownwardAPIVolumeFile>))
|
||||
{
|
||||
Items = items;
|
||||
CustomInit();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// An initialization method that performs custom operations like setting defaults
|
||||
/// </summary>
|
||||
partial void CustomInit();
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets items is a list of DownwardAPIVolume file
|
||||
/// </summary>
|
||||
[JsonProperty(PropertyName = "items")]
|
||||
public IList<V1DownwardAPIVolumeFile> Items { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user