Files
csharp/src/KubernetesClient/generated/Models/V1beta1MutatingWebhookConfigurationList.cs

119 lines
4.7 KiB
C#
Raw Normal View History

2017-10-19 19:53:02 +00:00
// <auto-generated>
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
2017-10-19 19:53:02 +00:00
// </auto-generated>
namespace k8s.Models
{
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
/// <summary>
2018-01-27 04:25:58 +08:00
/// MutatingWebhookConfigurationList is a list of
/// MutatingWebhookConfiguration.
/// </summary>
2018-01-27 04:25:58 +08:00
public partial class V1beta1MutatingWebhookConfigurationList
{
/// <summary>
2017-10-19 19:53:02 +00:00
/// Initializes a new instance of the
2018-01-27 04:25:58 +08:00
/// V1beta1MutatingWebhookConfigurationList class.
/// </summary>
2018-01-27 04:25:58 +08:00
public V1beta1MutatingWebhookConfigurationList()
{
2017-10-19 19:53:02 +00:00
CustomInit();
}
/// <summary>
2017-10-19 19:53:02 +00:00
/// Initializes a new instance of the
2018-01-27 04:25:58 +08:00
/// V1beta1MutatingWebhookConfigurationList class.
/// </summary>
2018-01-27 04:25:58 +08:00
/// <param name="items">List of MutatingWebhookConfiguration.</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:
2017-10-19 19:53:02 +00:00
/// 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:
2017-10-19 19:53:02 +00:00
/// https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds</param>
/// <param name="metadata">Standard list metadata. More info:
2017-10-19 19:53:02 +00:00
/// https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds</param>
2018-01-27 04:25:58 +08:00
public V1beta1MutatingWebhookConfigurationList(IList<V1beta1MutatingWebhookConfiguration> items, string apiVersion = default(string), string kind = default(string), V1ListMeta metadata = default(V1ListMeta))
{
ApiVersion = apiVersion;
Items = items;
Kind = kind;
Metadata = metadata;
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:
2017-10-19 19:53:02 +00:00
/// https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
/// </summary>
[JsonProperty(PropertyName = "apiVersion")]
public string ApiVersion { get; set; }
/// <summary>
2018-01-27 04:25:58 +08:00
/// Gets or sets list of MutatingWebhookConfiguration.
/// </summary>
[JsonProperty(PropertyName = "items")]
2018-01-27 04:25:58 +08:00
public IList<V1beta1MutatingWebhookConfiguration> Items { 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:
2017-10-19 19:53:02 +00:00
/// 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 list metadata. More info:
2017-10-19 19:53:02 +00:00
/// https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
/// </summary>
[JsonProperty(PropertyName = "metadata")]
public V1ListMeta Metadata { get; set; }
/// <summary>
/// Validate the object.
/// </summary>
/// <exception cref="ValidationException">
/// Thrown if validation fails
/// </exception>
public virtual void Validate()
{
if (Items == null)
{
throw new ValidationException(ValidationRules.CannotBeNull, "Items");
}
if (Items != null)
{
foreach (var element in Items)
{
if (element != null)
{
element.Validate();
}
}
}
}
}
}