2017-06-17 14:11:52 -07:00
|
|
|
|
namespace k8s.KubeConfigModels
|
|
|
|
|
|
{
|
|
|
|
|
|
using YamlDotNet.Serialization;
|
|
|
|
|
|
|
|
|
|
|
|
public class Context
|
|
|
|
|
|
{
|
|
|
|
|
|
[YamlMember(Alias = "context")]
|
|
|
|
|
|
public ContextDetails ContextDetails { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[YamlMember(Alias = "name")]
|
|
|
|
|
|
public string Name { get; set; }
|
2017-12-14 15:22:39 -08:00
|
|
|
|
|
|
|
|
|
|
[YamlMember(Alias = "namespace")]
|
|
|
|
|
|
public string Namespace { get; set; }
|
2017-06-17 14:11:52 -07:00
|
|
|
|
}
|
|
|
|
|
|
}
|