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

55 lines
1.7 KiB
C#
Raw Normal View History

2017-10-19 19:53:02 +00:00
// <auto-generated>
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
2017-10-19 19:53:02 +00:00
// </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>
2017-10-19 19:53:02 +00:00
public partial class Corev1DownwardAPIProjection
{
/// <summary>
2017-10-19 19:53:02 +00:00
/// Initializes a new instance of the Corev1DownwardAPIProjection
/// class.
/// </summary>
2017-10-19 19:53:02 +00:00
public Corev1DownwardAPIProjection()
{
2017-10-19 19:53:02 +00:00
CustomInit();
}
/// <summary>
2017-10-19 19:53:02 +00:00
/// Initializes a new instance of the Corev1DownwardAPIProjection
/// class.
/// </summary>
/// <param name="items">Items is a list of DownwardAPIVolume
/// file</param>
2017-10-19 19:53:02 +00:00
public Corev1DownwardAPIProjection(IList<Corev1DownwardAPIVolumeFile> items = default(IList<Corev1DownwardAPIVolumeFile>))
{
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")]
2017-10-19 19:53:02 +00:00
public IList<Corev1DownwardAPIVolumeFile> Items { get; set; }
}
}