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
V1ServiceAccountTokenProjection
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
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
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
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
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
Methods
View Source
Equals(object?)
Declaration
public override bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
View Source
Equals(V1ServiceAccountTokenProjection?)
Declaration
public virtual bool Equals(V1ServiceAccountTokenProjection? 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 ==(V1ServiceAccountTokenProjection?, V1ServiceAccountTokenProjection?)
Declaration
public static bool operator ==(V1ServiceAccountTokenProjection? left, V1ServiceAccountTokenProjection? right)
Parameters
Returns
View Source
operator !=(V1ServiceAccountTokenProjection?, V1ServiceAccountTokenProjection?)
Declaration
public static bool operator !=(V1ServiceAccountTokenProjection? left, V1ServiceAccountTokenProjection? right)
Parameters
Returns
Implements