Show / Hide Table of Contents

Class V1TokenReviewSpec

TokenReviewSpec is a description of the token authentication request.

Inheritance
object
V1TokenReviewSpec
Implements
IEquatable<V1TokenReviewSpec>
Inherited Members
object.GetType()
object.MemberwiseClone()
object.Equals(object, object)
object.ReferenceEquals(object, object)
Namespace: k8s.Models
Assembly: KubernetesClient.dll
Syntax
public record V1TokenReviewSpec : IEquatable<V1TokenReviewSpec>

Constructors

V1TokenReviewSpec()

Declaration
public V1TokenReviewSpec()

V1TokenReviewSpec(V1TokenReviewSpec)

Declaration
protected V1TokenReviewSpec(V1TokenReviewSpec original)
Parameters
Type Name Description
V1TokenReviewSpec original

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
Type Description
IList<string>

EqualityContract

Declaration
protected virtual Type EqualityContract { get; }
Property Value
Type Description
Type

Token

token is the opaque bearer token.

Declaration
[JsonPropertyName("token")]
public string Token { get; set; }
Property Value
Type Description
string

Methods

Equals(object?)

Declaration
public override bool Equals(object? obj)
Parameters
Type Name Description
object obj
Returns
Type Description
bool
Overrides
object.Equals(object)

Equals(V1TokenReviewSpec?)

Declaration
public virtual bool Equals(V1TokenReviewSpec? other)
Parameters
Type Name Description
V1TokenReviewSpec other
Returns
Type Description
bool

GetHashCode()

Declaration
public override int GetHashCode()
Returns
Type Description
int
Overrides
object.GetHashCode()

PrintMembers(StringBuilder)

Declaration
protected virtual bool PrintMembers(StringBuilder builder)
Parameters
Type Name Description
StringBuilder builder
Returns
Type Description
bool

ToString()

Declaration
public override string ToString()
Returns
Type Description
string
Overrides
object.ToString()

Operators

operator ==(V1TokenReviewSpec?, V1TokenReviewSpec?)

Declaration
public static bool operator ==(V1TokenReviewSpec? left, V1TokenReviewSpec? right)
Parameters
Type Name Description
V1TokenReviewSpec left
V1TokenReviewSpec right
Returns
Type Description
bool

operator !=(V1TokenReviewSpec?, V1TokenReviewSpec?)

Declaration
public static bool operator !=(V1TokenReviewSpec? left, V1TokenReviewSpec? right)
Parameters
Type Name Description
V1TokenReviewSpec left
V1TokenReviewSpec right
Returns
Type Description
bool

Implements

IEquatable<T>
In this article
Back to top Generated by DocFX