We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f62c446 commit fba618cCopy full SHA for fba618c
src/KubernetesClient.Aot/KubeConfigModels/ExecCredentialResponse.cs
@@ -8,9 +8,13 @@ public class ExecCredentialResponse
8
public class ExecStatus
9
{
10
#nullable enable
11
+ [JsonPropertyName("expirationTimestamp")]
12
public DateTime? ExpirationTimestamp { get; set; }
13
+ [JsonPropertyName("token")]
14
public string? Token { get; set; }
15
+ [JsonPropertyName("clientCertificateData")]
16
public string? ClientCertificateData { get; set; }
17
+ [JsonPropertyName("clientKeyData")]
18
public string? ClientKeyData { get; set; }
19
#nullable disable
20
0 commit comments