Class V1TokenReviewSpec
TokenReviewSpec is a description of the token authentication request.
Inheritance
V1TokenReviewSpec
Assembly: KubernetesClient.dll
Syntax
public record V1TokenReviewSpec : IEquatable<V1TokenReviewSpec>
Constructors
V1TokenReviewSpec()
Declaration
public V1TokenReviewSpec()
V1TokenReviewSpec(V1TokenReviewSpec)
Declaration
protected V1TokenReviewSpec(V1TokenReviewSpec original)
Parameters
Properties
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
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
Token
token is the opaque bearer token.
Declaration
[JsonPropertyName("token")]
public string Token { get; set; }
Property Value
Methods
Equals(object?)
Declaration
public override bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
Equals(V1TokenReviewSpec?)
Declaration
public virtual bool Equals(V1TokenReviewSpec? 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 ==(V1TokenReviewSpec?, V1TokenReviewSpec?)
Declaration
public static bool operator ==(V1TokenReviewSpec? left, V1TokenReviewSpec? right)
Parameters
Returns
operator !=(V1TokenReviewSpec?, V1TokenReviewSpec?)
Declaration
public static bool operator !=(V1TokenReviewSpec? left, V1TokenReviewSpec? right)
Parameters
Returns
Implements