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
V1SelfSubjectReview()
Declaration
public V1SelfSubjectReview()
V1SelfSubjectReview(V1SelfSubjectReview)
Declaration
protected V1SelfSubjectReview(V1SelfSubjectReview original)
Parameters
Fields
KubeApiVersion
Declaration
public const string KubeApiVersion = "v1"
Field Value
KubeGroup
Declaration
public const string KubeGroup = "authentication.k8s.io"
Field Value
KubeKind
Declaration
public const string KubeKind = "SelfSubjectReview"
Field Value
KubePluralName
Declaration
public const string KubePluralName = ""
Field Value
Properties
ApiVersion
Declaration
[JsonPropertyName("apiVersion")]
public string ApiVersion { get; set; }
Property Value
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
Kind
Declaration
[JsonPropertyName("kind")]
public string Kind { get; set; }
Property Value
Declaration
[JsonPropertyName("metadata")]
public V1ObjectMeta Metadata { get; set; }
Property Value
Status
status is filled in by the server with the user attributes.
Declaration
[JsonPropertyName("status")]
public V1SelfSubjectReviewStatus Status { get; set; }
Property Value
Methods
Equals(object?)
Declaration
public override bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
Equals(V1SelfSubjectReview?)
Declaration
public virtual bool Equals(V1SelfSubjectReview? 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 ==(V1SelfSubjectReview?, V1SelfSubjectReview?)
Declaration
public static bool operator ==(V1SelfSubjectReview? left, V1SelfSubjectReview? right)
Parameters
Returns
operator !=(V1SelfSubjectReview?, V1SelfSubjectReview?)
Declaration
public static bool operator !=(V1SelfSubjectReview? left, V1SelfSubjectReview? right)
Parameters
Returns
Implements
Extension Methods