// // 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; /// /// Binding ties one object to another; for example, a pod is bound to a /// node by a scheduler. Deprecated in 1.7, please use the bindings /// subresource of pods instead. /// public partial class V1Binding { /// /// Initializes a new instance of the V1Binding class. /// public V1Binding() { CustomInit(); } /// /// Initializes a new instance of the V1Binding class. /// /// The target object that you want to bind to the /// standard object. /// 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 public V1Binding(V1ObjectReference target, string apiVersion = default(string), string kind = default(string), V1ObjectMeta metadata = default(V1ObjectMeta)) { ApiVersion = apiVersion; Kind = kind; Metadata = metadata; Target = target; 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 the target object that you want to bind to the /// standard object. /// [JsonProperty(PropertyName = "target")] public V1ObjectReference Target { get; set; } /// /// Validate the object. /// /// /// Thrown if validation fails /// public virtual void Validate() { if (Target == null) { throw new ValidationException(ValidationRules.CannotBeNull, "Target"); } if (Metadata != null) { Metadata.Validate(); } } } }