2020-03-23 00:22:45 -04:00
|
|
|
namespace k8s
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Represents a Kubernetes object that has a spec
|
|
|
|
|
/// </summary>
|
2020-11-22 14:52:09 -08:00
|
|
|
/// <typeparam name="T">type of Kubernetes object</typeparam>
|
2020-03-23 00:22:45 -04:00
|
|
|
public interface ISpec<T>
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets specification of the desired behavior of the entity. More
|
|
|
|
|
/// info:
|
|
|
|
|
/// https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
|
|
|
|
|
/// </summary>
|
|
|
|
|
T Spec { get; set; }
|
|
|
|
|
}
|
2020-04-22 12:15:45 -07:00
|
|
|
}
|