//
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
//
namespace k8s.Models
{
using Newtonsoft.Json;
using System.Linq;
///
/// Ingress is a collection of rules that allow inbound connections to
/// reach the endpoints defined by a backend. An Ingress can be configured
/// to give services externally-reachable urls, load balance traffic,
/// terminate SSL, offer name based virtual hosting etc.
///
public partial class Networkingv1beta1Ingress
{
///
/// Initializes a new instance of the Networkingv1beta1Ingress class.
///
public Networkingv1beta1Ingress()
{
CustomInit();
}
///
/// Initializes a new instance of the Networkingv1beta1Ingress class.
///
/// 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
/// 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
/// Standard object's metadata. More info:
/// https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
/// Spec is the desired state of the Ingress. More
/// info:
/// https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
/// Status is the current state of the Ingress.
/// More info:
/// https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
public Networkingv1beta1Ingress(string apiVersion = default(string), string kind = default(string), V1ObjectMeta metadata = default(V1ObjectMeta), Networkingv1beta1IngressSpec spec = default(Networkingv1beta1IngressSpec), Networkingv1beta1IngressStatus status = default(Networkingv1beta1IngressStatus))
{
ApiVersion = apiVersion;
Kind = kind;
Metadata = metadata;
Spec = spec;
Status = status;
CustomInit();
}
///
/// An initialization method that performs custom operations like setting defaults
///
partial void CustomInit();
///
/// 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
///
[JsonProperty(PropertyName = "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
///
[JsonProperty(PropertyName = "kind")]
public string Kind { get; set; }
///
/// Gets or sets standard object's metadata. More info:
/// https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
///
[JsonProperty(PropertyName = "metadata")]
public V1ObjectMeta Metadata { get; set; }
///
/// Gets or sets spec is the desired state of the Ingress. More info:
/// https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
///
[JsonProperty(PropertyName = "spec")]
public Networkingv1beta1IngressSpec Spec { get; set; }
///
/// Gets or sets status is the current state of the Ingress. More info:
/// https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
///
[JsonProperty(PropertyName = "status")]
public Networkingv1beta1IngressStatus Status { get; set; }
///
/// Validate the object.
///
///
/// Thrown if validation fails
///
public virtual void Validate()
{
if (Metadata != null)
{
Metadata.Validate();
}
if (Spec != null)
{
Spec.Validate();
}
}
}
}