Class V1ContainerUser
ContainerUser represents user identity information
Inheritance
V1ContainerUser
Assembly: KubernetesClient.dll
Syntax
public record V1ContainerUser : IEquatable<V1ContainerUser>
Constructors
View Source
V1ContainerUser()
Declaration
View Source
V1ContainerUser(V1ContainerUser)
Declaration
protected V1ContainerUser(V1ContainerUser original)
Parameters
Properties
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
Linux
Linux holds user identity information initially attached to the first process of
the containers in Linux. Note that the actual running identity can be changed if
the process has enough privilege to do so.
Declaration
[JsonPropertyName("linux")]
public V1LinuxContainerUser Linux { 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(V1ContainerUser?)
Declaration
public virtual bool Equals(V1ContainerUser? 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 ==(V1ContainerUser?, V1ContainerUser?)
Declaration
public static bool operator ==(V1ContainerUser? left, V1ContainerUser? right)
Parameters
Returns
View Source
operator !=(V1ContainerUser?, V1ContainerUser?)
Declaration
public static bool operator !=(V1ContainerUser? left, V1ContainerUser? right)
Parameters
Returns
Implements