2020-03-05 09:12:38 -08:00
|
|
|
namespace k8s.KubeConfigModels
|
|
|
|
|
{
|
|
|
|
|
public class ExecCredentialResponse
|
|
|
|
|
{
|
2021-12-13 07:31:59 -08:00
|
|
|
[JsonPropertyName("apiVersion")]
|
2020-11-01 12:24:51 -08:00
|
|
|
public string ApiVersion { get; set; }
|
2021-12-13 07:31:59 -08:00
|
|
|
[JsonPropertyName("kind")]
|
2020-11-01 12:24:51 -08:00
|
|
|
public string Kind { get; set; }
|
2021-12-13 07:31:59 -08:00
|
|
|
[JsonPropertyName("status")]
|
2020-11-01 12:24:51 -08:00
|
|
|
public IDictionary<string, string> Status { get; set; }
|
2020-03-05 09:12:38 -08:00
|
|
|
}
|
|
|
|
|
}
|