namespace k8s
{
///
/// Represents a generic Kubernetes object.
///
///
/// You can use the if you receive JSON from a Kubernetes API server but
/// are unsure which object the API server is about to return. You can parse the JSON as a
/// and use the and properties to get basic metadata about any Kubernetes object.
/// You can then
///
public class KubernetesObject : IKubernetesObject
{
///
/// Gets or sets aPIVersion defines the versioned schema of this
/// representation of an object. Servers should convert recognized
/// schemas to the latest internal value, and may reject unrecognized
/// values. More info:
/// https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
///
[JsonPropertyName("apiVersion")]
public string ApiVersion { get; set; }
///
/// Gets or sets kind is a string value representing the REST resource
/// this object represents. Servers may infer this from the endpoint
/// the client submits requests to. Cannot be updated. In CamelCase.
/// More info:
/// https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
///
[JsonPropertyName("kind")]
public string Kind { get; set; }
}
}