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
View Source
V1EnvFromSource()
Declaration
View Source
V1EnvFromSource(V1EnvFromSource)
Declaration
protected V1EnvFromSource(V1EnvFromSource original)
Parameters
Properties
View Source
ConfigMapRef
The ConfigMap to select from
Declaration
[JsonPropertyName("configMapRef")]
public V1ConfigMapEnvSource ConfigMapRef { get; set; }
Property Value
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
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
View Source
SecretRef
The Secret to select from
Declaration
[JsonPropertyName("secretRef")]
public V1SecretEnvSource SecretRef { get; set; }
Property Value
Methods
View Source
Equals(object?)
Declaration
public override bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
View Source
Equals(V1EnvFromSource?)
Declaration
public virtual bool Equals(V1EnvFromSource? other)
Parameters
Returns
View Source
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Overrides
View Source
PrintMembers(StringBuilder)
Declaration
protected virtual bool PrintMembers(StringBuilder builder)
Parameters
Returns
View Source
ToString()
Declaration
public override string ToString()
Returns
Overrides
Operators
View Source
operator ==(V1EnvFromSource?, V1EnvFromSource?)
Declaration
public static bool operator ==(V1EnvFromSource? left, V1EnvFromSource? right)
Parameters
Returns
View Source
operator !=(V1EnvFromSource?, V1EnvFromSource?)
Declaration
public static bool operator !=(V1EnvFromSource? left, V1EnvFromSource? right)
Parameters
Returns
Implements