105 lines
4.1 KiB
C#
105 lines
4.1 KiB
C#
|
|
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0
|
||
|
|
// 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;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Binding ties one object to another. For example, a pod is bound to a
|
||
|
|
/// node by a scheduler.
|
||
|
|
/// </summary>
|
||
|
|
public partial class V1Binding
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Initializes a new instance of the V1Binding class.
|
||
|
|
/// </summary>
|
||
|
|
public V1Binding()
|
||
|
|
{
|
||
|
|
CustomInit();
|
||
|
|
}
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Initializes a new instance of the V1Binding class.
|
||
|
|
/// </summary>
|
||
|
|
/// <param name="target">The target object that you want to bind to the
|
||
|
|
/// standard object.</param>
|
||
|
|
/// <param name="apiVersion">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:
|
||
|
|
/// http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources</param>
|
||
|
|
/// <param name="kind">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:
|
||
|
|
/// http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds</param>
|
||
|
|
/// <param name="metadata">Standard object's metadata. More info:
|
||
|
|
/// http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata</param>
|
||
|
|
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();
|
||
|
|
}
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// An initialization method that performs custom operations like setting defaults
|
||
|
|
/// </summary>
|
||
|
|
partial void CustomInit();
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 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:
|
||
|
|
/// http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty(PropertyName = "apiVersion")]
|
||
|
|
public string ApiVersion { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 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:
|
||
|
|
/// http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty(PropertyName = "kind")]
|
||
|
|
public string Kind { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Gets or sets standard object's metadata. More info:
|
||
|
|
/// http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty(PropertyName = "metadata")]
|
||
|
|
public V1ObjectMeta Metadata { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Gets or sets the target object that you want to bind to the
|
||
|
|
/// standard object.
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty(PropertyName = "target")]
|
||
|
|
public V1ObjectReference Target { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Validate the object.
|
||
|
|
/// </summary>
|
||
|
|
/// <exception cref="ValidationException">
|
||
|
|
/// Thrown if validation fails
|
||
|
|
/// </exception>
|
||
|
|
public virtual void Validate()
|
||
|
|
{
|
||
|
|
if (Target == null)
|
||
|
|
{
|
||
|
|
throw new ValidationException(ValidationRules.CannotBeNull, "Target");
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|