Class V1ConfigMapKeySelector
Selects a key from a ConfigMap.
Inheritance
V1ConfigMapKeySelector
Assembly: KubernetesClient.dll
Syntax
public record V1ConfigMapKeySelector : IEquatable<V1ConfigMapKeySelector>
Constructors
View Source
V1ConfigMapKeySelector()
Declaration
public V1ConfigMapKeySelector()
View Source
V1ConfigMapKeySelector(V1ConfigMapKeySelector)
Declaration
protected V1ConfigMapKeySelector(V1ConfigMapKeySelector original)
Parameters
Properties
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
Key
Declaration
[JsonPropertyName("key")]
public string Key { get; set; }
Property Value
View Source
Name
Declaration
[JsonPropertyName("name")]
public string Name { get; set; }
Property Value
View Source
Optional
Specify whether the ConfigMap or its key must be defined
Declaration
[JsonPropertyName("optional")]
public bool? Optional { 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(V1ConfigMapKeySelector?)
Declaration
public virtual bool Equals(V1ConfigMapKeySelector? 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 ==(V1ConfigMapKeySelector?, V1ConfigMapKeySelector?)
Declaration
public static bool operator ==(V1ConfigMapKeySelector? left, V1ConfigMapKeySelector? right)
Parameters
Returns
View Source
operator !=(V1ConfigMapKeySelector?, V1ConfigMapKeySelector?)
Declaration
public static bool operator !=(V1ConfigMapKeySelector? left, V1ConfigMapKeySelector? right)
Parameters
Returns
Implements