Class V1TokenReviewSpec
TokenReviewSpec is a description of the token authentication request.
Inheritance
V1TokenReviewSpec
Assembly: KubernetesClient.dll
Syntax
public record V1TokenReviewSpec : IEquatable<V1TokenReviewSpec>
Constructors
View Source
V1TokenReviewSpec()
Declaration
public V1TokenReviewSpec()
View Source
V1TokenReviewSpec(V1TokenReviewSpec)
Declaration
protected V1TokenReviewSpec(V1TokenReviewSpec original)
Parameters
Properties
View Source
Audiences
Audiences is a list of the identifiers that the resource server presented with
the token identifies as. Audience-aware token authenticators will verify that
the token was intended for at least one of the audiences in this list. If no
audiences are provided, the audience will default to the audience of the
Kubernetes apiserver.
Declaration
[JsonPropertyName("audiences")]
public IList<string> Audiences { get; set; }
Property Value
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
Token
Token is the opaque bearer token.
Declaration
[JsonPropertyName("token")]
public string Token { 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(V1TokenReviewSpec?)
Declaration
public virtual bool Equals(V1TokenReviewSpec? 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 ==(V1TokenReviewSpec?, V1TokenReviewSpec?)
Declaration
public static bool operator ==(V1TokenReviewSpec? left, V1TokenReviewSpec? right)
Parameters
Returns
View Source
operator !=(V1TokenReviewSpec?, V1TokenReviewSpec?)
Declaration
public static bool operator !=(V1TokenReviewSpec? left, V1TokenReviewSpec? right)
Parameters
Returns
Implements