Skip to content

Commit fba618c

Browse files
committed
Added ExecStatus JsonPropertyNames
1 parent f62c446 commit fba618c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/KubernetesClient.Aot/KubeConfigModels/ExecCredentialResponse.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,13 @@ public class ExecCredentialResponse
88
public class ExecStatus
99
{
1010
#nullable enable
11+
[JsonPropertyName("expirationTimestamp")]
1112
public DateTime? ExpirationTimestamp { get; set; }
13+
[JsonPropertyName("token")]
1214
public string? Token { get; set; }
15+
[JsonPropertyName("clientCertificateData")]
1316
public string? ClientCertificateData { get; set; }
17+
[JsonPropertyName("clientKeyData")]
1418
public string? ClientKeyData { get; set; }
1519
#nullable disable
1620

0 commit comments

Comments
 (0)