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

View Source

V1TokenReviewSpec()

Declaration
public V1TokenReviewSpec()
View Source

V1TokenReviewSpec(V1TokenReviewSpec)

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

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

EqualityContract

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

Token

Token is the opaque bearer token.

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

Methods

View Source

Equals(object?)

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

Equals(V1TokenReviewSpec?)

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

GetHashCode()

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

PrintMembers(StringBuilder)

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

ToString()

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

Operators

View Source

operator ==(V1TokenReviewSpec?, V1TokenReviewSpec?)

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

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>
  • View Source
In this article
Back to top Generated by DocFX