Class V1SelfSubjectReview
SelfSubjectReview contains the user information that the kube-apiserver has
about the user making this request. When using impersonation, users will receive
the user info of the user being impersonated. If impersonation or request
header authentication is used, any extra keys will have their case ignored and
returned as lowercase.
Inheritance
V1SelfSubjectReview
Assembly: KubernetesClient.dll
Syntax
[KubernetesEntity(Group = "authentication.k8s.io", Kind = "SelfSubjectReview", ApiVersion = "v1", PluralName = "")]
public record V1SelfSubjectReview : IKubernetesObject<V1ObjectMeta>, IKubernetesObject, IMetadata<V1ObjectMeta>, IEquatable<V1SelfSubjectReview>
Constructors
View Source
V1SelfSubjectReview()
Declaration
public V1SelfSubjectReview()
View Source
V1SelfSubjectReview(V1SelfSubjectReview)
Declaration
protected V1SelfSubjectReview(V1SelfSubjectReview original)
Parameters
Fields
View Source
KubeApiVersion
Declaration
public const string KubeApiVersion = "v1"
Field Value
View Source
KubeGroup
Declaration
public const string KubeGroup = "authentication.k8s.io"
Field Value
View Source
KubeKind
Declaration
public const string KubeKind = "SelfSubjectReview"
Field Value
View Source
KubePluralName
Declaration
public const string KubePluralName = ""
Field Value
Properties
View Source
ApiVersion
Declaration
[JsonPropertyName("apiVersion")]
public string ApiVersion { get; set; }
Property Value
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
Kind
Declaration
[JsonPropertyName("kind")]
public string Kind { get; set; }
Property Value
View Source
Declaration
[JsonPropertyName("metadata")]
public V1ObjectMeta Metadata { get; set; }
Property Value
View Source
Status
Status is filled in by the server with the user attributes.
Declaration
[JsonPropertyName("status")]
public V1SelfSubjectReviewStatus Status { 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(V1SelfSubjectReview?)
Declaration
public virtual bool Equals(V1SelfSubjectReview? 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 ==(V1SelfSubjectReview?, V1SelfSubjectReview?)
Declaration
public static bool operator ==(V1SelfSubjectReview? left, V1SelfSubjectReview? right)
Parameters
Returns
View Source
operator !=(V1SelfSubjectReview?, V1SelfSubjectReview?)
Declaration
public static bool operator !=(V1SelfSubjectReview? left, V1SelfSubjectReview? right)
Parameters
Returns
Implements
Extension Methods