Show / Hide Table of Contents

Class V1ServiceAccountTokenProjection

ServiceAccountTokenProjection represents a projected service account token volume. This projection can be used to insert a service account token into the pods runtime filesystem for use against APIs (Kubernetes API Server or otherwise).

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

Constructors

View Source

V1ServiceAccountTokenProjection()

Declaration
public V1ServiceAccountTokenProjection()
View Source

V1ServiceAccountTokenProjection(V1ServiceAccountTokenProjection)

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

Properties

View Source

Audience

audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver.

Declaration
[JsonPropertyName("audience")]
public string Audience { get; set; }
Property Value
Type Description
string
View Source

EqualityContract

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

ExpirationSeconds

expirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes.

Declaration
[JsonPropertyName("expirationSeconds")]
public long? ExpirationSeconds { get; set; }
Property Value
Type Description
long?
View Source

Path

path is the path relative to the mount point of the file to project the token into.

Declaration
[JsonPropertyName("path")]
public string Path { 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(V1ServiceAccountTokenProjection?)

Declaration
public virtual bool Equals(V1ServiceAccountTokenProjection? other)
Parameters
Type Name Description
V1ServiceAccountTokenProjection 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 ==(V1ServiceAccountTokenProjection?, V1ServiceAccountTokenProjection?)

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

operator !=(V1ServiceAccountTokenProjection?, V1ServiceAccountTokenProjection?)

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

Implements

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