//
// 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 V1DownwardAPIProjection
{
///
/// Initializes a new instance of the V1DownwardAPIProjection class.
///
public V1DownwardAPIProjection()
{
CustomInit();
}
///
/// Initializes a new instance of the V1DownwardAPIProjection class.
///
/// Items is a list of DownwardAPIVolume
/// file
public V1DownwardAPIProjection(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; }
}
}