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

105 lines
4.0 KiB
C#
Executable File

// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
namespace k8s.Models
{
using Newtonsoft.Json;
using System.Linq;
/// <summary>
/// EnvVarSource represents a source for the value of an EnvVar.
/// </summary>
public partial class V1EnvVarSource
{
/// <summary>
/// Initializes a new instance of the V1EnvVarSource class.
/// </summary>
public V1EnvVarSource()
{
CustomInit();
}
/// <summary>
/// Initializes a new instance of the V1EnvVarSource class.
/// </summary>
/// <param name="configMapKeyRef">Selects a key of a ConfigMap.</param>
/// <param name="fieldRef">Selects a field of the pod: supports
/// metadata.name, metadata.namespace, metadata.labels,
/// metadata.annotations, spec.nodeName, spec.serviceAccountName,
/// status.podIP.</param>
/// <param name="resourceFieldRef">Selects a resource of the container:
/// only resources limits and requests (limits.cpu, limits.memory,
/// requests.cpu and requests.memory) are currently supported.</param>
/// <param name="secretKeyRef">Selects a key of a secret in the pod's
/// namespace</param>
public V1EnvVarSource(V1ConfigMapKeySelector configMapKeyRef = default(V1ConfigMapKeySelector), V1ObjectFieldSelector fieldRef = default(V1ObjectFieldSelector), V1ResourceFieldSelector resourceFieldRef = default(V1ResourceFieldSelector), V1SecretKeySelector secretKeyRef = default(V1SecretKeySelector))
{
ConfigMapKeyRef = configMapKeyRef;
FieldRef = fieldRef;
ResourceFieldRef = resourceFieldRef;
SecretKeyRef = secretKeyRef;
CustomInit();
}
/// <summary>
/// An initialization method that performs custom operations like setting defaults
/// </summary>
partial void CustomInit();
/// <summary>
/// Gets or sets selects a key of a ConfigMap.
/// </summary>
[JsonProperty(PropertyName = "configMapKeyRef")]
public V1ConfigMapKeySelector ConfigMapKeyRef { get; set; }
/// <summary>
/// Gets or sets selects a field of the pod: supports metadata.name,
/// metadata.namespace, metadata.labels, metadata.annotations,
/// spec.nodeName, spec.serviceAccountName, status.podIP.
/// </summary>
[JsonProperty(PropertyName = "fieldRef")]
public V1ObjectFieldSelector FieldRef { get; set; }
/// <summary>
/// Gets or sets selects a resource of the container: only resources
/// limits and requests (limits.cpu, limits.memory, requests.cpu and
/// requests.memory) are currently supported.
/// </summary>
[JsonProperty(PropertyName = "resourceFieldRef")]
public V1ResourceFieldSelector ResourceFieldRef { get; set; }
/// <summary>
/// Gets or sets selects a key of a secret in the pod's namespace
/// </summary>
[JsonProperty(PropertyName = "secretKeyRef")]
public V1SecretKeySelector SecretKeyRef { get; set; }
/// <summary>
/// Validate the object.
/// </summary>
/// <exception cref="Microsoft.Rest.ValidationException">
/// Thrown if validation fails
/// </exception>
public virtual void Validate()
{
if (ConfigMapKeyRef != null)
{
ConfigMapKeyRef.Validate();
}
if (FieldRef != null)
{
FieldRef.Validate();
}
if (ResourceFieldRef != null)
{
ResourceFieldRef.Validate();
}
if (SecretKeyRef != null)
{
SecretKeyRef.Validate();
}
}
}
}