Files
csharp/src/generated/Models/V1DownwardAPIProjection.cs

51 lines
1.6 KiB
C#
Raw Normal View History

2017-06-16 10:47:10 -07:00
// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
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; }
}
}