Class V1UserInfo
UserInfo holds the information about the user needed to implement the user.Info
interface.
Assembly: KubernetesClient.dll
Syntax
public record V1UserInfo : IEquatable<V1UserInfo>
Constructors
View Source
V1UserInfo()
Declaration
View Source
V1UserInfo(V1UserInfo)
Declaration
protected V1UserInfo(V1UserInfo original)
Parameters
Properties
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
Any additional information provided by the authenticator.
Declaration
[JsonPropertyName("extra")]
public IDictionary<string, IList<string>> Extra { get; set; }
Property Value
View Source
Groups
The names of groups this user is a part of.
Declaration
[JsonPropertyName("groups")]
public IList<string> Groups { get; set; }
Property Value
View Source
Uid
A unique value that identifies this user across time. If this user is deleted
and another user by the same name is added, they will have different UIDs.
Declaration
[JsonPropertyName("uid")]
public string Uid { get; set; }
Property Value
View Source
Username
The name that uniquely identifies this user among all active users.
Declaration
[JsonPropertyName("username")]
public string Username { 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(V1UserInfo?)
Declaration
public virtual bool Equals(V1UserInfo? 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 ==(V1UserInfo?, V1UserInfo?)
Declaration
public static bool operator ==(V1UserInfo? left, V1UserInfo? right)
Parameters
Returns
View Source
operator !=(V1UserInfo?, V1UserInfo?)
Declaration
public static bool operator !=(V1UserInfo? left, V1UserInfo? right)
Parameters
Returns
Implements