//
// 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.Collections;
using System.Collections.Generic;
using System.Linq;
///
/// APIResourceList is a list of APIResource, it is used to expose the name
/// of the resources supported in a specific group and version, and if the
/// resource is namespaced.
///
public partial class V1APIResourceList
{
///
/// Initializes a new instance of the V1APIResourceList class.
///
public V1APIResourceList()
{
CustomInit();
}
///
/// Initializes a new instance of the V1APIResourceList class.
///
/// groupVersion is the group and version
/// this APIResourceList is for.
/// resources contains the name of the
/// resources and if they are namespaced.
/// 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
public V1APIResourceList(string groupVersion, IList resources, string apiVersion = default(string), string kind = default(string))
{
ApiVersion = apiVersion;
GroupVersion = groupVersion;
Kind = kind;
Resources = resources;
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 groupVersion is the group and version this
/// APIResourceList is for.
///
[JsonProperty(PropertyName = "groupVersion")]
public string GroupVersion { 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 resources contains the name of the resources and if
/// they are namespaced.
///
[JsonProperty(PropertyName = "resources")]
public IList Resources { get; set; }
///
/// Validate the object.
///
///
/// Thrown if validation fails
///
public virtual void Validate()
{
if (GroupVersion == null)
{
throw new ValidationException(ValidationRules.CannotBeNull, "GroupVersion");
}
if (Resources == null)
{
throw new ValidationException(ValidationRules.CannotBeNull, "Resources");
}
if (Resources != null)
{
foreach (var element in Resources)
{
if (element != null)
{
element.Validate();
}
}
}
}
}
}