// // Code generated by Microsoft (R) AutoRest Code Generator. // 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; /// /// Represents downward API info for projecting into a projected volume. /// Note that this is identical to a downwardAPI volume source without the /// default mode. /// public partial class Corev1DownwardAPIProjection { /// /// Initializes a new instance of the Corev1DownwardAPIProjection /// class. /// public Corev1DownwardAPIProjection() { CustomInit(); } /// /// Initializes a new instance of the Corev1DownwardAPIProjection /// class. /// /// Items is a list of DownwardAPIVolume /// file public Corev1DownwardAPIProjection(IList items = default(IList)) { Items = items; CustomInit(); } /// /// An initialization method that performs custom operations like setting defaults /// partial void CustomInit(); /// /// Gets or sets items is a list of DownwardAPIVolume file /// [JsonProperty(PropertyName = "items")] public IList Items { get; set; } } }