//
// 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 Microsoft.Rest;
using Newtonsoft.Json;
using System.Linq;
///
/// ServiceReference holds a reference to Service.legacy.k8s.io
///
public partial class Admissionregistrationv1beta1ServiceReference
{
///
/// Initializes a new instance of the
/// Admissionregistrationv1beta1ServiceReference class.
///
public Admissionregistrationv1beta1ServiceReference()
{
CustomInit();
}
///
/// Initializes a new instance of the
/// Admissionregistrationv1beta1ServiceReference class.
///
/// `name` is the name of the service.
/// Required
/// `namespace` is the namespace of the
/// service. Required
/// `path` is an optional URL path which will be
/// sent in any request to this service.
public Admissionregistrationv1beta1ServiceReference(string name, string namespaceProperty, string path = default(string))
{
Name = name;
NamespaceProperty = namespaceProperty;
Path = path;
CustomInit();
}
///
/// An initialization method that performs custom operations like setting defaults
///
partial void CustomInit();
///
/// Gets or sets `name` is the name of the service. Required
///
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
///
/// Gets or sets `namespace` is the namespace of the service. Required
///
[JsonProperty(PropertyName = "namespace")]
public string NamespaceProperty { get; set; }
///
/// Gets or sets `path` is an optional URL path which will be sent in
/// any request to this service.
///
[JsonProperty(PropertyName = "path")]
public string Path { get; set; }
///
/// Validate the object.
///
///
/// Thrown if validation fails
///
public virtual void Validate()
{
if (Name == null)
{
throw new ValidationException(ValidationRules.CannotBeNull, "Name");
}
if (NamespaceProperty == null)
{
throw new ValidationException(ValidationRules.CannotBeNull, "NamespaceProperty");
}
}
}
}