2017-10-19 19:53:02 +00:00
|
|
|
// <auto-generated>
|
|
|
|
|
// Code generated by Microsoft (R) AutoRest Code Generator.
|
2017-06-06 23:02:14 -07:00
|
|
|
// Changes may cause incorrect behavior and will be lost if the code is
|
|
|
|
|
// regenerated.
|
2017-10-19 19:53:02 +00:00
|
|
|
// </auto-generated>
|
2017-06-06 23:02:14 -07:00
|
|
|
|
|
|
|
|
namespace k8s.Models
|
|
|
|
|
{
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// ConfigMapEnvSource selects a ConfigMap to populate the environment
|
|
|
|
|
/// variables with.
|
|
|
|
|
///
|
|
|
|
|
/// The contents of the target ConfigMap's Data field will represent the
|
|
|
|
|
/// key-value pairs as environment variables.
|
|
|
|
|
/// </summary>
|
2017-10-19 19:53:02 +00:00
|
|
|
public partial class Corev1ConfigMapEnvSource
|
2017-06-06 23:02:14 -07:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
2017-10-19 19:53:02 +00:00
|
|
|
/// Initializes a new instance of the Corev1ConfigMapEnvSource class.
|
2017-06-06 23:02:14 -07:00
|
|
|
/// </summary>
|
2017-10-19 19:53:02 +00:00
|
|
|
public Corev1ConfigMapEnvSource()
|
2017-06-06 23:02:14 -07:00
|
|
|
{
|
2017-10-19 19:53:02 +00:00
|
|
|
CustomInit();
|
2017-06-06 23:02:14 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2017-10-19 19:53:02 +00:00
|
|
|
/// Initializes a new instance of the Corev1ConfigMapEnvSource class.
|
2017-06-06 23:02:14 -07:00
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="name">Name of the referent. More info:
|
2017-10-19 19:53:02 +00:00
|
|
|
/// https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names</param>
|
2017-06-06 23:02:14 -07:00
|
|
|
/// <param name="optional">Specify whether the ConfigMap must be
|
|
|
|
|
/// defined</param>
|
2017-10-19 19:53:02 +00:00
|
|
|
public Corev1ConfigMapEnvSource(string name = default(string), bool? optional = default(bool?))
|
2017-06-06 23:02:14 -07:00
|
|
|
{
|
|
|
|
|
Name = name;
|
|
|
|
|
Optional = optional;
|
|
|
|
|
CustomInit();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// An initialization method that performs custom operations like setting defaults
|
|
|
|
|
/// </summary>
|
|
|
|
|
partial void CustomInit();
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets name of the referent. More info:
|
2017-10-19 19:53:02 +00:00
|
|
|
/// https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
|
2017-06-06 23:02:14 -07:00
|
|
|
/// </summary>
|
|
|
|
|
[JsonProperty(PropertyName = "name")]
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets specify whether the ConfigMap must be defined
|
|
|
|
|
/// </summary>
|
|
|
|
|
[JsonProperty(PropertyName = "optional")]
|
|
|
|
|
public bool? Optional { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|