Class V1ConfigMapNodeConfigSource
Inheritance
V1ConfigMapNodeConfigSource
Assembly: KubernetesClient.dll
Syntax
public record V1ConfigMapNodeConfigSource : IEquatable<V1ConfigMapNodeConfigSource>
Constructors
View Source
V1ConfigMapNodeConfigSource()
Declaration
public V1ConfigMapNodeConfigSource()
View Source
V1ConfigMapNodeConfigSource(V1ConfigMapNodeConfigSource)
Declaration
protected V1ConfigMapNodeConfigSource(V1ConfigMapNodeConfigSource original)
Parameters
Properties
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
KubeletConfigKey
KubeletConfigKey declares which key of the referenced ConfigMap corresponds to
the KubeletConfiguration structure This field is required in all cases.
Declaration
[JsonPropertyName("kubeletConfigKey")]
public string KubeletConfigKey { get; set; }
Property Value
View Source
Name
Name is the metadata.name of the referenced ConfigMap. This field is required in
all cases.
Declaration
[JsonPropertyName("name")]
public string Name { get; set; }
Property Value
View Source
NamespaceProperty
Namespace is the metadata.namespace of the referenced ConfigMap. This field is
required in all cases.
Declaration
[JsonPropertyName("namespace")]
public string NamespaceProperty { get; set; }
Property Value
View Source
ResourceVersion
ResourceVersion is the metadata.ResourceVersion of the referenced ConfigMap.
This field is forbidden in Node.Spec, and required in Node.Status.
Declaration
[JsonPropertyName("resourceVersion")]
public string ResourceVersion { get; set; }
Property Value
View Source
Uid
UID is the metadata.UID of the referenced ConfigMap. This field is forbidden in
Node.Spec, and required in Node.Status.
Declaration
[JsonPropertyName("uid")]
public string Uid { 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(V1ConfigMapNodeConfigSource?)
Declaration
public virtual bool Equals(V1ConfigMapNodeConfigSource? 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 ==(V1ConfigMapNodeConfigSource?, V1ConfigMapNodeConfigSource?)
Declaration
public static bool operator ==(V1ConfigMapNodeConfigSource? left, V1ConfigMapNodeConfigSource? right)
Parameters
Returns
View Source
operator !=(V1ConfigMapNodeConfigSource?, V1ConfigMapNodeConfigSource?)
Declaration
public static bool operator !=(V1ConfigMapNodeConfigSource? left, V1ConfigMapNodeConfigSource? right)
Parameters
Returns
Implements