Move projects to subdirectories of /src and /tests (#134)

kubernetes-client/csharp#127
This commit is contained in:
Adam Friedman
2018-04-05 15:13:45 +10:00
committed by Brendan Burns
parent dc97164332
commit ea62ca00e0
616 changed files with 162 additions and 26 deletions

View File

@@ -0,0 +1,119 @@
// <auto-generated>
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
// </auto-generated>
namespace k8s.Models
{
using Newtonsoft.Json;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
/// <summary>
/// ValidatingWebhookConfiguration describes the configuration of and
/// admission webhook that accept or reject and object without changing it.
/// </summary>
public partial class V1beta1ValidatingWebhookConfiguration
{
/// <summary>
/// Initializes a new instance of the
/// V1beta1ValidatingWebhookConfiguration class.
/// </summary>
public V1beta1ValidatingWebhookConfiguration()
{
CustomInit();
}
/// <summary>
/// Initializes a new instance of the
/// V1beta1ValidatingWebhookConfiguration class.
/// </summary>
/// <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:
/// https://git.k8s.io/community/contributors/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:
/// https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds</param>
/// <param name="metadata">Standard object metadata; More info:
/// https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata.</param>
/// <param name="webhooks">Webhooks is a list of webhooks and the
/// affected resources and operations.</param>
public V1beta1ValidatingWebhookConfiguration(string apiVersion = default(string), string kind = default(string), V1ObjectMeta metadata = default(V1ObjectMeta), IList<V1beta1Webhook> webhooks = default(IList<V1beta1Webhook>))
{
ApiVersion = apiVersion;
Kind = kind;
Metadata = metadata;
Webhooks = webhooks;
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:
/// https://git.k8s.io/community/contributors/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:
/// https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
/// </summary>
[JsonProperty(PropertyName = "kind")]
public string Kind { get; set; }
/// <summary>
/// Gets or sets standard object metadata; More info:
/// https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata.
/// </summary>
[JsonProperty(PropertyName = "metadata")]
public V1ObjectMeta Metadata { get; set; }
/// <summary>
/// Gets or sets webhooks is a list of webhooks and the affected
/// resources and operations.
/// </summary>
[JsonProperty(PropertyName = "webhooks")]
public IList<V1beta1Webhook> Webhooks { get; set; }
/// <summary>
/// Validate the object.
/// </summary>
/// <exception cref="Microsoft.Rest.ValidationException">
/// Thrown if validation fails
/// </exception>
public virtual void Validate()
{
if (Metadata != null)
{
Metadata.Validate();
}
if (Webhooks != null)
{
foreach (var element in Webhooks)
{
if (element != null)
{
element.Validate();
}
}
}
}
}
}