Class V1EnvFromSource
EnvFromSource represents the source of a set of ConfigMaps or Secrets
Inheritance
V1EnvFromSource
Assembly: KubernetesClient.dll
Syntax
public record V1EnvFromSource : IEquatable<V1EnvFromSource>
Constructors
V1EnvFromSource()
Declaration
V1EnvFromSource(V1EnvFromSource)
Declaration
protected V1EnvFromSource(V1EnvFromSource original)
Parameters
Properties
ConfigMapRef
The ConfigMap to select from
Declaration
[JsonPropertyName("configMapRef")]
public V1ConfigMapEnvSource ConfigMapRef { get; set; }
Property Value
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
Prefix
Optional text to prepend to the name of each environment variable. May consist
of any printable ASCII characters except '='.
Declaration
[JsonPropertyName("prefix")]
public string Prefix { get; set; }
Property Value
SecretRef
The Secret to select from
Declaration
[JsonPropertyName("secretRef")]
public V1SecretEnvSource SecretRef { get; set; }
Property Value
Methods
Equals(object?)
Declaration
public override bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
Equals(V1EnvFromSource?)
Declaration
public virtual bool Equals(V1EnvFromSource? other)
Parameters
Returns
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Overrides
PrintMembers(StringBuilder)
Declaration
protected virtual bool PrintMembers(StringBuilder builder)
Parameters
Returns
ToString()
Declaration
public override string ToString()
Returns
Overrides
Operators
operator ==(V1EnvFromSource?, V1EnvFromSource?)
Declaration
public static bool operator ==(V1EnvFromSource? left, V1EnvFromSource? right)
Parameters
Returns
operator !=(V1EnvFromSource?, V1EnvFromSource?)
Declaration
public static bool operator !=(V1EnvFromSource? left, V1EnvFromSource? right)
Parameters
Returns
Implements