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