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
V1UserInfo()
Declaration
V1UserInfo(V1UserInfo)
Declaration
protected V1UserInfo(V1UserInfo original)
Parameters
Properties
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
extra is any additional information provided by the authenticator.
Declaration
[JsonPropertyName("extra")]
public IDictionary<string, IList<string>> Extra { get; set; }
Property Value
Groups
groups is the names of groups this user is a part of.
Declaration
[JsonPropertyName("groups")]
public IList<string> Groups { get; set; }
Property Value
Uid
uid is 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
Username
username is the name that uniquely identifies this user among all active users.
Declaration
[JsonPropertyName("username")]
public string Username { get; set; }
Property Value
Methods
Equals(object?)
Declaration
public override bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
Equals(V1UserInfo?)
Declaration
public virtual bool Equals(V1UserInfo? other)
Parameters
Returns
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Overrides
PrintMembers(StringBuilder)
Declaration
protected virtual bool PrintMembers(StringBuilder builder)
Parameters
Returns
ToString()
Declaration
public override string ToString()
Returns
Overrides
Operators
operator ==(V1UserInfo?, V1UserInfo?)
Declaration
public static bool operator ==(V1UserInfo? left, V1UserInfo? right)
Parameters
Returns
operator !=(V1UserInfo?, V1UserInfo?)
Declaration
public static bool operator !=(V1UserInfo? left, V1UserInfo? right)
Parameters
Returns
Implements